

/* Start:/local/templates/helicon-shop/components/bitrix/news/actions/bitrix/news.detail/.default/style.css?171349708012443*/
/* ----------------------- Catalog ------------------------------ 
--------------- каталог товаров -----------------  */

.catalog {
    margin-bottom: 60px;
}

.catalog__title-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 10px;
}

.events-list_block__switcher {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
}

.catalog__sections {
    display: flex;
    align-items: flex-start;
    padding-top: 12px;
}

.catalog__sections-item {
    width: fit-content;
    padding: 0 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;

    text-align: center;

    padding-bottom: 3px;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: border-bottom-color 0.5s ease, color 0.5s ease;
    color: var(--mild-grey-color);
    border-bottom-color: var(--mild-grey-color);
}

.catalog__sections-item:hover,
.catalog__sections-item.catalog__sections-item_active {
    border-bottom-color: var(--blue-color);
    color: var(--dark-blue-color);
}
.events-list__section__subsection__item:hover .events-list__section__subsection__item__list__links {
    opacity: 1;
    visibility: visible;
}

.catalog-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.catalog-container {
    padding-bottom: 60px;
    overflow: hidden;
}

.catalog-content {
    transition: opacity 0.5s ease;
}
/* catalog-content */

.catalog-content__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.sort__menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
}

.catalog-content__sections {
    display: flex;
    align-items: flex-start;
    padding-top: 12px;
    overflow: hidden;
    height: auto;
    transition: opacity 0.5s ease;
}

.catalog-content__section {
    transition: opacity 0.5s ease;
}

.section__items {
    position: relative;
    padding-left: 1px;
}

.section__item {
    z-index: 1;
    position: relative;
    display: flex;
    width: 100%;
    height: auto !important;
    box-sizing: border-box;
    cursor: pointer;
    background-color: #fff;

    transition: all 0.5s ease;
}

.section__item-wrapper {
    display: flex;
}
.section__item:hover {
    z-index: 5;
    grid-template-columns: 1fr 1fr;
    box-shadow: 6px -7px 39px rgb(236 236 236 / 15%), -5px -7px 39px rgb(236 236 236 / 15%),
        5px 7px 39px rgb(236 236 236 / 15%);
}

.section__item:hover .section__item-list {
    z-index: 5;
    height: 100%;
    width: 100%;
}

.section__item:hover .section__item-list_item {
    border-bottom: 1px solid transparent;
}

.left-info:hover .section__item-list_item {
}

.section__item:hover .section__item-list_links {
    transform: translateY(100%);
}

.section__item:last-child {
}

.section__item-list {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.section__item-list_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    height: 33%;
    padding: 24px 24px 32px;
    background-color: #fff;

    border-top: 1px solid rgba(168, 169, 173, 0.25);
    border-left: 1px solid rgba(168, 169, 173, 0.25);
    border-right: 1px solid rgba(168, 169, 173, 0.25);
    border-bottom: 1px solid rgba(168, 169, 173, 0.25);
}

.section__item-list_item-img {
    position: relative;
    margin-bottom: 16px;
    height: fit-content;
}

.section__item-list_item-img img {
    width: 100%;
}

.section__item:hover .section__item-list_item-img_buttons {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.section__item-list_item-img_buttons {
    position: absolute;
    flex-direction: column;
    top: 8px;
    right: 8px;
    opacity: 0;
    visibility: hidden;
    transition-property: all;
    transition: all ease 0.25s;
}

.section__item-list_item-img_button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    margin-right: 0;
    width: 32px;
    height: 32px;

    background: #ffffff;

    border: 1px solid #ececec;
    border-radius: 2px;
    cursor: pointer;
}

.section__item-list_item-img_button.product-favorite-add path {
    fill: var(--orange-color);
    stroke: var(--orange-color);
}

.section__item-list_item-img_button:hover path {
    stroke: var(--orange-color);
    transition: stroke 0.5s ease;
}

.section__item-list_item-article {
    margin-bottom: 24px;

    font-weight: 400;
    font-size: 16px;
    line-height: 145%;

    color: var(--mild-grey-color);
}

