.filter__dropdown-container,
.filter__dropdown-item,
.filter__pressure span,
.filter__search input {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
}
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}
.filter__content {
    display: grid;
    gap: 16px;
	grid-template-columns:1fr 1fr 2fr;
}
.filter__search {
    position: relative;
}
.filter__search input {
    width: 100%;
    padding: 13px 14px 13px 42px !important;
    font-size: 18px;
    transition: 0.3s;
    border: 1px solid #e1e3e9 !important;
    color: #878fa2;
    line-height: normal;
}
.filter__search input:focus {
    outline: 0;
}
.filter__search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}
.filter__dropdown-container {
    position: relative;
    width:100%;
    font-size: 18px;
    line-height: 25px;
    color: #878fa2;
    border: 1px solid #d0d5dd;
}
.filter__dropdown-selected {
    background: #fff;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}
.filter__dropdown-arrow {
    transition: 0.3s;
    height: 20px;
}
.filter__dropdown--open .filter__dropdown-arrow {
    transform: rotate(180deg);
}
.filter__dropdown--open {
    border: 1px solid #344054;
}
.filter__dropdown--open .filter__dropdown-text {
    color: #344054;
}
.filter__dropdown-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #d0d5dd;
    box-shadow: 0 12px 16px 0 #1018280d;
    max-height: 180px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: 0.3s;
    z-index: 10;
}
.filter__dropdown--open .filter__dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.filter__dropdown-item {
    padding: 10px 16px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    line-height: 20px;
    color: #4a5672;
}
.filter__dropdown-item:hover {
    background: #f9fafb;
    color: #0079c1;
}
.filter__dropdown-item--active,
.filter__dropdown-item.selected {
    background: #e6f4fb;
    color: #0079c1;
    font-weight: 600;
}
.filter__dropdown-list::-webkit-scrollbar {
    width: 6px;
}
.filter__dropdown-list::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 4px;
}
.filter__pressure {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #d0d5dd;
    padding: 4px 14px;
/* 	    grid-column: span 2; */
}
.filter__pressure span {
    font-size: 18px;
    line-height: 25px;
    color: #878fa2;
}
.filter__range {
    display: flex;
    align-items: center;
    gap: 7px;
}
.filter__label {
    background: #e1e3e9;
    color: #878fa2 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    padding: 8px 16px;
    width: 100px;
    text-align: center;
    transition: 0.3s;
}
.filter__button,
.product-card__title {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
}
.filter__track-wrapper {
    position: relative;
    width: 152px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.filter__circle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0079c1;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}
.filter__circle--left {
    left: 0;
}
.filter__circle--right {
    right: 0;
}
.filter__slider {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 100%;
    height: 6px !important;
    border-radius: 5px;
    background: linear-gradient(to right, var(--blue) 50%, var(--track-bg) 50%);
    outline: 0;
    cursor: pointer;
    z-index: 2;
    position: relative;
    transition: background 0.3s ease-in-out;
    border: 0 !important;
    padding: 0 !important;
}
.filter__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: 0 0;
    border: none;
    cursor: pointer;
}
.filter__slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: 0 0;
    border: none;
    cursor: pointer;
}
.filter__button {
    background: #0079c1;
    color: #fff !important;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
    line-height: 25px;
    max-width: 125px;
    text-decoration: none;
}
.filter__button:hover {
    background: #005689;
}
.product-grid {
    padding: 48px 0;
}
.product-card__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}
.product-card__inner {
    border: 2px solid #d8f0ff;
    overflow: hidden;
    transition: 0.6s ease-out;
    height: 280px;
}
.product-card:hover .product-card__inner {
    border-color: #0079c1;
}
.product-card:hover .product-card__inner img {
    transform: scale(1.1);
}
.product-card:hover .product-card__title {
    color: #0079c1;
}
.product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.product-card__image {
    width: 290px;
    max-width: 290px;
    min-width: 290px;
    height: 290px;
    transition: 0.6s ease-out;
    transform: scale(1);
    object-fit: contain;
}
.product-card__title {
    margin: 16px 0 2px;
    font-size: 26px;
    color: #141924;
    line-height: 35px;
}
.filter__range input.filter__label {
    background: #e1e3e9;
    border-radius: 0;
}
.filter__range input.filter__label:focus {
    background-color: #fff;
}
.filter__search input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 0;
    width: 0;
    display: none;
}
@media only screen and (max-width: 1199px) {
    .filter__content {
        justify-content: initial;
    }
    .product-card__image {
        max-width: 100%;
        width: 100%;
        height: 100%;
        min-width: 100%;
    }
    .filter__dropdown-container {
        width: 100%;
    }
}
@media only screen and (max-width: 1130px) {
    .filter__pressure {
        width:100%;
        flex-wrap: nowrap;
    }
	.filter__content{
		 grid-template-columns: 1fr 1fr;
	}
	 .filter__pressure {
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 1024px) {
    .product-card__content {
        grid-template-columns: 1fr 1fr 1fr;
    }
   
}
@media only screen and (max-width: 767px) {
    .filter__dropdown,
    .filter__pressure,
    .filter__search {
        width: 100%;
        flex-wrap: wrap;
    }
	.filter__pressure{    grid-column: span 1;}
    .filter__content {
        grid-template-columns: 1fr;
    }
    .product-card__content {
        grid-template-columns: 1fr 1fr;
    }
    .filter__dropdown-container,
    .filter__range,
    .filter__track-wrapper {
        width: 100%;
    }
    .filter__button-container {
        display: flex;
    }
    .product-card__inner {
        height: 210px;
    }
    .product-card__image {
        width: 200px;
        min-width: 200px;
        max-width: 200px;
    }
}
@media only screen and (max-width: 480px) {
    .product-card__content {
        grid-template-columns: 1fr;
    }
}
