/* css for filter product */

.container-filter-product {
    width: 100%;
    position: absolute;
    bottom: -60px;
    padding: 0 40px;
}

.filter-product {
    width: 100%;
    background-color: white;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    display: none;
}

.filter-product h3 {
    text-align: center;
}

.filter-product form {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.filter-product form select {
    width: calc(100% / 3 - 14px);
    border: 1px solid black;
    padding: 8px 20px;
    border-radius: 4px;
    appearance: auto;
}

.filter-product form button {
    width: calc(100% / 3 - 14px);
}

/* end css for filter product */

/* css for all product */
.container-all-product {
    width: 100%;
    margin-top: 80px;
}

/* end css for all product */

@media screen and (max-width:720px) {
    .filter-product form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .filter-product form select {
        width: 100%;
        display: block;
    }

    .filter-product form button {
        width: 100%;
        display: block;
    }
}