.dropdown-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.button {
    background-color: rgba(255, 255, 255, 0.174);
    padding: 2px 16px;
    width: 200px;
    border-radius: 28px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white-color);
    height: auto;
    width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
    top: 52px;
    border-radius: 4px;

}

.dropdown-container:hover .dropdown-content {
    display: block;
}

.products-box {
    position: relative;
    border-radius: 16px;
    box-sizing: border-box;
    background-color: #ffffffa7;
    height: auto;
    flex-wrap: wrap;
    margin: 12px 12px !important;
    padding: 16px;
}

.img {
    width: 100%;
    height: auto;
}

.text {
    padding: 8px 16px;
}

.name {
    font-size: 20px;
    font-weight: 700;
}

.desc {
    font-size: 14px;
    font-weight: 700;
}

.cart-button {
    background-color: #5f76ca;
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    height: auto;
    width: 100%;
    text-align: center;
    color: var(--white-color);
}

.pagination {
    color: var(--white-color);
}
.filteredItems {
    display: none;
}
.showFilteredItems {
    display: block;
  }
.tabBox {
    display: flex;
    position: relative;
    align-items: center;
    padding: 16px;
    color: var(--white-color);
    background-color: rgba(255, 255, 255, 0.3);
    width: 100%;
    border-radius: 8px;
    justify-content: center;
    margin: 0px 8px;

}

.linact {
    position: relative;
}

.tabBox.active {
    display: flex;
    position: relative;
    align-items: center;
    padding: 16px;
    color: var(--white-color);
    background-color:rgba(43, 117, 235);
    width: 100%;
    border-radius: 8px;
    justify-content: center;
}

@media only screen and (min-width: 100px) and (max-width: 900px) {
    .products-box {
        padding: 16px;
        position: relative;
        border-radius: 16px;
        box-sizing: border-box;
        background-color: #ffffffa7;
        height: auto;
        flex-wrap: wrap;
        margin: 12px 0px;
    }

    .text {
        padding: 8px 16px;
    }

    .name {
        font-size: 20px;
        font-weight: 700;
    }

    .desc {
        font-size: 14px;
        font-weight: 700;
    }

    .cart-button {
        background-color: #5f76ca;
        padding: 8px 16px;
        border-radius: 4px;
        border: none;
        height: auto;
        width: 100%;
        text-align: center;
        color: var(--white-color);
    }

    .tabBox {
        display: flex;
        position: relative;
        align-items: center;
        padding: 4px;
        color: var(--white-color);
        background-color: rgba(0, 0, 0, 0);
        width: 100%;
        border-radius: 8px;
        justify-content: center;
        margin: 0px 8px;
        font-size: 8px;
        height: 57px;
    }
    .tabBox.active {
        display: flex;
        position: relative;
        align-items: center;
        padding: 16px;
        color: var(--white-color);
        background-color: rgba(0, 0, 0, 0);
        width: 100%;
        border-radius: 0px;
        justify-content: center;
        border-bottom: 1px solid rgba(43, 117, 235);
    }

}