.section__item-list_item-brand {
    margin-bottom: 8px;

    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
}

.section__item-list_item-description {
    margin-bottom: 8px;

    font-weight: 400;
    font-size: 18px;
    line-height: 132%;
}

.section__item-list_item-available {
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
}

.section__item-list_item-available.available-green {
    color: var(--green-color);
}

.section__item-list_item-available.available-blue {
    color: var(--blue-color);
}

.section__item-list_item-available.available-orange {
    color: var(--orange-color);
}

.section__item-list_item-available.available-red {
    color: var(--red-color);
}

.section__item-list_item-price {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 16px;
}

.section__item-list_item-price__new {
    font-weight: 500;
    font-size: 24px;
    line-height: 132%;
}

.section__item-list_item-price__old {
    font-weight: 400;
    font-size: 16px;
    line-height: 132%;

    text-decoration-line: line-through;
}

.section__item-list_links {
    z-index: -1;
    position: absolute;
    bottom: 0;
    display: flex;
    width: 100%;
    margin: 0 auto 0;
    transition-property: all;
    transition: all ease 0.5s;
}

.section__item-list_cart {
    min-height: 60px;
}

.section__item-list_click {
    min-height: 60px;
    background-color: #fff;
}

.section__item-info {
    overflow: hidden;
    position: absolute;
    width: 100%;
    margin: 1px 0px 1px -2.5px;
    height: calc(100% - 2px);
    border-bottom: 1px solid rgba(168, 169, 173, 0.25);
    border-right: 1px solid rgba(168, 169, 173, 0.25);
    background-color: #fff;
    transition-property: all;
    pointer-events: none;
    transition: all 0.5s ease;
}

.left-info .section__item-info {
    left: 0;
    margin: 1px 0px 1px 1px;
    border-left: 1px solid transparent;
}

.left-info:hover .section__item-info {
    border-right: 1px solid rgba(168, 169, 173, 0.25);
    border-left: 1px solid rgba(168, 169, 173, 0.25);
    transform: translateX(-100%) !important;
}

.section__item:hover .section__item-info {
    overflow: hidden;
    width: 100%;
    display: inline-block;
    border-right: 1px solid rgba(168, 169, 173, 0.25);
    transform: translateX(100%);
    box-shadow: 6px -7px 39px rgb(236 236 236 / 25%), -5px -7px 39px rgb(236 236 236 / 25%),
        5px 7px 39px rgb(236 236 236 / 25%);
    margin-left: -1px;
}
.section__item-info_list {
    padding: 24px 3% 32px 4%;
}

.section__item-info_item {
    display: flex;
    justify-content: space-between;

    margin-bottom: 8px;
}

.section__item-info_item-title {
    width: 48%;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-align: left;
    color: #676767;
}

.section__item-info_item-description {
    width: 45%;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-align: left;
    color: #041229;
}
.section__items-slider__next,
.section__items-slider__prev {
    display: none !important;
}

