<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 *  Product Thumbnails Carousel Theme
 */

.product_thumbnails_carousel {
    padding-left: 20px;
    padding-right: 20px;
}
.product_thumbnails_carousel .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -20px;
}
.product_thumbnails_carousel .owl-nav [class*='owl-'] {
    position: absolute;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin: 0;
    padding: 0;
    opacity: 1;

    font-size: 40px;
    line-height: 1;
    width: auto;
    height: auto;
    
    color: #333;
    background: transparent;

    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product_thumbnails_carousel .owl-nav .owl-prev {
    left: 0;
}
.product_thumbnails_carousel .owl-nav .owl-next {
    right: 0;
}
.product_thumbnails_carousel .owl-nav [class*='owl-']:hover {
    color: #333;
    background: transparent;
    text-decoration: none;
}
.product_thumbnails_carousel .owl-nav .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.product_thumbnails_carousel .owl-nav.disabled + .owl-dots {
    margin-top: 0;
}
.product_thumbnails_carousel .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
}
.product_thumbnails_carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}
.product_thumbnails_carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 10px 7px;
    background: #ddd;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.product_thumbnails_carousel .owl-dots .owl-dot.active span,
.product_thumbnails_carousel .owl-dots .owl-dot:hover span {
    background: #333;
}</pre></body></html>