
#image-slider-featured-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--clr-black);
    padding: 20px;
    height: 350px;
    position: relative;
}

#image-slider-featured-img {
    max-width: 300px;
    max-height: 300px;
    object-fit: cover;
    cursor: pointer;
}

@media (min-width: 540px){
    #image-slider-featured-img {
        max-width: 300px;
        max-height: 300px;
        object-fit: cover;
        cursor: pointer;
    }

}



@media (min-width: 768px){
    #image-slider-featured-img {
        max-width: 350px;
        max-height: 300px;
        object-fit: cover;
        cursor: pointer;
    }

}


.image-slider__thumbnail {
    object-fit: cover;
    max-width: 180px;
    max-height: 100px;
    cursor: pointer;
    opacity: 0.5;
    margin: 5px;
    border: 2px solid var(--clr-black);
}


.image-slider__thumbnail:hover {
    opacity: 1;
}

.image-slider__thumbnail--active {
    opacity: 1;
}


#image-slider-slides-wrapper {
    max-width: 500px;
    display: flex;
    min-height: 100px;
    align-items: center;
}


#image-slider-slides {
    width: 440px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0px 10px;
    transition: all .3s ease-in-out;

}


#image-slider-expand-featured-img-btn {
    position: absolute;
    background-color: transparent;
    top: 20px;
    right: 20px;
    border: none;
    transition: .3s;
 
}

#image-slider-expand-featured-img-btn svg  {
    width: 35px;
    height: 35px;


}


#image-slider-slide-left-btn:hover,
#image-slider-slide-right-btn:hover,
#image-slider-expand-featured-img-btn:hover {
    transform: scale(110%);
 
}

#image-slider-slide-left-btn,
#image-slider-slide-right-btn {
    font-size: 25px;
    transition: .3s;
}
