/* Catalog */

.wrapper__row {
    display: flex;
    margin: -10px;
}

.wrapper__col {
    padding: 10px;
    flex: 1 1 auto;
}

.wrapper__col.col--narrow {
    flex: 0 0 300px;
}

.fliter__headline {
    display: flex;
    gap: 10px;
    padding: 8px 12px;
    align-items: center;
}

.filter__block__title {
    padding: 8px 12px;
    background-color: var(--bg1-color);
    border-radius: 6px;
}

.filter__block__content {
    padding: 5px 0;
}

.filter__pricerange-boxes {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
}

.pricerange-box {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border: 1px solid #545656;
    border-radius: 6px;
    flex: 1 1 auto;
}

.pricerange-box span{
    color: var(--text1-color--semi);
    margin: 0;
}

.pricerange-box input {
    border: none;
    outline: none;
    margin: 0;
    width: 0;
    flex: 1 1 auto;
}

.category-link, .filter-option {
    padding: 0 5px;
}

.category-link span {
    margin: 4px 0;
}

.category-link::before {
    content: '';
    background-color: var(--pri2-color);
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 3px;
	flex: 0 0 8px;
}

.catalog__buttons {
    display: flex;
    justify-content: space-between;
    margin: 24px 0;
}

.catalog__buttons--left, .catalog__buttons__switchview  {
    display: flex;
    gap: 12px;
}

.catalog__buttons--right {
    display: flex;
    gap: 24px;
}

.catalog__grid {
    display: flex;
    flex-wrap: wrap;
}

.catalog__item {
    flex: 0 0 25%;
}

.catalog__item > div {
    height: 100%;
}

.wrapper__catalog .select.styled {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 48px;

    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.41438 9.53151C6.67313 9.20806 7.1451 9.15562 7.46855 9.41438L12 13.0396L16.5315 9.41438C16.855 9.15562 17.3269 9.20806 17.5857 9.53151C17.8444 9.85495 17.792 10.3269 17.4686 10.5857L12.4686 14.5857C12.1946 14.8048 11.8054 14.8048 11.5315 14.5857L6.53151 10.5857C6.20806 10.3269 6.15562 9.85495 6.41438 9.53151Z' fill='%231D1D1B' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center right 12px;
}

@media (max-width: 767px) {
    .catalog__buttons--row .btn.radio {
        padding: 8px 12px;
        font-weight: 500;
        font-size: 14px;
        line-height: 160%;
    }

    .catalog__buttons--row .btn.btn--graybg.radio svg {
        width: 24px;
        height: 24px;
    }

    .catalog__buttons--row:not(:first-child) {
        height: 40px!important;
    }

    .wrapper__catalog .select.styled {
        padding-left: 12px!important;
        padding-right: 48px!important;
    }

    .catalog__headline .title.t1 {
        font-weight: 700;
        font-size: 20px;
        line-height: 140%;
        color: #1d1d1b;
        margin: 0 0 12px;
    }
}