.container.big-padding {
    margin-top: 68px;
    margin-bottom: 152px;
}

.product-box {
    height: 367px;
    width: 260px;
    padding: 10px;
    background: #F6F6F6;
    border-radius: 15px;
}

.products-row {
    gap: 20px;
    flex: 1;
}

.product-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.product-box .product-name {
    font-weight: 700;
    color: #398300;
    margin-top: 19px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-box>div {
    padding-right: 4px;
    padding-left: 4px;
}

.product-box>div:last-child {
    padding-right: 0px;
    height: 48px;
}

.product-box .product-info {
    font-size: 14px;
    color: #AAAAAA;
    margin-top: 5px;
}

.product-box .product-info span {
    font-weight: 700;
}

.product-box .prices .original {
    font-weight: 700;
    color: #7F7F7F;
    text-decoration: line-through;
}

.product-box .prices .actual {
    font-weight: 700;
    color: #398300;
}

.filter-box {
    padding: 24px;
    background: #F6F6F6;
    border-radius: 15px;
    height: 754px;
}

.filter-box .title {
    font-weight: 700;
    font-size: 20px;
    color: #398300;
    margin-bottom: 16px;
}

.filter-box label {
    font-size: 14px;
    color: #7F7F7F;
    margin-left: 6px;
}

.filter-box input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #D9D9D9;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    bottom: -3px;
}

.filter-box input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: #398300;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.filter-box .spacer {
    height: 18px;
}

.filter-box .spacer-1 {
    height: 70px;
}

.range-slider {
    width: 240px;
    position: relative;
}

.range-slider .range-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #7F7F7F;
}

.range-slider .slider {
    position: relative;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    margin: 12px 0;
}

.range-slider .slider .progress {
    position: absolute;
    height: 100%;
    background: #398300;
}

.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    top: 27px;
    appearance: none;
    background: none;
    pointer-events: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}

.range-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}

#paginator {
    margin-top: 68px;
}

@media (max-width:991px) {
    .products-row {
        margin-top: 32px;
    }

    .filter-box {
        margin: 0px 11px;
        height: unset;
    }

    .range-slider {
        width: 100%;
    }

    .filter-box .filter-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        opacity: 0;
    }

    .filter-box.open .filter-content {
        max-height: 1000px;
        opacity: 1;
    }

    .filter-box i {
        color: #398300;
    }

    .filter-box.open i {
        transform: rotate(180deg);
        position: relative;
        top: 7px;
    }

    .filter-box .title {
        margin-bottom: 0px;
    }

    .filter-box.open .title {
        margin-bottom: 16px;
    }

    .filter-box {
        padding: 6px 24px;
    }

    .filter-box.open {
        padding: 24px;
    }

    .filter-box .filter-switch {
        align-items: center;
    }

    .filter-box.open .filter-switch {
        align-items: flex-start;
    }

    .container.big-padding {
        margin-top: 36px;
        margin-bottom: 30px;
    }

    #paginator {
        margin-top: 36px;
    }

    .filter-box .spacer-1 {
        height: 35px;
    }
}

@media (max-width:575px) {
    .product-box {
        width: 100%;
    }

    .products-row {
        padding: 0px 11px;
    }
}

@media (max-width:339px) {
    .product-box button {
        padding: 7px 7px;
    }

    .product-box .prices {
        font-size: 15px;
    }
}