/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 09 2024 | 19:48:43 */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}


@media only screen and (min-width: 1024px)  {
.main-slider {
    padding: 20px 0;
    left: -38%;
    position: relative;
}
}

.main-slider img {
    width: 80%;
    height: auto;
    transition: transform 0.3s ease;
}

.thumbnail-slider {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 395px;
    margin: 0 auto;
}

.thumbnails-wrapper {
    flex: 1;
    overflow: hidden; /* Hides overflowing thumbnails */
    display: flex;
    justify-content: center;
}
.thumbnails {
    display: flex;
    gap: 10px; /* Consistent spacing between items */
    transition: transform 0.3s ease;
}

.thumbnails .thumb {
    flex: 0 0 60px;
    background-color: #fff;
    padding: 10px; /* Consistent padding */
    margin-right: 0; /* Use gap in the parent */
    height: 100px;
    width: 100px;
    border-radius: 100px;
    object-fit: contain;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.3s ease, transform 0.3s ease;
    transform: scale(0.7);
}

.thumbnails .thumb.active {

    transform: scale(1);
}

.thumbnail-slider button {
       background: #ffffff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    color: #FC7701;
    transition: color 0.3s ease;
	    border-radius: 50px;
    padding: 6px 11px;
}

.thumb-prev {
    margin-right: 5px;
}

.thumb-next {
    margin-left: 5px;
}