
@media screen and (min-width: 768px) and (max-width: 1919px) {
    /* .rlc-fullbleed {
        width: 100vw;
    } */
}
.rlc-fullbleed.rlc-block {
    z-index: 0;
}



/* PLAY/PAUSE BUTTONS FOR LOOPING CONTENT */

    .rlc-fadeslider .rlc-looppause,
    .rlc-videocontainer .rlc-looppause {
        position: absolute;
        color: currentColor;
        width: 31px; height: 31px;
        cursor: pointer;
        z-index: 2;
        background: transparent;
        border: 2px solid currentColor;
        border-radius: 50%;
        min-width: auto;
        min-height: auto;
        padding: 0;
        font-size: 1em;
        margin: 0;
        max-width: none;
        max-height: none;
    } 
    .rlc-videocontainer.playing .rlc-looppause,
    .rlc-videocontainer.user_paused .rlc-looppause, 
    .rlc-videocontainer.paused .rlc-looppause {
        background-image: none;
    }
    
    .rlc-fadeslider .rlc-looppause::before,
    .rlc-fadeslider .rlc-looppause::after,
    .rlc-videocontainer .rlc-looppause::before,
    .rlc-videocontainer .rlc-looppause::after {
        content: '';
        position: absolute;
        left: 9px; top: 50%;
        width: 3px;
        height: 12px;
        background: currentColor;
        -webkit-transform: translateY(-50%); transform: translateY(-50%); 
        display: block;
    }  
    .rlc-fadeslider .rlc-looppause::after,
    .rlc-videocontainer .rlc-looppause::after {
        left: 15px;
    } 
    .rlc-fadeslider.user_paused .rlc-looppause::before,
    .rlc-fadeslider.user_paused .rlc-looppause:hover::before,
    .rlc-videocontainer.user_paused .rlc-looppause::before,
    .rlc-videocontainer.user_paused .rlc-looppause:hover::before {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 0 6px 11px;
        border-color: transparent transparent transparent currentColor;
        left: 10px;
        background: none;
    }
    .rlc-fadeslider.user_paused .rlc-looppause::after,
    .rlc-fadeslider.user_paused .rlc-looppause:hover::after,
    .rlc-videocontainer.user_paused .rlc-looppause::after,
    .rlc-videocontainer.user_paused .rlc-looppause:hover::after   {
        display: none;
    }
    .rlc-fadeslider .rlc-looppause:hover,
    .rlc-videocontainer .rlc-looppause:hover {
        border-color: currentColor;
        color: currentColor;
    }
    .rlc-fadeslider .rlc-looppause:hover::before,
    .rlc-fadeslider .rlc-looppause:hover::after,
    .rlc-videocontainer .rlc-looppause:hover::before,
    .rlc-videocontainer .rlc-looppause:hover::after {
        background-color: currentColor;
    }



/* FIXED BACKGROUND PORTS CSS */

.rlc-bgfixed-portal {
    overflow: hidden;
    -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0);
    z-index: -1;
}
    .rlc-block:not(.rlc-isvisible) .rlc-bgfixed  {
        opacity: 0;
        -webkit-transition: opacity 1s; transition: opacity 1s;
    }
    .rlc-bgfixed  {
        /* -webkit-transform: translate3d(0,0,0); 
        transform: translate3d(0,0,0); */
        position: fixed;
        width: 100%;
        min-height: 100vh;
        top: 0; left: 0;
        z-index: -1;
        pointer-events: none;
    }
    .rlc-isvisible .rlc-bgfixed  {
        opacity: 1;
    }
    .is-ie .rlc-bgfixed  {
        /* -webkit-transform: translate3d(0,0,0); 
        transform: translate3d(0,0,0); */
        position: absolute;
        width: 100%;
        min-height: 100%;
        top: 0; left: 0;
        z-index: -1;
    }



/* FADE SLIDER CSS */