@media screen and (max-width: 1023px) {
    /*----------------------- catalog ------------------------------ */
    /*--------------- каталог товаров ----------------- */

    .events-list_block__switcher {
        display: none;
    }

    .catalog {
        margin-bottom: 80px;
        padding: 30px 0 0;
    }
    .catalog-content__section {
        position: relative;
    }
    .catalog__title-block {
        position: relative;
        margin-bottom: 0px;
    }
    .catalog__title-block h2 {
        font-weight: 500;
        font-size: 26px;
        line-height: 31px;
        letter-spacing: -0.03em;
        color: #000000;
    }

    .catalog__sections {
        position: absolute;
        top: -80px;
    }
    .catalog__sections-item {
        font-weight: 400;
        font-size: 16px;
        line-height: 145%;
        padding: 0 6px;
        color: #a8a9ad;

        opacity: 0.7;
    }

    .catalog__sections-item.catalog__sections-item_active {
        color: #041229;
        opacity: 1;
    }

    .section__items {
        margin-left: -1px;
    }

    .section__items-slider__next,
    .section__items-slider__prev {
        display: flex !important;
    }
    .section__item-list {
        width: inherit;
    }
    .section__item-list_item {
        padding: 16px 16px 30px;
    }

    .section__item .section__item-list_links {
        transform: translateY(100%);
        z-index: 1;
        bottom: 1px;
    }
    .section__item-list_item-img {
        margin-bottom: 8px;
    }
    .section__item-list_item-img_buttons {
        opacity: 1;
        visibility: visible;
    }

    .section__item-list_item-img_buttons {
        display: flex;
        flex-direction: row;
    }

    .section__item-list_item-img_button:first-child {
        margin-right: 8px;
    }

    .section__item-list_item-article {
        margin-bottom: 16px;

        font-weight: 400;
        font-size: 14px;
        line-height: 145%;
        color: var(--mild-grey-color);
    }

    .section__item-list_item-brand {
        margin-bottom: 8px;

        font-weight: 700;
        font-size: 14px;
        line-height: 12px;
    }

    .section__item-list_item-description {
        margin-bottom: 8px;

        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
    }

    .section__item-list_item-available {
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
    }

    .section__item-list_item-price {
        margin-top: 20px;
    }

    .section__items-slider__next {
        top: 30% !important;
        width: 45px !important;
        height: 45px !important;
        right: 5px !important;
        border-radius: 50%;
        transform: rotate(-180deg);
        background: rgba(255, 255, 255, 0.65);
        box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.08);
    }
    .section__items-slider__prev {
        top: 30% !important;
        width: 45px !important;
        height: 45px !important;
        left: 5px !important;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.65);
        box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.08);
    }
    .section__item-info {
        display: none;
    }
}

.direction-banner .banner__content{
    position: relative;
}

.direction-banner .banner__content::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
} 
.direction-banner .banner__content img{
    display: none;
}

.direction-banner--img .banner__content{
    background: none;
}


@media screen and (min-width:1024px) {
    .direction-banner--img .banner__content img{
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        object-fit: cover;
    }
}
@media screen and (max-width:1023px) {
    .direction-banner .banner__content{
        display: block;
        background: none;
        padding-bottom: 0 !important;
    }
    .direction-banner .banner__content::before{
        display: none;
    }
    .direction-banner .banner__content img{
        display: block;
        margin-inline: auto;
    }
}

@media screen and (max-width: 1023px){
    .subscribe {
        margin-bottom: 0 !important;
    }
}
.special-block .section__items-slider__next.swiper-button-next, .special-block .section__items-slider__prev.swiper-button-prev{
    top: 50% !important;
}
@media (max-width:1023px) {
    .special-block .events-list_block__switcher{
        display: none;
    }
}

/* End */


/* Start:/local/templates/.default/components/bitrix/catalog.section/carousel/style.css?17664589953062*/
.catalog {
    margin-bottom: 60px;
}

.catalog__title-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 10px;
}

.events-list_block__switcher {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
}

.catalog__sections {
    display: flex;
    align-items: flex-start;
    padding-top: 12px;
}

.catalog__sections-item {
    width: fit-content;
    padding: 0 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;

    text-align: center;

    padding-bottom: 3px;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: border-bottom-color 0.5s ease, color 0.5s ease;
    color: var(--mild-grey-color);
    border-bottom-color: var(--mild-grey-color);
}

.catalog__sections-item:hover,
.catalog__sections-item.catalog__sections-item_active {
    border-bottom-color: var(--blue-color);
    color: var(--dark-blue-color);
}

.events-list__section__subsection__item:hover .events-list__section__subsection__item__list__links {
    opacity: 1;
    visibility: visible;
}

.catalog-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.catalog-container {
    padding-bottom: 60px;
    overflow: hidden;
}

.catalog-content {
    transition: opacity 0.5s ease;
}

/* catalog-content */

.catalog-content__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.sort__menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
}

.catalog-content__sections {
    display: flex;
    align-items: flex-start;
    padding-top: 12px;
    overflow: hidden;
    height: auto;
    transition: opacity 0.5s ease;
}

.catalog-content__section {
    transition: opacity 0.5s ease;
}

