.catalog-wrapper {
    gap: 16px;
}
.catalog-list-wrapper {
    width: 100%;
}
.catalog_sorting_distance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 10px;
}
.catalog_sorting {
    position: relative;
    width: 283px;
    height: 42px;
    background-color: #EEEDEC;
    border: none;
    border-radius: 16px;
    outline: none;
    background-position: calc(100% - 10px) !important;
    background-image: url(/local/templates/new/img/sort-arrow.svg) !important;
    background-size: auto !important;
    background-repeat: no-repeat;
}
.catalog-item-list {
    height: 100%;
}
.catalog_sorting-choise {
    font-size: 17px;
    font-family: "Inter-Regular";
    color: #AAA6A1;
    cursor: pointer;
    padding: 8px 40px 8px 10px;
}
.catalog_sorting_box {
    position: absolute;
    top: 100%;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    width: 100%;
    border-radius: 16px;
    padding: 10px;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition: all .2s;
}
.catalog_sorting.active .catalog_sorting_box{
    opacity: 1;
    visibility: visible;
}
.catalog_sorting_box a {
    padding: 10px 0;
}
.catalog_sorting_box a[data-selected] {
    font-family: 'Inter-Bold';
}
.catalog_sorting_box a:not(:last-child) {
    border-bottom: 1px solid #EEEDEC;
}
.catalog_sorting_box option {
    background: #EEEDEC;
    font-size: 17px;
    font-family: 'Inter-Regular';
    color: #353433;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: start;
}
.catalog_sorting_box option:not(:last-child) {
    border-bottom: 1px solid #EEEDEC;
}
.catalog_sorting_box option[selected] {

}
.catalog_sorting_box option:hover{

}
.catalog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.catalog-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.catalog-item-text-block {
    background-color: white;
    padding: 16px;
    height: calc(100% - 220px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.catalog-item-title-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.catalog-item-price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.catalog-item-pictures {
    min-width: 283px;
    height: 220px;
}
.catalog-item-pictures img {
    height: 220px !important;
    background: #e6e6e6;
}
.catalog-item-pictures-pagination {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.catalog-item-pictures-pagination .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
    background-color: #AAA6A1;
}
.catalog-item-pictures-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #CFCCC9;
}
.catalog-item-pictures-slide {
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.catalog-item-button {
    width: 100%;
    cursor: pointer;
    margin-top: auto;
}
.catalog__review_main{
    max-width: none !important;
}
.catalog-item-list .hvr__dots {
    position: absolute;
    width: 100%;
    gap: 4px;
    margin-top: -12px;
    z-index: 2;
}
.catalog-item-list .hvr__dot {
    width: 5px;
    height: 5px;
    margin: 0;
    background: #AAA6A1;
    border-radius: 50%;
    flex: 0 0 auto;
}
.catalog-item-list .hvr__dot--active {
    background: #CFCCC9;
}

@media (max-width: 1200px) {
    .catalog-list {
        grid-template-columns: repeat(2, 1fr);
    }   
}

@media (max-width: 550px) {
    .catalog-list {
        grid-template-columns: 1fr;
    }
}