
    .flickity-button, .flickity-button:hover, .flickity-button:active {
        background: #eb4d4b;
    }

    .flickity-button:disabled {
        opacity: 0.6;
    }
    .flickity-enabled{
    }

    .gallery-cell {
        width: 13%;
        height: 50px;
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--blackd);
        border-radius: .5rem;
        padding: .5rem .3rem .3rem .4rem;
    }

    .gallery-cell_image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }

    @media only screen and (min-width: 1350px) {
        .gallery-cell {
            height: 130px;
        }
    }

    @media only screen and (min-width: 1250px) {
        .gallery-cell {
            height: 110px;
        }
    }

    @media only screen and (min-width: 1100px) {
        .gallery-cell {
            height: 90px;
        }
    }

    @media only screen and (min-width: 1050px) {
        .gallery-cell {
            height: 60px;
        }
    }
    
    @media only screen and (max-width: 992px) {
        .flickity-button {
            width: 20px;
            height: 20px;
        }

        .gallery-cell {
            height: 30px;
        }
    }
    
    @media only screen and (max-width: 600px) {
        .gallery-cell {
            height: 50px;
            width: 20%;
        }
        .flickity-button {
            width: 30px;
            height: 30px;
        }
    }