

/* Start:/local/templates/telepak/components/bitrix/catalog.smart.filter/default/style.css?17695200626878*/
.filter_container {
    display: flex;
    padding-bottom: 50px;
    margin-top: 10px;
}

.filter_wrapper {
    flex-shrink: 0;
    width: 300px;
    height: calc(100vh - 200px);
    margin-bottom: 20px;
    position: sticky;
    top: 196px;
}

.filter_block_title {
    color: var(--main-blue-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 15px;
    position: relative;
}

.filter_block_close_icon {
    display: none;
    position: absolute;
    top: calc(50% + 4px);
    right: 0;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
}

.filter_wrapper form {
    padding-bottom: 10px;
    overflow: hidden;
    overflow-y: scroll;
    max-height: calc(100% - 140px);
}

.filter_filds {}

.filter_fields_title {
    position: relative;
    color: var(--main-blue-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 10px;
    padding-right: 25px;
    cursor: pointer;
}

.filter_fields_title::after {
    content: '-';
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
    font-weight: 100;
    line-height: 1.5;
    background-color: var(--main-white-color);
    border: 1px solid var(--main-light-gray-color);
    border-radius: 2px;
}

.hide .filter_fields_title::after {
    content: '+';
    line-height: 1;
}

.filter_fields_title.price_title::after {
    display: none;
}

.filter_filds_wrapper {
    overflow: hidden;
    margin-bottom: 18px;
}

.hide .filter_filds_wrapper {
    height: 0;
}

.filter_field_item {
    margin-bottom: 5px;
}

.filter_field_item label {
    display: flex;
    align-items: center;
    color: var(--main-blue-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.filter_field_item label input {
    width: auto;
    margin-right: 10px;
}

.filter_buttons_wrapper {}

.filter_apply_button {
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    color: var(--main-white-color);
    background: var(--main-blue-color);
    border-radius: 5px;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background .3s ease;
}

.filter_apply_button:hover {
    background: var(--main-blue-hover-color);
}

.filter_reset_button {
    font-size: 16px;
    line-height: 19.2px;
    font-weight: 500;
    background: var(--main-dark-white-color);
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    border: 1px solid var(--placeholder-color);
    color: var(--placeholder-color);
    cursor: pointer;
    transition: background .3s ease,
        color .3s ease;
}

.filter_reset_button:hover {
    color: var(--main-white-color);
    background: var(--placeholder-color);
}


/*-------Price--------*/

.price_range .price-input {
    max-width: 250px;
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.price_range .price-input .field {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30px;
    align-items: center;
    border-radius: 7px;
    border: 1px solid var(--main-light-gray-color);
    padding: 0 15px;
    padding-left: 35px;
    color: var(--main-blue-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.price_range .price-input .field:has(.input-min):after,
.price_range .price-input .field:has(.input-max)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(0, -50%);
}

.price_range .price-input .field:has(.input-min):after {
    content: 'от';
}

.price_range .price-input .field:has(.input-max)::after {
    content: 'до';
}



.price_range input[type="number"]::-webkit-outer-spin-button,
.price_range input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.price_range .price-input .separator {
    width: 12px;
    height: 2px;
    background-color: var(--main-blue-color);
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 10px;
}

.price_range .slider {
    height: 4px;
    position: relative;
    background: var(--main-light-gray-color);
    border-radius: 5px;
    margin-top: 13px;
    max-width: 150px;
}

.price_range .slider .progress {
    height: 100%;
    max-width: 100%;
    left: 0%;
    right: 0%;
    position: absolute;
    border-radius: 5px;
    background: var(--main-blue-color);
}

.price_range .range-input {
    position: relative;
    max-width: 150px;
}

.price_range .range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.price_range input[type="range"]::-webkit-slider-thumb {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: var(--main-light-blue-color);
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.price_range input[type="range"]::-moz-range-thumb {
    height: 12px;
    width: 12px;
    border: none;
    border-radius: 50%;
    background: var(--main-light-blue-color);
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}



@media (max-width: 1399px) {
    .catalog_product__list {
        padding-left: 20px;
    }

    .filter_wrapper {
        width: 180px;
    }

    .price_range .price-input .field {
        padding: 0 5px;
        padding-left: 25px;
    }

    .price_range .price-input .field:has(.input-min):after,
    .price_range .price-input .field:has(.input-max)::after {
        left: 6px;
    }

    .price_range .price-input .separator {
        width: 10px;
        margin: 0px 5px;
    }
}


@media (max-width: 999px) {
    .filter_wrapper {
        position: absolute;
        top: -9px;
        left: 0;
        width: 250px;
        height: 100%;
        transform: translate(-100%, 0);
        transition: all .3s ease;
        padding: 14px 20px;
        background-color: var(--main-white-color);
        z-index: 999;
    }

    .filter_wrapper.mobile_show {
        transform: translate(0%, 0);
    }


    .ux_up_container:has(.filter_container) {
        position: relative;
    }

    .filter_block_close_icon {
        display: block;
    }

    .filter_block_title {
        font-size: 18px;
    }

    .filter_fields_title {
        font-size: 15px;
    }

    .filter_field_item label {
        font-size: 12px;
    }

    .filter_reset_button,
    .filter_apply_button {
        font-size: 15px;
        padding: 8px 0;
    }
}
/* End */


/* Start:/local/templates/telepak/components/bitrix/system.pagenavigation/default/style.css?17695200621515*/

.c-catalog__pagenavigation {}

.c-pagenavigation {
    position: relative;
    width: fit-content;
}

.c-pagenavigation__prev-page,
.c-pagenavigation__next-page {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-image: url(/local/templates/telepak/components/bitrix/system.pagenavigation/default/../../../../images/arrow_icons.svg);
    background-position-y: 20px;
}

.c-pagenavigation__prev-page {
    left: 0;
    transform: translate(-100%, -50%) rotate(-180deg);
}

.c-pagenavigation__next-page {
    right: 0;
    transform: translate(100%, -50%);
}

.c-pagenavigation__prev-page.disabled,
.c-pagenavigation__next-page.disabled {
    opacity: .5;
}

.c-pagenavigation__items {
    display: flex;
    border-radius: 7px;
    border: 1px solid var(--main-light-gray-color);
    overflow: hidden;
}

.c-pagenavigation__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-left: 1px solid var(--main-light-gray-color);
    color: var(--main-blue-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
    transition: all .3s ease;
}

.c-pagenavigation__item:first-child {
    border: none;
}

.c-pagenavigation__item.active {
    color: var(--main-white-color);
    background-color: var(--main-light-blue-color);
}

.c-pagenavigation__item:hover {
    background-color: var(--main-dark-white-color);
}

.c-pagenavigation__item.active:hover {
    background-color: var(--main-light-blue-hover-color);
}

/* End */


/* Start:/local/templates/telepak/components/bitrix/catalog.section/default/style.css?176952403817400*/
/* Premium Product List - Apple Style */
.product__list {
    padding-left: 30px;
    width: 100%;
}

.m_search__wrapper .product__list {
    padding-left: 0;
}

.product__list__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}

.product__list_void__header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-left: 30px;
}

/* Premium Title - Apple Style */
.product__list__title {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--main-blue-color);
}

.product__list__right_controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
    user-select: none;
}


.product__list__filter_mobile__open {
    display: none;
    position: relative;
    color: var(--main-blue-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.525px;
    padding-right: 18px;
    cursor: pointer;
    margin-left: 20px;
}

.m_search__wrapper .product__list__filter_mobile__open {
    display: none;
}

.product__list__filter_mobile__open .product__list__filter_mobile__open_icon {
    position: absolute;
    top: calc(50% + 2px);
    right: 0;
    transform: translate(0, -50%);
    width: 10px;
    height: 10px;
}

.product__list__sort {
    margin-top: 10px;
    margin-left: 20px;
    position: relative;
}

.ux_up_catalog__product_list__sort_title {
    display: flex;
    align-items: center;
    color: var(--main-blue-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.525px;
    cursor: pointer;
    transition: color .3s ease;
    opacity: .5;
}

.ux_up_catalog__product_list__sort_title .g_back_icon {
    position: relative;
    width: 12px;
    height: 12px;
}

.ux_up_catalog__product_list__sort_title .g_back_icon::after {
    left: 0;
    transform: translate(0, -50%) rotate(270deg);
    background-position-x: -20px;
    background-position-y: 0px;
}

.ux_up_catalog__product_list__sort_title.open {
    opacity: 1;
    color: var(--main-light-blue-color);
}


.ux_up_catalog__product_list__sort_title:hover {
    opacity: 1;
}

.ux_up_catalog__product_list__sort_title.open:hover {
    color: var(--main-light-blue-hover-color);
}

.ux_up_catalog__product_list__sort_title.open .g_back_icon::after {
    transform: translate(0, -50%) rotate(360deg);
    background-position-y: -20px;
}


.product__list__sort_wrapper {
    position: absolute;
    right: 0;
    top: 100%;
    padding-top: 10px;
    z-index: 8;
    pointer-events: none;
}

.ux_up_catalog__product_list__sort_select {
    pointer-events: none;
    opacity: 0;
    padding: 5px 15px;
    border-radius: 7px;
    border: 1px solid var(--main-light-gray-color);
    background: var(--main-white-color);
    transition: all .3s ease;
}

.ux_up_catalog__product_list__sort_select.show {
    pointer-events: all;
    opacity: 1;
}

.ux_up_catalog__product_list__sort_item {
    position: relative;
    white-space: nowrap;
    color: var(--main-blue-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-right: 30px;
    cursor: pointer;
    transition: color .3s ease;
}

.ux_up_catalog__product_list__sort_item.default_option {
    color: var(--main-gray-color);
}

.ux_up_catalog__product_list__sort_item:hover {
    color: var(--main-light-blue-color);
}

.ux_up_catalog__product_list__sort_item.selected::after {
    content: '\2714';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 12px;
    height: 12px;
    line-height: 0.5;
    font-size: 14px;
    color: var(--main-light-blue-color);
}

/* Premium Product Grid - Apple Style */
.product__list_catalog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border: none;
}

.product__list_catalog .product__mini {}

.product__mini {
    position: relative;
    width: 100%;
}

.m_search__wrapper .product__mini {
    width: 100%;
}

.m_search__wrapper .product__list_catalog {
    grid-template-columns: repeat(4, 1fr);
}

.product__mini .product__mini_wrapper {
    border: none;
    border-radius: var(--card-border-radius);
    background: var(--main-white-color);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product__mini .product__mini_wrapper:hover {
    transform: translateY(-4px);
    box-shadow: var(--premium-shadow-hover);
}

/* Premium Product Flags - Apple Style */
.product__mini_flags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
}

.product__mini_flags * {
    border-radius: 6px;
    color: var(--main-white-color);
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    padding: 5px 10px;
    margin-right: 0;
}

.product__mini_flag_1 {
    background-color: var(--main-red-color);
}

.product__mini_flag_2 {
    background-color: var(--main-light-blue-color);
}

.product__mini_choice__controlls {
    display: flex;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
}

.product__mini_choice__controlls * {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    cursor: pointer;
}

/* Premium Product Gallery - Apple Style */
.product__mini_gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 40px 20px 24px;
    background: var(--main-dark-white-color);
    position: relative;
    border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
}

.product__mini_gallery_void_hr {
    display: none;
}

.product__mini_gallery:has(img[data-lazy-image])::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: var(--main-white-color);
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px var(--main-light-blue-color);
}

.product__mini_gallery:has(img[data-lazy-image])::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 30px;
    height: 30px;
    background-color: var(--main-white-color);
    clip-path: polygon(50% 15%, 20% 100%, 80% 100%);
    animation: lazy_load_anim 2s ease infinite;
}

@keyframes lazy_load_anim {
    form {
        transform: translate(-50%, -50%) rotate(0deg);
        clip-path: polygon(50% 15%, 20% 100%, 80% 100%);
    }

    50% {
        transform: translate(-50%, -50%) rotate(360deg);
        clip-path: polygon(50% 15%, 0% 100%, 100% 100%);
    }

    to {
        transform: translate(-50%, -50%) rotate(720deg);
        clip-path: polygon(50% 15%, 20% 100%, 80% 100%);
    }
}

.product__mini_gallery__images {
    position: relative;
    width: 100%;
    height: 200px;
    z-index: 2;
}

.product__mini_gallery img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity .3s ease;
}

.product__mini_gallery img.active {
    opacity: 1;
}

.product__mini_gallery__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 3;
}