@keyframes rlc-fltimeBullet {
    from {width: 0%;}
    to {width: 100%}
}
.rlc-fadeslider {
    opacity: 0;
    -webkit-transition: opacity 1s; transition: opacity 1s;
    /* -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0);
    will-change: transform; */
    position: absolute;
    top: 0; left: 0;
}
.rlc-fadeslider.rlc-init {
    opacity: 1;
}
    .rlc-fadeslider .rlc-slidewrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .rlc-fadeslider .rlc-looppause {
        bottom: 1.125em;
        left: 1.563em;
    } 
        .rlc-fadeslider .rlc-slide {
            position: absolute;
            top: 0; left: 0;
            z-index: -1;
            width: 100%;
            opacity: 1;
        }
        .rlc-fadeslider .rlc-slide .rlc-hasvideo {
            background: #000;
        }
        .rlc-fadeslider .rlc-slide .rlc-hasvideo .rlc-videocontainer {
            pointer-events: none;
        }
        .rlc-fadeslider .rlc-slide .rlc-hasvideo .rlc-looppause{
            display: none;
        }
        .rlc-fadeslider .rlc-slide.rlc-active {
            z-index: 1;
        }
        .rlc-fadeslider .rlc-slide.rlc-prev {
            z-index: 0;
        }
            .rlc-fadeslider .rlc-slide .rlc-copygroup {
                position: absolute;
                z-index: 1;
            }
            .rlc-fadeslider .rlc-slide:hover .rlc-copygroup::after {
                content: '';
                display: block;
                position: absolute;
                top: 50%; left: 50%;
                width: calc(100% + 100px);
                height: calc(100% + 100px);
                transform: translate(-50%,-50%);
                z-index: -1;
            }
    .rlc-fadeslider  .rlc-carousel-arrow {
        position: absolute;
        top: 50%;
        margin: 0;
        width: 39px;
        height: 39px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background: #E1E1E5;
        border-radius: 50%;
        border: none;
        z-index: 7;
        display: inline-block;
        padding: 0;
        cursor: pointer;
        max-width: none;
        min-height: auto;
        font-size: 1em;
    }
    .rlc-fadeslider  .rlc-carousel-arrow:hover {
        background: #fff;
    }
        .rlc-fadeslider.rlc-light .rlc-carousel-arrow {
            background: #E1E1E5;
        }
        .rlc-fadeslider.rlc-light .rlc-carousel-arrow:hover {
            background: #fff;
        }
        .rlc-fadeslider.rlc-gold .rlc-carousel-arrow {
            background: #BAAD72;
        }
        .rlc-fadeslider.rlc-gold .rlc-carousel-arrow:hover {
            background: #fff;
        }
        .rlc-fadeslider.rlc-dark .rlc-carousel-arrow {
            background: #041E3A;
        }
        .rlc-fadeslider.rlc-dark  .rlc-carousel-arrow:hover {
            background: #000;
        }
    .rlc-fadeslider  .rlc-carousel-arrow.rlc-carousel-arrow-left {
        left: 1.750em;
    }
    .rlc-fadeslider .rlc-carousel-arrow:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        width: 9px;
        height: 9px;
        border-right: 1px solid #000!important;
        border-bottom: 1px solid #000!important;
        opacity: 0.8;
    }
    .rlc-fadeslider.rlc-dark .rlc-carousel-arrow:after {
        border-color: #fff!important;
    }
    .rlc-fadeslider .rlc-carousel-arrow.rlc-carousel-arrow-left:after {
        transform: translate(-2px,-50%) rotate(134deg)
    }
    .rlc-fadeslider  .rlc-carousel-arrow.rlc-carousel-arrow-right {
        right: 1.750em;
    }
    .rlc-fadeslider .rlc-carousel-arrow.rlc-carousel-arrow-right:after {
        transform: translate(-6px,-50%) rotate(-45deg);
    }
    .rlc-fadeslider .rlc-carousel-arrow.rlc-carousel-arrow-left:hover::after,
    .rlc-fadeslider .rlc-carousel-arrow.rlc-carousel-arrow-right:hover::after {
        border-width: 2px!important;
    }
    .rlc-fadeslider .rlc-pagination {
        position: absolute;
        bottom: 0.875em; left: 50%;
        transform: translateX(-50%);
        width: 55.000em;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 5;
    }
        .rlc-fadeslider .rlc-pagination .rlc-bullet {
            display: inline-flex;
            flex: 1;
            height: 30px; min-height: inherit;
            width: auto; max-width: inherit;
            padding: 0;
            border: none;
            font-size: 1em;
            transition: none;
            margin: 0 0.344em;
            position: relative;
            background: none;
        }
            .rlc-fadeslider .rlc-pagination .rlc-bullet::before {
                content: '';
                display: block;
                height: 2px;
                width: 100%;
                position: absolute;
                top: 50%; left: 0;
                transform: translateY(-50%);
                z-index: 0;
            }
            .rlc-fadeslider .rlc-pagination .rlc-bullet.rlc-active::after {
                content: '';
                display: block;
                height: 2px;
                width: 0%;
                position: absolute;
                top: 50%; left: 0;
                transform: translateY(-50%);
                z-index: 1;
            }
            .rlc-fadeslider.rlc-autoplay .rlc-pagination .rlc-bullet.rlc-active::after {
                width: 0%;
                animation-name: rlc-fltimeBullet;
                animation-delay: 0s;
                animation-iteration-count: 1;
                animation-timing-function: linear;
                animation-fill-mode: forwards;
            }
            .rlc-fadeslider.rlc-autoplay .rlc-pagination .rlc-bullet.rlc-1s.rlc-active::after {
                -webkit-animation-duration: 1s; animation-duration: 1s;
            }
            .rlc-fadeslider.rlc-autoplay .rlc-pagination .rlc-bullet.rlc-2s.rlc-active::after {
                -webkit-animation-duration: 2s; animation-duration: 2s;
            }
            .rlc-fadeslider.rlc-autoplay .rlc-pagination .rlc-bullet.rlc-3s.rlc-active::after {
                -webkit-animation-duration: 3s; animation-duration: 3s;
            }
            .rlc-fadeslider.rlc-autoplay .rlc-pagination .rlc-bullet.rlc-4s.rlc-active::after {
                -webkit-animation-duration: 4s; animation-duration: 4s;
            }
            .rlc-fadeslider.rlc-autoplay .rlc-pagination .rlc-bullet.rlc-5s.rlc-active::after {
                -webkit-animation-duration: 5s; animation-duration: 5s;
            }
            .rlc-fadeslider.rlc-autoplay .rlc-pagination .rlc-bullet.rlc-6s.rlc-active::after {
                -webkit-animation-duration: 6s; animation-duration: 6s;
            }
            .rlc-fadeslider.rlc-autoplay .rlc-pagination .rlc-bullet.rlc-7s.rlc-active::after {
                -webkit-animation-duration: 7s; animation-duration: 7s;
            }
            .rlc-fadeslider.rlc-autoplay .rlc-pagination .rlc-bullet.rlc-8s.rlc-active::after {
                -webkit-animation-duration: 8s; animation-duration: 8s;
            }
            .rlc-fadeslider.rlc-autoplay .rlc-pagination .rlc-bullet.rlc-9s.rlc-active::after {
                -webkit-animation-duration: 9s; animation-duration: 9s;
            }
            .rlc-fadeslider.rlc-autoplay .rlc-pagination .rlc-bullet.rlc-10s.rlc-active::after {
                -webkit-animation-duration: 10s; animation-duration: 10s;
            }
            .rlc-fadeslider.rlc-autoplay .rlc-pagination .rlc-bullet.rlc-videobullet.rlc-active::after {
                -webkit-animation-duration: 7s; animation-duration: 7s;
            }
            .rlc-fadeslider.rlc-autoplay.rlc-stopbullet .rlc-pagination .rlc-bullet.rlc-active::after {
                -webkit-animation-play-state: paused; animation-play-state: paused;
            }
            

            .rlc-fadeslider .rlc-pagination .rlc-bullet::before,
            .rlc-fadeslider.rlc-light .rlc-pagination .rlc-bullet::before {
                background: #C6C8CC;
            }
            .rlc-fadeslider .rlc-pagination .rlc-bullet.rlc-active::after,
            .rlc-fadeslider.rlc-light .rlc-pagination .rlc-bullet.rlc-active::after {
                background: #FFF;
            }
            .rlc-fadeslider .rlc-pagination .rlc-bullet.rlc-active::before,
            .rlc-fadeslider.rlc-light .rlc-pagination .rlc-bullet.rlc-active::before {
                background: #6D6F73;
            }

            .rlc-fadeslider.rlc-gold .rlc-pagination .rlc-bullet.rlc-active::after {
                background: #BAAD72;
            }
            .rlc-fadeslider.rlc-dark .rlc-pagination .rlc-bullet.rlc-active::after {
                background: #041E3A;
            }