.section__items {
    position: relative;
    padding-left: 1px;
}

.section__items-slider__next,
.section__items-slider__prev {
    display: none !important;
}

@media screen and (max-width: 1023px) {
    .events-list_block__switcher {
        display: none;
    }

    .catalog {
        margin-bottom: 80px;
        padding: 30px 16px 0;
    }

    .catalog-content__section {
        position: relative;
    }

    .catalog__title-block {
        position: relative;
        margin-bottom: 0px;
    }

    .catalog__sections {
        position: absolute;
        top: -80px;
    }

    .catalog__sections-item {
        font-weight: 400;
        font-size: 16px;
        line-height: 145%;
        padding: 0 6px;
        color: #a8a9ad;

        opacity: 0.7;
    }

    .catalog__sections-item.catalog__sections-item_active {
        color: #041229;
        opacity: 1;
    }

    .section__items {
        margin-left: -1px;
    }

    .section__items-slider__next,
    .section__items-slider__prev {
        display: flex !important;
    }
    .catalog .events-list_block__switcher{
        display: none;
    }
}
/* End */


/* Start:/local/templates/.default/components/bitrix/catalog.item/.default/style.css?176645899511994*/
.section__item {
    z-index: 1;
    position: relative;
    display: flex;
    width: 100%;
    height: auto !important;
    box-sizing: border-box;
    background-color: #fff;

    transition: all 0.5s ease;
}
.js-add-to-cart.btn_in_basket {
    background-color: var(--mild-grey-color);
}
.swiper-wrapper .section__item {
    margin-top: 0;
    margin-bottom: 0;
}

.section__item-wrapper {
    display: flex;
}

.section__item:hover {
    z-index: 5;
    grid-template-columns: 1fr 1fr;
    box-shadow: 6px -7px 39px rgb(236 236 236 / 15%), -5px -7px 39px rgb(236 236 236 / 15%),
    5px 7px 39px rgb(236 236 236 / 15%);
}

.section__item:hover .section__item-list {
    z-index: 5;
    height: 100%;
    width: 100%;
}

.left-info:hover .section__item-list_item {
}

.section__item:hover .section__item-list_links {
    transform: translateY(100%);
}
.section__item .section__item-list_links {
    transform: translateY(0);
}
.section__item:last-child {
}

.section__item-list {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
}

.section__item-list_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    height: 33%;
    padding: 24px 24px 32px;
    background-color: #fff; 

    border-top: 1px solid rgba(168, 169, 173, 0.25);
    border-left: 1px solid rgba(168, 169, 173, 0.25);
    border-right: 1px solid rgba(168, 169, 173, 0.25);
    border-bottom: 1px solid rgba(168, 169, 173, 0.25);
}

.section__item-list_item-img {
    height: fit-content;
    margin-bottom: 24px;
}

.section__item-list_item-img img {
    width: 100%;
    height: auto;
}

.section__item-list_item .section__item-list_item-img_labels {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
    display: flex;
    gap: 5px;
    max-width: 100%;
    flex-wrap: wrap;
}

.section__item-list_item .section__item-list_item-img_labels .section__item-list_item-img_label {
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    border: 1px solid #ececec;
    background-color: #fff;
    color: var(--orange-color);
    padding: 6px 9px 6.5px 12px;
    top: unset;
    left: unset;
}

.section__item-list_item .section__item-list_item-img_labels .section__item-list_item-img_label.img-label__SPECIALOFFER,
.section__item-list_item .section__item-list_item-img_labels .section__item-list_item-img_label.img-label__stock {
    border: 1px solid var(--red-color);
    background-color: var(--red-color);
    color: #fff;
}

.section__item-list_item .section__item-list_item-img_labels .section__item-list_item-img_label.img-label__STOCK_SALE {
    border: 1px solid var(--green-color);
    color: var(--green-color);
}

.section__item-list_item .section__item-list_item-img_labels .section__item-list_item-img_label img {
    width: 100%;
}

