.cp-streamweasels--showcase {
    max-width: none!important;
    width: 100%;
    .cp-streamweasels__inner {
        width: 100%;
        max-width: calc(var(--max-width) * 1px);
        margin: 0 auto;
    }
    .cp-streamweasels__heading {
        text-align: center;
    }
    .cp-streamweasels__subheading {
        text-align: center;
        margin-top:0;
    }    
    .cp-streamweasels__player {
        height:0;
        padding-bottom: 56.25%;
        position: relative;
        transition: padding ease .1s;
        &:empty {
            padding-bottom:0;
        }
        iframe {
            position: absolute;
            top:0;
            left:0;
            right:0;
            bottom:0;
        }
        &--video-with-chat {
            @media screen and (max-width: 768px) {
                padding-bottom: 112.5%;
            }
        }
    }     
    .cp-streamweasels__title {
        font-family: Inter,Roobert,Helvetica Neue,Helvetica,Arial,sans-serif;
        position: relative;
        height: 40px;
        position: relative;
        white-space: nowrap;
        overflow: hidden;
        transition: height .3s ease;
        background-color: var(--tile-bg-colour);
        &:empty {
            display: none;
        }
        p {
            line-height: 40px;
            margin:0;
            position: absolute;
            left:0;
            top:0;
            width:auto;
            height: 40px;
            padding-left:100%;
            animation: marquee 10s linear infinite;
            color: var(--tile-title-colour);
            text-align: center;
            &:hover {
                animation-play-state: paused;
            }
        }
    }
    .cp-streamweasels__offline {
        h3 {
            text-align: center;
            margin: 15px 0;
        }
    }
    .cp-streamweasels__rail-header {
        display: flex;
        position: relative;
        padding: 15px 0 10px;
        background: var(--tile-bg-colour);
        &-image {
            height: 40px;
            width: 40px;
            margin: 0 0 0 5px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        &-title {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin: 0 0 0 10px;
            text-align: left!important;;
            span {
                font-family: Inter,Roobert,Helvetica Neue,Helvetica,Arial,sans-serif;
            }
            &--line-1 {
                font-weight: 600;
                font-size: 18px;
                line-height: 18px;
                color: var(--tile-title-colour);
            }
            &--line-2 {
                font-weight: 400;
                font-size: 17px;
                color: var(--tile-subtitle-colour);
            }            
        }
        &:before {
            content: "";
            height: 5px;
            position: absolute;
            top:0;
            left:0;
            width: 100%;
            background: var(--controls-border-colour);
        }
    }
    .cp-streamweasels__streams {
        position: relative;
        .cp-stream {
            margin: 10px;
            &__inner {
                position: relative;
                display: flex;
                flex-direction: column;
                text-decoration: none;
                background-color: var(--tile-bg-colour);
                font-family: Inter,Roobert,Helvetica Neue,Helvetica,Arial,sans-serif;
                border: solid 2px var(--tile-bg-colour);
                border-radius: calc(var(--tile-rounded-corners) * 1px);     
                overflow: hidden;           
            }
            &__image {
                height: 406px;
                width: 100%;
                position: relative;
                background: linear-gradient(179.87deg,transparent 71.65%,var(--faze-black) 99.89%);
                img {
                    object-fit: cover;
                    height: 100%;
                    width:100%;
                }
                &:before {
                    content: "";
                    position: absolute;
                    bottom:0;
                    left:0;
                    right:0;
                    height: 100%;
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position-x: var(--showcase-image-horizontal);
                    background-position-y: var(--showcase-image-vertical);
                    z-index:1;
                }
                &:after {
                    content: "";
                    position: absolute;
                    bottom:0;
                    left:0;
                    right:0;
                    height: 100%;
                    background: linear-gradient(179.87deg,transparent 71.65%,#000 99.89%); 
               }
            }
            &__status {
                position: absolute;
                left: 8px;
                top: 8px;
                height: 20px;
                border-radius: 2px;
                padding: 0 3px;
                color: #f1f1f1;
                font-weight: bold;
                font-size: 13px;
                line-height: 20px;            
                background: rgba(0,0,0,.6);
                font-family: inherit;
                &-live {
                    background:#E91916;
                    text-transform: uppercase;
                    border-radius: 5px;
                    font-weight: 600;
                    line-height: 21px;
                }
                &-online {
                    padding: 0 8px 0 20px;
                    border-radius: 100px;
                    background: rgba(0,0,0,.8);
                    line-height: 21px;
                    .cp-stream__online-dot {
                        display: inline-block;
                        height: 10px;
                        width: 10px;
                        border: 1px solid #2ecc71;
                        box-shadow: 1px 1px 1px #000;
                        background: #2ecc71;
                        border-radius: 50%;
                        position: absolute;
                        left:5px;
                        top:5px;
                        &:before {
                            content: "";
                            display: block;
                            position: absolute;
                            border-radius: 100%;
                            height: 10px;
                            width: 10px;
                            left: -1px;
                            top: -1px;
                            border: 1px solid #2ecc71;
                            animation: online 2s infinite;
                        }
                    }
                }
                &-none {
                    display: none;
                }                
            }
            &__info {
                display: flex;
                font-family: inherit;
                padding: 5px;
                &-wrapper {
                    display: flex;
                    flex-direction: column;
                    margin: 0 10px 0 0;
                    width: 100%;
                    overflow: hidden;
                    text-align: left;
                }
            }
            &__logo {
                height: 40px!important;
                width: 40px!important;
                border-radius: 50%;
                margin: 0;
                background-color: var(--logo-bg-colour);
                border: solid 2px transparent;
                border-color: var(--logo-border-colour);
                + .cp-stream__info-wrapper {
                    margin: 0 10px;
                }
            }
            &__title {
                color: var(--tile-title-colour);
                font-size: 14px!important;
                line-height: 19px!important;
                font-weight: 600;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
            }
            &__meta {
                color: var(--tile-subtitle-colour);
                font-size: 13px!important;
                line-height: 19px!important;            
                font-weight: 400;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
            }
        }
        &--detailed {
            .cp-stream {

            }  
        }             
        &--compact {
            .cp-stream {
                &__info {
                    position: absolute;
                    bottom:0;
                    left:0;
                    right:0;
                    text-align: right;
                    z-index:1;
                    &-wrapper {
                        text-align: right;
                    }
                }
                &__logo {
                    order:0;
                }                
                &__overlay {
                    position: absolute;
                    top:0;
                    left:0;
                    right:0;
                    bottom:0;
                    background: -moz-linear-gradient(top, rgba(27,27,27,0) 50%, rgba(27,27,27,1) 100%);
                    background: -webkit-linear-gradient(top, rgba(27,27,27,0) 50%,rgba(27,27,27,1) 100%);
                    background: linear-gradient(to bottom, rgba(27,27,27,0) 50%,rgba(27,27,27,1) 100%);
                    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001b1b1b', endColorstr='#1b1b1b',GradientType=0 );
                }    
                &__title {
                    //color: #fff;
                }
                &__meta {
                    > span {
                        display: none;
                    }
                    &--viewers {
                        display: none;
                    }
                }      
                &__inner:before {
                    height:100%!important;
                }                                       
            }  
        }    
        &--hover-twitch {
            .cp-stream {
                background-color: var(--hover-colour);
                border-radius: calc(var(--tile-rounded-corners) * 1px);
                &__inner {
                    transition-delay: 75ms;
                    transition: transform .1s ease;
                    &:hover {
                        transform: translate(6px,-6px);
                    }  
                }  
            }          
        }  
        &--hover-play {
            .cp-stream {
                background-color: var(--hover-colour);
                &__inner {
                    &:before {
                        content: "";
                        position: absolute;
                        top:0;
                        left:0;
                        right:0;
                        height: calc(100% - 48px);
                        background-color: rgba(0,0,0,0);
                        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120px' height='120px' viewBox='0 0 20 20' x='0px' y='0px'%3E%3Cg%3E%3Cpath fill='%23fff' d='M5 17.066V2.934a.5.5 0 01.777-.416L17 10 5.777 17.482A.5.5 0 015 17.066z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
                        background-size: 90px 90px;
                        background-repeat: no-repeat;
                        background-position: center;
                        transition-delay: 75ms;
                        transition: all .35s ease;   
                        opacity: 0;
                        z-index: 2;              
                    }
                    &:hover {
                        &:before {
                            transform: scale(1);
                            background-size: 60px 60px;
                            opacity: 1;
                            background-color: rgba(0,0,0,0.5);
                        }
                    }
                }  
            }          
        }
        &:hover {
            .slick-prev, .slick-next {
                opacity: 1;
                transform: translate(0,-50%);
            }
        }
    }    
}

/* Arrows */
.cp-streamweasels--showcase {
    .slick-prev,
    .slick-next {
        position: absolute;
        z-index:1;
        display: block!important;
        height: 40px!important;
        width: 40px!important;
        line-height: 0px;
        font-size: 0px;
        cursor: pointer;
        background: var(--showcase-controls-bg-colour);
        color: transparent;
        top: 50%;
        transform: translateY(-50%)!important;
        padding: 0;
        border: none;
        outline: none;
        opacity: 0;
        transition: all .15s ease;
        transition-delay: .15s;
        border: none!important;
        &:hover, &:focus {
            outline: none;
            color: transparent;
            &:before {
                opacity: $slick-opacity-on-hover;
            }
        }
        &.slick-disabled:before {
            opacity: $slick-opacity-not-active;
        }
        &:before {
            font-family: $slick-font-family;
            font-size: 20px;
            line-height: 1;
            color: var(--showcase-controls-arrow-colour);
            opacity: $slick-opacity-default;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            display: block;
        }
        svg {
            width: 100%;
            fill: var(--showcase-controls-arrow-colour);
        }
    }
}

.cp-streamweasels--showcase {
    .slick-prev {
        left: 10px!important;
        // transform: translate(-30%,-50%)!important;
        [dir="rtl"] & {
            left: auto;
            right: -25px;
        }
        &:before {
            content: $slick-prev-character;
            [dir="rtl"] & {
                content: $slick-next-character;
            }
        }
    }

    .slick-next {
        right: 10px!important;
        // transform: translate(30%,-50%)!important;
        [dir="rtl"] & {
            left: -25px;
            right: auto;
        }
        &:before {
            content: $slick-next-character;
            [dir="rtl"] & {
                content: $slick-prev-character;
            }
        }
    }

    /* Dots */

    .slick-dotted.slick-slider {
        margin-bottom: 30px;
    }

    .slick-dots {
        position: absolute;
        bottom: -25px;
        list-style: none;
        display: block;
        text-align: center;
        padding: 0;
        margin: 0;
        width: 100%;
        li {
            position: relative;
            display: inline-block;
            height: 20px;
            width: 20px;
            margin: 0 5px;
            padding: 0;
            cursor: pointer;
            button {
                border: 0;
                background: transparent;
                display: block;
                height: 20px;
                width: 20px;
                outline: none;
                line-height: 0px;
                font-size: 0px;
                color: transparent;
                padding: 5px;
                cursor: pointer;
                &:hover, &:focus {
                    outline: none;
                    &:before {
                        opacity: $slick-opacity-on-hover;
                    }
                }
                &:before {
                    position: absolute;
                    top: 0;
                    left: 0;
                    content: $slick-dot-character;
                    width: 20px;
                    height: 20px;
                    font-family: $slick-font-family;
                    font-size: $slick-dot-size;
                    line-height: 20px;
                    text-align: center;
                    color: $slick-dot-color;
                    opacity: $slick-opacity-not-active;
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                }
            }
            &.slick-active button:before {
                color: $slick-dot-color-active;
                opacity: $slick-opacity-default;
            }
        }
    }

    /* Slider */

    .slick-slider {
        position: relative;
        display: block;
        box-sizing: border-box;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-tap-highlight-color: transparent;
    }
    .slick-list {
        position: relative;
        overflow: hidden;
        display: block;
        margin: 0;
        padding: 0;

        &:focus {
            outline: none;
        }

        &.dragging {
            cursor: pointer;
            cursor: hand;
        }
    }
    .slick-slider .slick-track,
    .slick-slider .slick-list {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .slick-track {
        position: relative;
        left: 0;
        top: 0;
        display: block;
        margin-left: auto;
        margin-right: auto;

        &:before,
        &:after {
            content: "";
            display: table;
        }

        &:after {
            clear: both;
        }

        .slick-loading & {
            visibility: hidden;
        }
    }
    .slick-slide {
        float: left;
        height: 100%;
        min-height: 1px;
        [dir="rtl"] & {
            float: right;
        }
        img {
            display: block;
        }
        &.slick-loading img {
            display: none;
        }
        &.dragging img {
            pointer-events: none;
        }

        .slick-initialized & {
            display: block;
        }

        .slick-loading & {
            visibility: hidden;
        }

        .slick-vertical & {
            display: block;
            height: auto;
            border: 1px solid transparent;
        }
    }
    .slick-arrow.slick-hidden {
        display: none;
    }
}