
.breadcrumb {
    font-size: small;
    margin-top: 10px;
}

.page_name_items_count {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px
}

.first_row {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

#sorting {
    padding: 5px 10px;
    margin-left: 10px;
}

.fixed-bottom {
    background-color: #3F3F3F;
}

.fixed-bottom ul, .fixed-bottom button {
    font-size: x-large
}

#fixedFilter {
    border-left: 1px solid white;
    border-radius: 0;
}

.fixed-bottom button:hover {
    background-color: black;
}

.filter_product_container {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 10px;
    margin-bottom: 50px;
}

.filters {
    max-width: 200px;
    min-width: 200px;
    background-color: rgba(211, 211, 211, 0.13);
    padding: 10px;
    margin-right: 20px;
    height: fit-content;
    min-height: 100px;
    align-self: flex-start;
}

.filters p a {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.38);
}

.filter_section {
    margin-bottom: 25px;
}

.filter_section form {
    margin-bottom: 10px;
}

.list_products {
    width: 100%;
    min-height: 500px;
    align-self: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product_item:hover {
    color: #4d4d4d;
}

.product_item {
    position: relative;
    display: block;
    overflow: hidden;
    align-self: flex-start;
    max-width: 254px;
    width: 254px;
    height: 410px;
    border: rgba(211, 211, 211, 0.51) 1px solid;

}

.product_item_image{
    height: 325px;
}

.product_item_image > img {
    width: 100%;
    height: 100%;
    border: none;
}

.product_item_info {
    padding: 0 10px 10px 10px;
}

.product_item_title {
    margin: 10px 0 5px 0;
    color: #3F3F3F;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product_item_price {
    color: darkgreen;
}

.product_item:hover {
    background-color: rgba(139, 0, 0, 0.1);
}

.filter_items_modal {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 16px;
}

.filter_madetoorder_modal {
    margin-bottom: 30px;
}

.filter_items_modal input, .filter_madetoorder_modal input {
    height: 20px;
    width: 20px;
}


input[type=checkbox] {
    margin-right: 10px;
    vertical-align: middle;
    margin-bottom: 0;
}

.page_pagination{
    display: flex;
    justify-content: center;
}

@media (min-width: 993px) {
    .fixed-bottom {
        display: none !important;
    }

    .view_sort_options {
        display: block !important;
    }

    .filters {
        display: block !important;
    }
    .upper_pagination{
        display: none;
    }
}

@media (max-width: 1200px) {
    .product_item {
        max-width: 300px;
    }
}

@media (max-width: 992px) {

    .page_name_items_count {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .fixed-bottom {
        display: flex;
        flex-wrap: nowrap;
        justify-items: center;
    }

    .filters {
        display: none;
    }

    .filter_section {
        padding: 0 10px;
    }

    .filter_section a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .view_sort_options {
        display: none;
    }

    .list_products {
        justify-content: center;
    }

    .modal-footer {
        border: none !important;
        display: flex;
        justify-content: space-between;
    }

    .upper_pagination{
        display: flex;
    }

    .breadcrumb{
        font-size: x-small;
    }
}

@media (max-width: 768px) {
    .product_item {
        max-width: 400px;
    }

    .fixed-bottom ul, .fixed-bottom button {
        font-size: medium;
    }
}