@media screen and (min-width: 768px) {
    .rlc-fadeslider .rlc-pagination .rlc-bullet::before,
    .rlc-fadeslider .rlc-pagination .rlc-bullet::after {
        -webkit-transition: height 0.35s; transition: height 0.35s;
    }
    .rlc-fadeslider .rlc-pagination .rlc-bullet:hover::before,
    .rlc-fadeslider .rlc-pagination .rlc-bullet:hover::after {
        height: 4px;
    }
}
@media screen and (max-width: 767px) {
    .rlc-fadeslider .rlc-pagination {
        bottom: 1.250em;
        width: 15.000em;
        height: 1.875em;
    }  
    .rlc-fadeslider .rlc-carousel-arrow {
        display: none;
    }
    .rlc-fadeslider .rlc-looppause {
        left: 0.813em;
        bottom: 1.625em;
    }
}
/* END FADELEFT SLIDER CSS */



/* PIN CLIP (STICKY SECTION) CSS */

.rlc-pinclip .rlc-in {
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0);
}




/* BEGIN SCROLL ZOOM  */
.rlc-scrollzoom {
    overflow: hidden;
}
    .rlc-scrollzoom .rlc-image {
        transform: scale(1.35);
        transition: transform 2s, opacity 1s!important;
        transform-origin: 50% 50%;
    }
        .rlc-isvisible .rlc-scrollzoom .rlc-image,
        .rlc-isvisible.rlc-scrollzoom .rlc-image {
            transform: scale(1);
        }