.product__mini_gallery__controls span {
    height: 100%;
    width: 100%;
    margin-right: 4px;
    border-bottom: 1px solid var(--main-light-gray-color);
    transition: all 0.3s ease;
}

.product__mini_gallery__controls span.active {
    border-bottom: 1px solid var(--main-blue-color);
}

.product__mini_gallery__controls span:hover {
    border-bottom: 1px solid var(--main-light-blue-color);
}

.product__mini_gallery__controls span:last-child {
    margin-right: 0;
}

/* Premium Product Info - Apple Style */
.product__mini_info {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product__mini_title {
    display: flex;
    text-decoration: none;
    color: var(--main-blue-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.product__mini_title:hover {
    color: var(--main-light-blue-color);
}

.product__mini_article {
    color: var(--main-gray-color);
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: auto;
    padding-bottom: 16px;
}

.product__mini_article span {
    color: var(--main-blue-color);
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
}

.product__mini_price__wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product__mini_price {
    color: var(--main-blue-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}

.product__mini_price__old {
    color: var(--main-gray-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-decoration: line-through;
}

/* Premium Buy Buttons - Apple Style */
.product__mini_buy {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: none;
    opacity: 0;
    z-index: 5;
    border-radius: 0 0 var(--card-border-radius) var(--card-border-radius);
}

.product__mini .product__mini_wrapper:hover .product__mini_buy {
    opacity: 1;
    height: 48px;
}

.product__mini_buy__one_click {
    background-color: var(--main-light-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-white-color);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    width: 50%;
    height: 48px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product__mini_buy__add_to_cart {
    background-color: var(--main-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-white-color);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    width: 50%;
    height: 48px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product__mini_buy__one_click:hover {
    background-color: var(--main-light-blue-hover-color);
}

.product__mini_buy__add_to_cart:hover {
    background-color: var(--main-blue-hover-color);
}

.catalog_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    margin-bottom: 40px;
    position: relative;
}


.catalog_more_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--main-blue-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.525px;
    cursor: pointer;
}

.catalog__quantity {
    position: relative;
    height: 30px;
    cursor: pointer;
}

.catalog__quantity_wrapper {
    border-radius: 7px;
    border: 1px solid var(--main-light-gray-color);
    background: var(--main-white-color);
    color: var(--main-blue-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    position: absolute;
    right: 0;
}

.catalog__quantity__value {
    padding: 5px 15px;
    padding-right: 30px;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
}

.catalog__quantity__value:hover {
    color: var(--main-light-blue-color);
}

.catalog__quantity__value .g_back_icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.catalog__quantity__value .g_back_icon::after {
    top: calc(50% - 2px);
    left: auto;
    right: 5px;
    opacity: 1;
    transform: translate(0, -50%) rotate(360deg);
}

.catalog__quantity__value.open .g_back_icon::after {
    opacity: 0;
}

.catalog__quantity__value:hover .g_back_icon::after {
    background-position-y: -20px;
}


.catalog__quantity_select {
    overflow: hidden;
    padding: 5px 15px;
    padding-right: 30px;
    border-top: 1px solid var(--main-light-gray-color);
    display: none;
    opacity: 0;
    animation: hide_c_quantity 0.3s ease;
}

@keyframes hide_c_quantity {
    from {
        display: block;
        opacity: 1;
    }

    to {
        display: none;
        opacity: 0;
    }
}

.catalog__quantity_select.show {
    display: block;
    opacity: 1;
    animation: show_c_quantity 0.3s ease;
}

@keyframes show_c_quantity {
    from {
        display: none;
        opacity: 0;
    }

    to {
        display: block;
        opacity: 1;
    }
}

.catalog__quantity__item {
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
}

.catalog__quantity__item.selected::after {
    content: '\2714';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translate(0, -50%);
    width: 12px;
    height: 12px;
    line-height: 0.5;
    font-size: 14px;
    color: var(--main-light-blue-color);
}

.catalog__quantity__item:hover {
    color: var(--main-light-blue-color);
}

.catalog__quantity__item.selected {}


@media (max-width: 1399px) {
    .product__list {
        padding-left: 20px;
    }
    .m_search__wrapper .product__list {
        padding-left: 0;
    }    

    .product__list_void__header {
        padding-left: 20px;
    }
}
@media (max-width: 1200px) {
    .m_search__wrapper .product__mini {
        width: 33.333%;
    }
}

@media (max-width: 1024px) {
    .product__list .product__mini {
        width: 50%;
    }

    .m_search__wrapper .product__mini {
        width: 33.333%;
    }
}

@media (max-width: 999px) {
    .product__list {
        padding-left: 0px;
    }

    .product__list_void__header {
        padding-left: 0;
    }

    .product__list .product__mini {
        width: 33.333%;
        height: auto;
    }

    .product__mini_gallery {
        margin: 40px 15px 10px;
        padding-bottom: 15px;
    }

    .product__mini_gallery__images {
        height: 120px;
    }
    
    .product__mini_info {
        height: 100%;
    }

    .product__mini_title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .product__mini_article {
        margin-bottom: 20px;
    }

    .product__mini_price {
        font-size: 20px;
    }

    .product__mini_price__old {
        font-size: 12px;
    }

    .product__mini .product__mini_wrapper:hover .product__mini_buy {
        height: auto;
    }
    
    .product__mini_buy {
        position: static;
        height: auto;
        overflow: initial;
        border: none;
        opacity: 1;
    }

    .product__mini_buy a {
        font-size: 10px;
        height: 35px;
    }

    .product__list__filter_mobile__open {
        display: block;
    }

    .c-catalog__pagenavigation,
    .catalog__quantity {
        display: none;
    }

}

@media (max-width: 840px) {
    .product__mini_buy {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .product__list__title {
        font-size: 20px;
    }

    .product__mini_flags * {
        font-size: 6px;
    }

    .product__mini_gallery {
        margin: 33px 15px 10px;
    }

    .product__mini_gallery__images {
        height: 170px;
    }

    .product__mini_title {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .product__mini_article {
        font-size: 8px;
        margin-bottom: 11px;
    }

    .product__mini_article span {
        font-size: 10px;
    }

    .product__mini_price {
        font-size: 12px;
    }

    .product__mini_price__old {
        font-size: 10px;
    }

    .product__mini_buy a {
        font-size: 8px;
        height: 25px;
    }

    .ux_up_catalog__product_list__sort_title,
    .ux_up_catalog__product_list__sort_item,
    .product__list__filter_mobile__open {
        font-size: 10px;
    }

    .product__list__filter_mobile__open .product__list__filter_mobile__open_icon {
        top: calc(50% + 1px);
    }

    .ux_up_catalog__product_list__sort_select {
        padding: 5px 10px;
    }

    .ux_up_catalog__product_list__sort_item.selected::after {
        width: 10px;
        height: 10px;
        font-size: 11px;
        line-height: .8;
    }

    .ux_up_catalog__product_list__sort_title .g_back_icon::after {
        transform: translate(0, -50%) rotate(270deg) scale(0.8);
    }

    .ux_up_catalog__product_list__sort_title.open .g_back_icon::after {
        transform: translate(0, -50%) rotate(360deg) scale(0.8);
    }

    .catalog_more_button {
        font-size: 12px;
    }
}

@media (max-width: 599px) {
    .product__list .product__mini {
        width: 50%;
    }
}

@media (max-width: 499px) {
    .product__mini_flags {
        flex-direction: column;
    }

    .product__mini_flags * {
        width: fit-content;
        margin: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 340px) {
    .m_search__wrapper .product__mini {
        width: 100%;
    }
}
/* End */


/* Start:/local/templates/telepak/components/bitrix/breadcrumb/default/style.css?1769520062331*/
.c-breadcrumb {
    margin-bottom: 15px;
}

.c-breadcrumb * {
    color: var(--main-gray-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.525px;
    text-decoration: none;
}

.c-breadcrumb *.active {
    color: var(--main-blue-color);
    font-weight: 600;
}
/* End */
/* /local/templates/telepak/components/bitrix/catalog.smart.filter/default/style.css?17695200626878 */
/* /local/templates/telepak/components/bitrix/system.pagenavigation/default/style.css?17695200621515 */
/* /local/templates/telepak/components/bitrix/catalog.section/default/style.css?176952403817400 */
/* /local/templates/telepak/components/bitrix/breadcrumb/default/style.css?1769520062331 */