.section__item:hover .section__item-list_item-img_buttons {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.section__item-list_item-img_buttons {
    position: absolute;
    flex-direction: column;
    top: 8px;
    right: 8px;
    opacity: 0;
    visibility: hidden;
    transition-property: all;
    transition: all ease 0.25s;
}

.section__item-list_item-img_button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    margin-right: 0;
    width: 32px;
    height: 32px;

    background: #ffffff;

    border: 1px solid #ececec;
    border-radius: 2px;
    cursor: pointer;
}

.section__item-list_item-img_button.product-favorite-add path {
    fill: var(--orange-color);
    stroke: var(--orange-color);
}

.section__item-list_item-img_button:hover path {
    stroke: var(--orange-color);
    transition: stroke 0.5s ease;
}

.product-compare {
    cursor: pointer;
}

.product-compare path {
    fill: none;
    stroke: var(--mild-grey-color);
    transition: stroke 0.5s ease;
}

.product-compare:hover path {
    stroke: var(--orange-color);
}

.product-compare-add path {
    fill: var(--orange-color);
    stroke: var(--orange-color);
}

.product-compare-add:hover path {
    stroke: var(--orange-color);
    transition: stroke 0.5s ease;
}

.product-favorite {
    cursor: pointer;
}

.product-favorite path {
    fill: none;
    stroke: var(--mild-grey-color);
    transition: stroke 0.5s ease;
}

.product-favorite:hover path {
    stroke: var(--orange-color);
}

.product-favorite-add path {
    fill: var(--orange-color);
    stroke: var(--orange-color);
}

.product-favorite-add:hover path {
    stroke: var(--orange-color);
    transition: stroke 0.5s ease;
}

.section__item-list_item-img a {
    border: none;
}

.section__item-list_item-article {
    margin-bottom: 24px;

    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    display: flex;
    flex-direction: row;
    gap: 5px;

    color: var(--mild-grey-color) !important;
}

