/*
*  Owl Carousel Owl Demo Theme 
*  v1.3.2
*/

.owl-theme .owl-controls {
    margin-top: 8px;
    text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
    display: inline-block;
    zoom: 1;
    *display: inline; /* IE7 life-saver */
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
    filter: Alpha(Opacity=100); /* IE7 fix */
    opacity: 0.5;
    text-decoration: none;
}

/* Styling Pagination */
.owl-theme .owl-controls .owl-page {
    display: inline-block; /* Ensure all dots are visible */
    margin: 0px 7px; /* Adjust spacing if necessary */
    opacity: 0.8; /* Ensure dots are fully opaque */
}

.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    filter: Alpha(Opacity=50); /* IE7 fix */
    opacity: 0.5; /* Default opacity */
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #869791; /* Default color */
}

/* Styling for the active dot */
.owl-theme .owl-controls .owl-page.active span {
    filter: Alpha(Opacity=100); /* IE7 fix */
    opacity: 1; /* Active dot opacity */
    background: #333; /* Color for active dot (change as needed) */
}

/* Styling for dots on hover */
.owl-theme .owl-controls.clickable .owl-page:hover span {
    filter: Alpha(Opacity=100); /* IE7 fix */
    opacity: 1; /* Hover dot opacity */
    background: #555; /* Color for hovered dot (change as needed) */
}

/* 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;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

/* Preloading images */
.owl-item.loading {
    min-height: 150px;
    background: url(AjaxLoader.gif) no-repeat center center;
}

/* Hide the last 4 dots UNCOMMENT WHEN THERE ARE MORE THAN 8 */
/* 
.owl-theme .owl-controls .owl-page:nth-last-child(-n+4) {
    display: none;
}
 */ 

/* Ensure remaining dots are visible */
.owl-theme .owl-controls .owl-page {
    display: inline-block; /* Ensure all dots are visible */
    margin: 0px 7px; /* Adjust spacing if necessary */
    opacity: 1; /* Ensure visible dots are fully opaque */
}
