#listProducts {
    display: none;


    .no_data {
        display: flex;
        align-items: center;
        justify-self: center;
        flex-direction: column;
        min-height: 318px;
        justify-content: center;

        img {
            width: 128px;
            height: 128px;
        }

        h5 {
            text-align: center;
            color: #1D2939;
            font-weight: 400;
            font-size: 16px;
        }

        p {
            text-align: center;
            color: #475467;
            font-weight: 300;
            font-size: 16px;
            margin-top: 0px;
        }

        a {
            background-color: #194185;
            color: white;
            margin-top: 1rem;
            padding: 0;
            border-radius: 5px;
        }
    }

    .box-imge {
        position: relative;
        flex: 1;

        img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
    }


    .box-imge>.d-flex>.status-product {
        font-size: 12px;
        background-color: #1570EF;
        color: white;
        margin-left: 0px;
        border-radius: 5px;
    }

    .box-imge>.d-flex>.status-time-product {
        font-size: 12px;
        background-color: #DC6803;
        color: white;
        margin-left: 0px;
        border-radius: 5px;
    }

    .title_product {
        color: #1D2939;
        font-size: 16px;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 400;
        white-space: nowrap;
    }

    .pirce_product {
        color: #475467;
        font-size: 16px;
        font-weight: 300;
        padding: 10px 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }


    .btnNomal {
        width: 100%;
        color: #194185;
        font-weight: 400;
        background-color: unset;
        border: 1px solid #D0D5DD;
        box-shadow: unset;
        font-size: 14px;
    }

    .btn-small:hover {
        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
    }

    .help_tool {
        display: flex;
        gap: 5px;
        height: 27.8px;
        margin-top: 10px;
    }

}



#filter_footer {
    display: flex;
    justify-content: space-between;

    .select_page {
        display: flex;
        align-items: center;

        .select-wrapper input.select-dropdown {
            max-width: 60px;
            padding-left: 10px;
            border-bottom: 1px solid #D0D5DD;
            font-size: 16px;
            font-weight: 300;
        }
    }

    .pagination li {
        vertical-align: middle;
        border: 1px solid transparent;
    }

    .pagination li a {
        font-size: 14px;
        font-weight: 300;
        vertical-align: middle;

    }

    .pagination li i {
        font-size: 14px;
        font-weight: 300;
        vertical-align: initial;
    }

    .pagination li.active {
        background-color: unset;

        border: 1px solid #D0D5DD;
    }

    .pagination li.active a {
        color: #194185 !important;
    }


}

@media only screen and (max-width: 600px) {
    #listProducts {
        .header {
            padding: 1rem 1rem 1rem 0.75rem !important;
        }

        #favorites {
            padding: 0px;
        }

        .card .card-content {
            padding: 24px 0;
        }
    }

}

.status-blue {
    cursor: pointer;
    color: #1570EF;
    border: 1px solid #1570EF;
    padding: 4px 8px;
    font-weight: 400;
    font-size: 12px;
    border-radius: 20px;
}

.status-proxy {
    cursor: pointer;
    color: #026AA2;
    border: 1px solid #026AA2;
    padding: 4px 8px;
    font-weight: 400;
    font-size: 12px;
    border-radius: 20px;
}
.status-not-approved {
    cursor: pointer;
    color: #DC6803;
    border: 1px solid #DC6803;
    padding: 4px 8px;
    font-weight: 400;
    font-size: 12px;
    border-radius: 20px;
}

.status-approved {
    cursor: pointer;
    color: #039855;
    border: 1px solid #039855;
    padding: 4px 8px;
    font-weight: 400;
    font-size: 12px;
    border-radius: 20px;
}