/* END SCROLL ZOOM  */















/* BEGIN SHOP SLIDER CSS */
.rlc-shopslider {

}
    .rlc-shopslider .swiper-button-next.swiper-button-disabled, 
    .rlc-shopslider .swiper-button-prev.swiper-button-disabled {
        opacity: 0;
    }
    .rlc-creative_v3 .rlc-carousel.rlc-category_carousel.rlc-shopslider  .rlc-copygroup {
        height: auto;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%); transform: translateX(-50%);
        pointer-events: none;
        text-align: center;
        color: #fff;
    }
@media screen and (min-width: 768px) {
.rlc-carousel.rlc-category_carousel.rlc-shopslider {
    margin-left: 0;
    width: 65.187em;
}
    .rlc-carousel.rlc-category_carousel.rlc-shopslider .rlc-carousel_wrapper {
        padding-bottom: 1.938em;
        padding-right: 1.953em;
    }
        .rlc-creative_v3 .rlc-carousel.rlc-category_carousel.rlc-shopslider .rlc-carousel-arrow {
            top: calc(50% - 1.938em);
        }
        .rlc-carousel.rlc-category_carousel.rlc-shopslider .rlc-slide {
            width: 25.563em;
            padding: 0 0.5em;
        }
        .rlc-creative_v3 .rlc-carousel.rlc-category_carousel.rlc-shopslider .rlc-slide .rlc-imagery {
            min-height: 34.375em;
        }
        .rlc-creative_v3 .rlc-carousel.rlc-category_carousel.rlc-shopslider  .rlc-copygroup {
            bottom: 2.875em;
        }    
}
@media screen and (max-width: 767px) {
    .rlc-carousel.rlc-category_carousel.rlc-shopslider {
        margin-left: 1.375em;
        width: 22.063em;
    }
        .rlc-carousel.rlc-category_carousel.rlc-shopslider .rlc-carousel-scrollbar {
            width: 20.313em;
        }
        .rlc-carousel.rlc-category_carousel.rlc-shopslider .rlc-carousel_wrapper {
            padding-bottom: 1.938em;
            padding-right: 1.5em;
        }
            .rlc-creative_v3 .rlc-carousel.rlc-category_carousel.rlc-shopslider .rlc-carousel-arrow {
                top: calc(50% - 1.938em);
            }
            .rlc-carousel.rlc-category_carousel.rlc-shopslider .rlc-slide {
                width: 15.438em;
                padding: 0 0.250em;
            }
            .rlc-creative_v3 .rlc-carousel.rlc-category_carousel.rlc-shopslider .rlc-slide .rlc-imagery {
                min-height: 21.063em;
            }
            .rlc-creative_v3 .rlc-carousel.rlc-category_carousel.rlc-shopslider  .rlc-copygroup {
                bottom: 1.712em;
            } 
}
/* END SHOP SLIDER CSS */




