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

.owl-theme .owl-controls {
    margin-top: 30px;
    text-align: center;
}

.owl-theme .owl-controls .owl-buttons {
    margin-top: 15px;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 100%;
    position: relative;
    background-color: #e0e0e0;
    overflow: hidden;
    margin: 5px;
}


.owl-theme .owl-controls .owl-page span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #e641cd;
    background: -webkit-gradient(linear, left top, right top, from(#e641cd), to(#7028e4));
    background: linear-gradient(to right, #e641cd 0%, #7028e4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e641cd', endColorstr='#7028e4', GradientType=1);
    opacity: 0;
}

.owl-theme .owl-controls .owl-page.active span:after {
    opacity: 1;
}


/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers {
    height: auto;
    width: auto;
    color: #FFF;
    padding: 2px 10px;
    font-size: 12px;
    border-radius: 30px;
}

/* preloading images */

.owl-item.loading {
    min-height: 150px;
    background: url(AjaxLoader.gif) no-repeat center center
}

.owl-controls .owl-buttons &gt; div {
    display: inline-block;
    width: 50px;
    height: 30px;
    text-align: center;
    color: #7028e4;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    border: none;
    border-radius: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.owl-controls .owl-buttons &gt; div.owl-prev {
    border-right: 1px solid rgba(112, 40, 228, 0.3);
}

.owl-controls .owl-buttons &gt; div:hover {
    color: #e641cd;
}</pre></body></html>