<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CCG Carousel */
      .carousel-item {
        display: none;
      }
      .carousel-item.active {
        display: block;
      }
      
      .ccg-carousel-wrapper {
        position: relative;
      }
      .ccg-carousel {
        position: relative;
        overflow: hidden;
        width: calc(100% - 70px);
        margin: 0 auto;
      }
      .ccg-carousel ul {
        width: 10000em;
        position: relative;
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .ccg-carousel li {
        float: left;
        height: 111px;
        line-height: 111px;
        width: 260px;
        position: relative;
      }
    
      .ccg-carousel li.large {
        float: left;
        height: 640px;
        line-height: 111px;
        width: 480px;
        position: relative;
      }
    
      .ccg-carousel img {
        display: block; 
        max-width: 100%; 
        max-height: 100%; 
        position: absolute; 
        top: 50%; 
        left: 50%; 
        transform: translate(-50%,-50%);
    filter: grayscale(50%);
    opacity: .5;
      }
      .ccg-carousel img:hover, .ccg-carousel img:focus {
        filter: unset;
        opacity: 1;
      }
      .ccg-carousel-controls {
        position: static;
      }
      .ccg-carousel-controls &gt; button {
        border: none;
        background-color: transparent;
        color: #aaa;
        font-size: 3rem;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
      }
      .ccg-carousel-controls &gt; button:focus {
        outline: none;
      }
      .ccg-carousel-controls &gt; button:hover {
        color: #009ddc;
      }
      .ccg-carousel-controls &gt; button.control-next {
        left: auto;
        right: 0px;
      }
    
      .ccg-carousel-wrapper {
        max-width: 75%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }</pre></body></html>