.btn-filters {
    top: 123px;
    z-index: 5;
    position: fixed;
    background-color: #fff;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
}

.product .img-hover {
    display: none;
}

.product .img-normal {
    display: block;
}

.product:hover .img-normal {
    display: none;
}

.product:hover .img-hover {
    display: block;
}

@media screen and (max-width: 768px) {
    .btn-filters {
        top: 58px;
        right: 22px;
    }
}

.listing-breadcrumb-wrapper {
    text-align: left;
    margin: 0 0 18px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
}

.listing-breadcrumb-wrapper nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 7px;
}

.listing-breadcrumb-wrapper .breadcrumb-item,
.listing-breadcrumb-wrapper .breadcrumb-separator {
    color: #999;
    font-weight: 400;
}

.listing-breadcrumb-wrapper .breadcrumb-item a {
    color: #888;
    text-decoration: none;
}

.listing-breadcrumb-wrapper .breadcrumb-item a:hover {
    color: #111;
}

.listing-breadcrumb-wrapper .breadcrumb-item.active {
    color: #555;
}

@media screen and (max-width: 768px) {
    .listing-breadcrumb-wrapper {
        margin-top: 10px;
        margin-bottom: 14px;
        font-size: 10px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .listing-breadcrumb-wrapper nav {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }

    .product-breadcrumb-wrapper,
    .listing-breadcrumb-wrapper {
        overflow-wrap: break-word;
        white-space: normal;
    }
}