.product {
    padding-top: 15px;
}

.filter-buttons-wraper {
    position: relative;
}
.filter-buttons-wraper button {
    z-index: 5;
}
.filter-buttons-content {
    position: absolute;
    left: 0;
    top: 43px;
    width: 100%;
    border: 1px solid #0F9640;
    border-top: none;
    background-color: #fff;
    z-index: 1;
    box-sizing: border-box;
    border-radius: 0 0 10px 10px;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.17);
    display: flex;
    flex-direction: column;
    padding: 25px 15px 15px;
    gap: 20px;
    min-height: 0;
    transition: 0.4s;
    transform: translateY(-30px);
    opacity: 0;
    overflow: hidden;
}
.filter-buttons-content.open {
    padding: 25px 15px 15px;
    min-height: 145px;
    transform: translateY(0);
    opacity: 1;
}
.filter-buttons-content * {
    color: #1F1A1A;
    font-size: 12px;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.filter-input-row {
    cursor: pointer;
}
.filter-input-row input[type="radio"] {
    display: inline-block;
    min-width: 15px;
    min-height: 15px;
    pointer-events: none;
}

@media screen and (max-width: 950px) {
    .filter-row {
        flex-wrap: wrap;
    }
    .filter-row > div:nth-child(3) {
        gap: 4px!important;
        margin-left: unset!important;
        width: 100%;
    }
    .round-btn {
        padding: 10px 10px;
    }
    .filter-row > div:nth-child(3) button {
        flex-grow: 2;
        justify-content: space-around;
    }
    .menu-items {
        margin-bottom: 25px;
    }
    .btn.btn-paddinger a {
        padding: 10px 20px!important;
    }
    .btn.border-btn {
        flex-grow: 2;
        justify-content: center;
    }
}

