/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 25 2024 | 10:52:43 */
.disabled {
    pointer-events: none;
    opacity: 0.5; /* Optional: visually indicate the button is disabled */
}

.bullet-item:before {
    content: '';
    width: 15px;
    height: 15px;
    background: #ccc;
    position: absolute;
    bottom: 1.4px;
    right: 0px;
    border-radius: 100%;
	    z-index: 11;
	    transition: background-color .5s ease-in-out;
    transition-delay: .1s;
}
.bullet-item.active:before {
    background: #8f993e;
}

.bullet-item {
    position: relative;
}
.bullet-item span {
    margin-right: -14px;
}


.swiper-pagination-bullet {
  background: #ccc; /* default color */
}

.swiper-pagination-bullet.active {
  background: #007aff; /* active color */
}