/* COMBO SECTIONS */
        .rlc-blp .rlc-combo .rlc-carousel .rlc-carousel-pagination {
            align-items: center;
        }
        .rlc-blp .rlc-combo .rlc-carousel .rlc-carousel-arrow {
            top: 16.875em;
        }
        .rlc-blp .rlc-combo .rlc-carousel.rlc-featured_products .rlc-slide .rlc-imagery {
            margin-bottom: 3.250em;
        }
            .rlc-blp .rlc-combo .rlc-carousel.rlc-featured_products .rlc-slide .rlc-image {
                margin-bottom: 0;
            }
        .rlc-blp .rlc-combo .rlc-static-col.rlc-right {
            align-items: flex-end;
        }
            
            .rlc-blp .rlc-combo .rlc-static-col .rlc-slide .rlc-copygroup {
                text-align: center;
                margin-top: 0.750em;
            }
    @media screen and (min-width: 768px) {
    .rlc-blp .rlc-combo {
        display: flex;
    }
        .rlc-blp .rlc-combo .rlc-carousel-col {
            width: 48.125em;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .rlc-blp .rlc-combo .rlc-static-col {
            width: 41.875em;
            display: flex;
            justify-content: center;
            flex-direction: column;
        }
        .rlc-blp .rlc-combo .rlc-static-col .rlc-slide {
            width: 32.375em;
        }
    }
    @media screen and (max-width: 767px) {
        .rlc-blp .rlc-combo .rlc-carousel-col,
        .rlc-blp .rlc-combo .rlc-static-col {
            margin-bottom: 3.813em;
        }
        .rlc-blp .rlc-combo .rlc-carousel.rlc-featured_products .rlc-slide .rlc-imagery {
            margin-bottom: 3.250em;
        } 
        .rlc-blp .rlc-combo .rlc-carousel.rlc-featured_products .rlc-slide {
            width: 15.625em;
            padding: 0;
            margin: 0 1.969em;
        }
            .rlc-blp .rlc-combo .rlc-static-col .rlc-slide {
                width: 100vw;
            }
            .rlc-blp .rlc-combo .rlc-carousel.rlc-featured_products .rlc-carousel-pagination {
                top: 19.500em;
                width: 15.625em;
                height: 3.438em;
            }
            .rlc-blp .rlc-combo .rlc-carousel.rlc-featured_products .rlc-slide .rlc-copygroup {
                position: relative;
                -webkit-transform: none; transform: none;
                width: 100%;
            }
    }

    



/* BEGIN CAROUSL W/ ZOOM SECTION */
    .rlc-carouselside {
        display: flex;
    }
        .rlc-carouselside .rlc-carousel-col {
            position: relative;
        }
        .rlc-carouselside .rlc-carousel-col .rlc-textgroup {
            margin-bottom: 3.125em;
            text-align: center;
        }
            .rlc-carouselside .rlc-carousel-col .rlc-textgroup .rlc-dek {
                margin-top: 1.278em;
            }
        .rlc-carouselside .rlc-image-col {
            width: 28.750em;
        }
  
            .rlc-carouselside .rlc-image-col .rlc-scrollzoom {
                width: 28.750em;
                height: 50.625em;
            }
            
        .rlc-carouselside .rlc-carousel.rlc-banner {
            width: 54.875em;
            margin: 0 auto;
            overflow: hidden;
        }
            .rlc-carouselside .rlc-carousel.rlc-banner .rlc-carousel-arrow {
                top: 11.031em;
            }
            .rlc-carouselside .rlc-carousel.rlc-banner .rlc-slide {
                width: 17.625em;
                padding: 0 0.5em;
                opacity: 1!important;
                visibility: visible!important;
            }
            .is-ie .rlc-carouselside .rlc-carousel.rlc-banner .rlc-slide {
                margin: 0 0.5em;
                padding: 0;
            }   
                .rlc-carouselside .rlc-carousel.rlc-banner .rlc-slide .rlc-image {
                    margin-bottom: 0;
                }
                .rlc-carouselside .rlc-carousel.rlc-banner .rlc-slide .rlc-copygroup {
                    margin-top: 0.875em;
                }
                    .rlc-carouselside .rlc-carousel.rlc-banner .rlc-slide .rlc-prodlink {
                        display: none;
                    }
                    .rlc-carouselside .rlc-carousel.rlc-banner .rlc-slide .rlc-title {
                        font-size: 1.375em;
                        line-height: 1.818em;
                    }
                    .rlc-carouselside .rlc-carousel.rlc-banner .rlc-slide .rlc-linecta {
                        opacity: 1!important;
                        visibility: visible!important;
                    }
            
    
    @media screen and (min-width: 768px) {
        .rlc-carouselside .rlc-carousel-col {
            width: 61.250em;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        .rlc-carouselside .rlc-carousel-col .rlc-textgroup {
            width: 46.875em;
        }
    }
    @media screen and (max-width: 767px) {
        .rlc-carouselside {
            flex-direction: column-reverse;
            align-items: center;
        }
        .rlc-carouselside .rlc-image-col {
                width: 19.125em;
                margin-bottom: 1.875em;
            }
    
                .rlc-carouselside .rlc-image-col .rlc-scrollzoom {
                    width: 19.125em;
                    height: 23.125em
                }
        .rlc-carouselside .rlc-carousel-col .rlc-textgroup {
            width: 95vw;
            margin: 0 auto 1.875em;
        }

        .rlc-carouselside .rlc-carousel-col .rlc-carousel.rlc-banner .rlc-slide .rlc-imagery {
            margin-bottom: 3.250em;
        } 
        .rlc-carouselside .rlc-carousel-col .rlc-carousel.rlc-banner .rlc-slide {
            width: 15.625em;
            padding: 0;
            margin: 0 1em;
        }
        .rlc-carouselside .rlc-carousel-col .rlc-carousel.rlc-banner {
                width: 100vw;
            }
            .rlc-carouselside .rlc-carousel-col .rlc-carousel.rlc-banner .rlc-carousel-pagination {
                top: 19.500em;
                width: 15.625em;
                height: 3.438em;
            }
            .rlc-carouselside .rlc-carousel-col .rlc-carousel.rlc-banner .rlc-slide .rlc-copygroup {
                position: relative;
                -webkit-transform: none; transform: none;
                width: 100%;
            }
        }
/* END CAROUSL W/ ZOOM SECTION */



/* BEGIN BLP CATEGORY SLIDER */
.rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats {
    width: 87.313em;
    margin-left: 2.688em;
}

.rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-carousel_wrapper {
    padding-right: 3.063em;
}

.rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .swiper-container-horizontal>.swiper-scrollbar {
    bottom: auto;
    top: 26.250em;
}

.rlc-creative_v3 .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-carousel-arrow {
    top: 13.125em;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-slide {
    width: 20.000em;
    padding: 0 0.5em;
}

.rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-slide .rlc-imagery {
    min-height: 25.000em;
    margin-bottom: 2.250em;
}

.rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-slide .rlc-copygroup {
    font-family: "Founders Grotesk text Regular";
    font-size: 0.813em;
    color: currentColor;
    letter-spacing: 0.019em;
    line-height: 1.385em;
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    display: flex;
    opacity: 0;
    transition: opacity 0.5s;
}
.rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-slide:hover .rlc-copygroup {
    opacity: 1;
}
@media screen and (max-width: 959px) {
    .rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-slide .rlc-copygroup {
        display: flex;
    }
}
.rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-copygroup a,
.rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-copygroup a:hover,
.rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-copygroup a:active {
    color: currentColor;
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats {
        width: 21.938em;
        margin-left: 1.500em;
    }

    .rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-carousel_wrapper {
        padding-right: 0.5em;
    }

    .rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .swiper-container-horizontal>.swiper-scrollbar {
        width: 20.938em;
        height: 2.875em;
        bottom: auto;
        top: 24.250em;
    }

    .rlc-creative_v3 .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-carousel-arrow {
        top: 13.125em;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-slide {
        width: 18.250em;
    }

    .rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-slide .rlc-imagery {
        min-height: 24.250em;
    }

    .rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-slide .rlc-copygroup {
        opacity: 0;
    }

    .rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .rlc-slide.swiper-slide-active .rlc-copygroup,
    .rlc-blp .rlc-carousel.rlc-category_carousel.rlc-blpcats .swiper-slide-visible:last-child .rlc-copygroup {
        opacity: 1;
    }
}
/* END BLP CATEGORY SLIDER */