.flex-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-container > div{
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.search-product__item {
    width: 25%;
    padding: 5px;
    height: 100%;
}

.search-product__item> div{
    /* height: 100%; */
}


@media (max-width: 720px) {
    .search-product__item {
        width: 100%;
        padding: 5px 25px;
    }

    .flex-container{
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.product-slider__container{
    position: relative;
}

.slider-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 31px;

    cursor: pointer;
}

.slider-arrow:hover{
    color: black;
}

.slider-arrow-left{
    left: -25px;

}

.slider-arrow-right{
    right: -25px;
}
