﻿.img-filter-slider-container {
    margin-bottom: 2rem;
    padding: 0px 1rem;
}

.img-filter-slider-wrapper {
    max-width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    margin-bottom: 0;
}

    .img-filter-slider-wrapper .img-filter-container {
        padding: 0.5rem;
        margin-bottom: 0;
        max-width: 10%;
        min-width: 100px;
        /*min-height: fit-content;
        height: 100%;
        max-height: 100%;*/
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
        border: 1px solid transparent;
        border-radius: 5px;
    }

        .img-filter-slider-wrapper .img-filter-container.selected {
            border-color: #D1232B;
        }

        .img-filter-slider-wrapper .img-filter-container .overlay-disabled {
            display: none;
        }

        .img-filter-slider-wrapper .img-filter-container:hover {
            border-color: #D1232B;
        }

        .img-filter-slider-wrapper .img-filter-container img {
            max-width: 100px;
            max-height: 70px;
        }

        .img-filter-slider-wrapper .img-filter-container .filter-label {
            margin-bottom: auto;
            font-size: 10px;
            text-align: center;
        }