.section__item-list_item-brand {
    margin-bottom: 8px;

    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.section__item-list_item-description {
    margin-bottom: 8px;

    font-weight: 400;
    font-size: 18px;
    line-height: 132%;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.section__item-list_item-description-text {
    border: none;
    max-width: 90%;
}

.section__item-list_item-description-text span {
    overflow-wrap: break-word;
}

.section__item-list_item-available {
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
}

.section__item-list_item-available .section__item-list_item-available-title {
    font-size: 13px;
    line-height: 145%;
    color: var(--mild-grey-color);
    font-weight: 400;
}

.section__item-list_item-available.available-green {
    color: var(--green-color);
}

.section__item-list_item-available.available-blue {
    color: var(--blue-color);
}

.section__item-list_item-available.available-orange {
    color: var(--orange-color);
}

.section__item-list_item-available.available-red {
    color: var(--red-color);
}

.section__item-list_item-price {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 16px;
}

.section__item-list_item-price__new {
    font-weight: 500;
    font-size: 24px;
    line-height: 132%;
}

.section__item-list_item-price__old {
    font-weight: 400;
    font-size: 16px;
    line-height: 132%;

    text-decoration-line: line-through;
}

.section__item-list_links {
    z-index: -1;
    position: absolute;
    bottom: 0;
    display: flex;
    width: 100%;
    margin: 0 auto 0;
    transition-property: all;
    transition: all ease 0.5s;
}

.section__item-list_cart {
    min-height: 60px;
}

.section__item-list_links .section__item-list_cart.form-exist {
    background-color: var(--mild-grey-color);
}

.section__item-list_click {
    min-height: 60px;
    background-color: #fff;
}

.section__item-info {
    overflow: hidden;
    position: absolute;
    width: 100%;
    margin: 0 0 1px -1px;
    height: calc(100% - 2px);
    border-top: 1px solid rgba(168, 169, 173, 0.25);
    border-bottom: 1px solid rgba(168, 169, 173, 0.25);
    background-color: #fff;
    transition-property: all;
    pointer-events: none;
    transition: all 0.5s ease;
}

.left-info .section__item-info {
    overflow: hidden;
    left: 0;
    margin: 0 0 1px 1px;
    border-left: 1px solid transparent;
}

.left-info:hover .section__item-info {
    margin: 0 0 1px 0;
    border-right: 1px solid rgba(168, 169, 173, 0.25);
    border-left: 1px solid rgba(168, 169, 173, 0.25);
    transform: translateX(-100%) !important;
}

.section__item:hover .section__item-info {
    width: 100%;
    display: inline-block;
    border-right: 1px solid rgba(168, 169, 173, 0.25);
    transform: translateX(100%);
    box-shadow: 6px -7px 39px rgb(236 236 236 / 25%), -5px -7px 39px rgb(236 236 236 / 25%),
    5px 7px 39px rgb(236 236 236 / 25%);
    margin-left: -1px;
}

.section__item-info_list {
    padding: 24px 3% 32px 4%;
}

.section__item-info_item {
    display: flex;
    justify-content: space-between;

    margin-bottom: 8px;
}

.section__item-info_item-title {
    width: 48%;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-align: left;
    color: #676767;
}

.section__item-info_item-description {
    width: 45%;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-align: left;
    color: #041229;
    overflow-wrap: break-word;
}

@media screen and (min-width: 1024px) {
    .section__item-list_item-img {
        padding-bottom: 100%;
        position: relative;
    }
    
    .section__item-list_item-img img {
        position: absolute;
        height: 100%;
        object-fit: contain;
    }
}
@media screen and (max-width: 1023px) {
    .section__item-list {
        width: 100%;
    }

    .section__item-list_item {
        padding: 16px 16px 30px;
    }
   
    .section__item .section__item-list_links {
        transform: none;
        z-index: 1;
        bottom: 1px;
        position: relative;
    }

    .section__item-list_item-img {
        margin-bottom: 8px;
    }

    .section__item-list_item-img_buttons {
        opacity: 1;
        visibility: visible;
    }

    .section__item-list_item-img_buttons {
        display: flex;
        flex-direction: row;
    }

    .section__item-list_item-img_button:first-child {
        margin-right: 8px;
    }

    .section__item-list_item-article {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .section__item-list_item-brand {
        margin-bottom: 8px;

        font-weight: 700;
        font-size: 14px;
        line-height: 12px;
    }

    .section__item-list_item-description {
        margin-bottom: 8px;

        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
    }

    .section__item-list_item-available {
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
    }

    .section__item-list_item-price {
        margin-top: 20px;
        align-items: flex-start;
    }

    .section__items-slider__next {
        top: 30% !important;
        width: 45px !important;
        height: 45px !important;
        right: 5px !important;
        border-radius: 50%;
        transform: rotate(-180deg);
        background: rgba(255, 255, 255, 0.65);
        box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.08);
    }

    .section__items-slider__prev {
        top: 30% !important;
        width: 45px !important;
        height: 45px !important;
        left: 5px !important;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.65);
        box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.08);
    }
    .section__item:hover .section__item-info {
        display: none;
    }
    .section__item-info {
        display: none;
    }
    .swiper-slide.section__item {
        margin-bottom: 0;
    }
    .section__item:hover .section__item-list_links{
        transform: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .swiper-slide.section__item {
        width: 48%;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .section__item {
        margin-bottom: 61px;
        transition: all 0.5s ease;
    }
    .section__item .section__item-list_links {
        transform: translateY(100%);
    }
}

.price-help-round {
    color: #f27435;
    font-size: 22px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: block;
    border: 1px solid #009fc2;
    text-align: center;
    text-transform: lowercase !important;
    cursor: pointer;
}
.price-help-img {
    position: absolute;
    top: -40px;
    left: 50%;
    margin-left: -50px;
}
.price-help-title {
    text-align: center;
    font-size: 36px;
    margin: 0 0 30px;
    font-weight: 500;
    line-height: 1.2;
}
.price-help-message {
    text-align: center;
    margin-bottom: 20px;
    color: #7a7a7a;
    line-height: 1.5;
}
/* End */


/* Start:/local/templates/helicon-shop/components/bitrix/main.userconsent.request/sender.subscribe.news/user_consent.css?16987284044322*/
.main-user-consent-request a {
	cursor: pointer;
}

.main-user-consent-request-popup {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,0.5);
	overflow: hidden;
	z-index: 9000;
}

.main-user-consent-request-popup-cont {
	min-height: 290px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0 auto;
	padding: 20px;
	min-width: 320px;
	width: 100%;
	max-width: 600px;
	background: #fff;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-y: auto;
}

.main-user-consent-request-popup-header {
	margin: 0 0 10px 0;
	font: normal 18px "Helvetica Neue", Arial, Helvetica, sans-serif;
	color: #000;
	text-align: left;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	max-width: 260px;
}

.main-user-consent-request-popup-textarea-block {
	margin: 0 0 20px 0;
}

.main-user-consent-request-popup-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.main-user-consent-request-popup-button {
	display: inline-block;
	height: 39px;
	margin: 0 10px 5px 0;
	padding: 0 18px;
	border: none;
	border-radius: 2px;
	font: normal 12px/39px "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #535c69;
	outline: none;
	vertical-align: middle;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: none;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: background-color 0.2s linear, color 0.2s linear;
	transition: background-color 0.2s linear, color 0.2s linear;
	cursor: pointer;
}

.main-user-consent-request-popup-button-acc {
	background: #bbed21;
}

.main-user-consent-request-popup-button-acc:hover {
	background: #d2f95f;
}

.main-user-consent-request-popup-button-rej {
	-webkit-box-shadow: inset 0 0 0 1px #a1a6ac;
	box-shadow: inset 0 0 0 1px #a1a6ac;
	background: none;
}

.main-user-consent-request-popup-button-rej:hover {
	background: #cfd4d8;
}

.main-user-consent-request-popup-text {
	border: 1px solid #999;
	overflow: auto;
	padding: 8px;
	text-align: left;
	color: rgb(84, 84, 84);
}

.main-user-consent-request-popup-link {
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.main-user-consent-request-popup-link a {
	display: block;
	margin: 20px 0 0 0;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 260px;
}

/** LOADER **/
.main-user-consent-request-loader {
	position: relative;
	height: 100px;
	width: 100px;
	margin: 0 auto;
	-webkit-transform: translate(0, 50%);
	transform: translate(0, 50%);
}

.main-user-consent-request-path {
	stroke: #80868e;
	stroke-dasharray: 100, 200;
}

.main-user-consent-request-loader:before {
	content: '';
	display: block;
	padding-top: 100%;
}

.main-user-consent-request-circular {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: inherit;
	width: inherit;
	-webkit-animation: rotate 1s linear infinite;
	animation: rotate 1s linear infinite;
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

.main-user-consent-request-path {
	stroke: #ccc;
	stroke-dasharray: 60, 200;
	stroke-dashoffset: 0;
	-webkit-animation: dash 1.5s ease-in-out infinite;
	animation: dash 1.5s ease-in-out infinite;
	stroke-linecap: round;
}

.main-user-consent-request-announce{
	color: #333;
	font-size:13px;
	line-height: 15px;
}
.main-user-consent-request-announce-link{
	cursor: pointer;
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@media (min-width: 1000px) {

	.main-user-consent-request-popup-cont {
		min-height: 400px;
		min-width: 640px;
	}

	.main-user-consent-request-popup-header {
		max-width: 590px;
	}

	.main-user-consent-request-popup-text,
	.main-user-consent-request-popup-link {
		height: 240px;
	}
	.main-user-consent-request-popup-link a {
		max-width: 200px;
	}
}

@media (max-width: 768px) {
	.main-user-consent-request-popup-cont {
		height: 100%;
	}
}
/* End */


/* Start:/local/templates/helicon-shop/components/bitrix/system.pagenavigation/page_pagination/style.css?17115985362317*/
.pagination.pagination-hide {
    display: none;
}

.pagination__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pagination__items {
    display: flex;
    align-items: center;
}

.pagination__pages {
    display: flex;
}

.pagination__pages-visible {
    display: flex;
    justify-content: space-between;
}

.pagination__page {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-left: 0;
    padding: 0 7px;
    width: fit-content;
    min-width: 50px;
    height: 50px;
    border: 1px solid #fff;
    background-color: #fff;
    color: #041229;
    border-radius: 27px;
    transition: all 0.35s ease;
}

.pagination__page:hover {
    border: 1px solid var(--orange-color);
}

.pagination__page span {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;

    text-align: center;
}

.pagination__page-current {
    background-color: var(--orange-color);
    color: #fff;
    border: 1px solid var(--orange-color);
}

.pagination__pages-divide {
}
.pagination__page-divide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 50px;
}
.pagination__page-divide span {
    font-weight: 600;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pagination__pages-last {
}

.pagination__button {
    margin-bottom: 15px;
    width: fit-content;
}

.pagination__button-toggle {
    padding: 10px 0 0 0;
    cursor: pointer;
}

.pagination__button-toggle path {
    transition: stroke 0.5s ease;
}

.pagination__button-toggle:hover path {
    stroke: var(--orange-color);
    transition: stroke 0.5s eas;
}

@media screen and (max-width: 1023px) {
    .pagination__wrapper .pagination__button {
        width: 100%;
        max-width: 343px;
        margin: 0 auto;
    }
	.pagination__page {
		min-width: 40px;
		height: 40px;
	}
	.pagination__page span {
		font-size: 14px;
	}
	.pagination__pages {
		display: flex;
		align-items: center;
	}
	.pagination__pages-visible {
		display: flex;
		align-items: center;
	}
	.pagination__items .pagination__pages {
	}
	.pagination__button-toggle {
		padding: 5px 0 0 0;
	}
	.pagination__button-toggle svg {
		width: 60px;
		height: 80px;
	}
}
/* End */


/* Start:/local/templates/helicon-shop/components/bitrix/news.list/question/style.css?17115985361429*/
.questions {
	padding: 0;
	margin-bottom: 0;
	min-height: 320px;
	overflow: hidden;
	background-image: url("/local/templates/helicon-shop/components/bitrix/news.list/question/images/questions-background.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.questions__content {
	display: flex;
	flex-direction: column;
}

.questions__wrapper {
	width: 37%;
	padding: 49px 0;
}
.questions__title {
	font-weight: 500;
	font-size: 36px;
	line-height: 118.5%;
	margin-bottom: 16px;
}
.questions__subtitle {
	font-weight: 400;
	font-size: 16px;
	line-height: 145%;

	margin-bottom: 24px;
}
.questions__button {
	width: fit-content;
	margin: 0;
}
@media screen and (max-width: 1023px) {
	.questions {
		padding: 33px 0 100px;
		margin-bottom: 60px;
		min-height: 150px;
		overflow: hidden;
		background-image: url("/local/templates/helicon-shop/components/bitrix/news.list/question/images/question-mob.png");
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.questions__wrapper {
		width: 100%;
		padding: 0;
	}
	.questions__title {
		font-weight: 500;
		font-size: 20px;
		line-height: 110%;
		letter-spacing: -0.03em;
		margin-bottom: 16px;
		text-align: center;
	}
	.questions__subtitle {
		margin-bottom: 24px;
	
		font-weight: 400;
		font-size: 14px;
		line-height: 140%;
		text-align: center;
	}

	.questions__button.button {
		width: 100%;
		max-width: 343px;
		margin: 0 auto;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.questions {
		min-height: 150px;
	}
}
/* End */
/* /local/templates/helicon-shop/components/bitrix/news/actions/bitrix/news.detail/.default/style.css?171349708012443 */
/* /local/templates/.default/components/bitrix/catalog.section/carousel/style.css?17664589953062 */
/* /local/templates/.default/components/bitrix/catalog.item/.default/style.css?176645899511994 */
/* /local/templates/helicon-shop/components/bitrix/main.userconsent.request/sender.subscribe.news/user_consent.css?16987284044322 */
/* /local/templates/helicon-shop/components/bitrix/system.pagenavigation/page_pagination/style.css?17115985362317 */
/* /local/templates/helicon-shop/components/bitrix/news.list/question/style.css?17115985361429 */
