.filter-products__container{
    flex-direction: column;
    margin-bottom:40px;
}

.filter-products__flex{
    display: flex;
    gap: 20px;
    margin: -24px 0 0;
}
.filter-products__filter{
    width: 276px;
    margin: 37px 0 0;
}
.filter-products__products{
    flex: 1;
}
.filter-products__dropdown-head{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid #DEDEDE;
    padding: 0;
    margin-bottom: 19px;
}
.filter-products__dropdown-item{
    display: flex;
    justify-content: space-between;
}
.filter-products__grid{
    display: flex;
    /* gap: 10px; */
    flex-wrap: wrap;
}
.filter-products__grid .productcard{

}

.filter-products__open-filter{
    display: none;
    cursor: pointer;
    color:var(--primary);
    font-size: 16px;
    font-weight: 700;
}
.filter-products__open-filter:hover{
    opacity:0.75;
}

.filter-products__dropdown-head h6 {
    font-weight: 700;
    font-size: 20px;
    padding-bottom: 3px;
    margin: 0;
    text-transform: uppercase;
}

.filter-products__dropdown-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.filter-products__dropdown{
    margin: 0 0 26px;
}

.filter-products__top-products{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-products__top-products .productcard{
    border-radius: 18px;
    width: 131px;
    margin: 0;
    height: 230px;
    min-height: 230px !important;
    padding-top: 30px;
}

.filter-products__top-products .productcard>img{
    height: 180px;
    margin-top: -5px;
}

.filter-products__top-products .productcard-wish{
    display: none;
}


.filter-products__top-products .productcard-actions {
    display: none;
    justify-content: flex-start;
    gap: 4px;
    padding: 6px 6px;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 10px);
}
.filter-products__top-products .productcard-actions .actions-addtocart {
    width: 26px;
    height: 26px;
}
.filter-products__top-products .productcard-actions .actions-view {
    width: 26px;
    height: 26px;
    background-size: 18px;
}
.filter-products__top-products .productcard-actions .actions-addtocart {
    width: 26px;
    height: 26px;
}
.filter-products__top-products .productcard-details{
    padding: 25px 12px 12px;
}
.filter-products__top-products .productcard-details-title{
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.filter-products__top-products .productcard-price{
    font-size: 14px;
    margin: 0;
}
.filter-products__top-products .productcard-cat{
    border-radius: 25px;
    background: #299E7F33;
    margin: 6px 6px 0;
    height: 25px;
    justify-content: center;
    gap: 0;
    font-size: 10px;
    padding-right: 6px;
    position: relative;
    z-index: 1;
    position: absolute;
    width: calc(100% - 18px);
    top: 0;
}
.filter-products__top-products .productcard-cat-amino-acids .productcard-cat{
    background: #EC1D2E33;
}
.filter-products__top-products .productcard-cat-nootropics .productcard-cat{
    background: #1B75BC33;
}
.filter-products__top-products .productcard-cat::before {
    background-size: 57% !important;
}
.filter-products__top-products .productcard:hover .productcard-cat {
    display: none;
}
.filter-products__top-products .productcard:hover .productcard-actions {
    display: flex;
}

.filter-products__top-products .productcard-outofstock {
    width: calc(100% - 44px);
    font-size: 11px;
    position: absolute;
    top: 0;
    left: 0;
}

.filter-products__top-products .productcard.outofstock .productcard-actions {
    display: none !important;

}

@media (max-width: 768px) {

    .filter-products__open-filter{
        display: flex;
        gap: 5px;
        align-items: center;
        margin: 0 0 35px;
    }
    .filter-products__open-filter::before{
        background-image: url(/wp-content/themes/biohacking-redesign/img/icons/icon-open-filter.svg);
        content: "";
        width: 24px;
        height: 24px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        flex-shrink: 0;
    }

    .filter-products__filter {
        display: none;
        width: 276px;
        position: fixed;
        top: -37px;
        left: 0;
        background: #fff;
        padding: 20px;
        height: 100vh;
        overflow-y: scroll;
        z-index: 50;
    }

}