

/* Start:/local/components/itaces/iblockelement.detail/templates/.default/style.css?17792779217865*/
body.article-noscroll {
    @media screen and (max-width: 1024px) {
        overflow: hidden;
    }
}

.ia-article {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1440px;
    display: grid;
    width: 100%;
    gap: 7.5%;
    grid-template-columns: minmax(0, 4.2fr) minmax(0, 1fr);
    font-size: 16px;

    & .text-content {
        margin-bottom: 98px;
    }

    @media screen and (max-width: 1360px) {
        gap: 5%;
        grid-template-columns: minmax(0, 3.5fr) minmax(0, 1fr);
    }

    @media screen and (max-width: 1024px) {
        padding: 0 20px;
        display: block;

        & .text-content {
            margin-bottom: 80px;
        }
    }
}

.ia-article__info {
    max-width: 1015px;
}

.ia-article__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 26px;
    font-style: normal;

    @media screen and (max-width: 1024px) {
        margin-bottom: 12px;
        font-size: 30px;
    }
}

.ia-article__base {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;

    @media screen and (max-width: 1024px) {
        margin-bottom: 14px;
    }
}

.ia-article__base-item {
    position: relative;

    &:not(:last-child) {
        &::after {
            content: '';
            margin: 0 5px -2px 3px;
            display: inline-block;
            height: 15px;
            width: 1px;
            background: var(--color-dark-grey);
        }
    }

    &.is-section {
        color: var(--color-accent);
    }
}

.ia-article__contents {
    padding-bottom: 98px;

    @media screen and (max-width: 1024px) {
        padding-bottom: 0;
    }
}

.ia-other {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1440px;
    width: 100%;

    @media screen and (max-width: 1024px) {
        padding: 0 20px;
    }
}

.ia-other__head {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;

    @media screen and (max-width: 640px) {
        margin-bottom: 20px;
    }
}

.ia-other__title {
    line-height: 1.2;
    font-size: 40px;

    @media screen and (max-width: 1024px) {
        font-size: 30px;
    }
}

.ia-other__btn {
    min-height: 48px;
    text-transform: unset !important;
    min-width: 158px;

    @media screen and (max-width: 1024px) {
        min-height: 42px;
        min-width: 120px;
        padding: 13px 20px !important;
    }
}

.ia-other__items {
    margin-bottom: 98px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;

    @media screen and (max-width: 1024px) {
        grid-template-columns: 1fr 1fr 1fr;

        & .ia-item:nth-child(n+4) {
            display: none;
        }
    }

    @media screen and (max-width: 780px) {
        grid-template-columns: 1fr 1fr;

        & .ia-item:nth-child(n+3) {
            display: none;
        }
    }

    @media screen and (max-width: 500px) {
        display: flex;
        flex-direction: column;
    }
}


.ia-contents {
    position: sticky;
    top: 170px;
    display: flex;
    flex-direction: column;
    gap: 24px;

    @media screen and (max-width: 1024px) {
        position: fixed;
        bottom: 64px;
        left: 0;
        top: auto;
        width: 100%;
        max-height: calc(100vh - 100px);
        overflow: auto;
        padding: 17px 20px;
        background-color: var(--color-default);
        height: fit-content;
        z-index: 1051;
        box-shadow: 0px -4px 15px 0px #00000017;
        flex-direction: row;
        flex-wrap: wrap;
        row-gap: 0;
        column-gap: 20px;

        &.is-active {

            & .ia-contents__nav {
                max-height: fit-content;
            }

            & .ia-contents__title {
                svg {
                    transform: rotate(-90deg);
                }
            }

            &+.ia-contents__bg {
                opacity: 1;
                pointer-events: visible;
            }
        }
    }
}

.ia-contents__bg {
    position: fixed;
    top: 0;
    bottom: 64px;
    left: 0;
    right: 0;
    background: rgba(23, 23, 23, 0.8);
    opacity: 0;
    pointer-events: none;
    z-index: 1050;
    transition: var(--transition-default);

}

.ia-contents__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 10px;

    & svg {
        transition: var(--transition-default);
        width: 24px;
        height: 24px;
        transform: rotate(90deg);
        display: none;
    }

    @media screen and (max-width: 1024px) {
        flex-grow: 1;
        cursor: pointer;
        font-size: 16px;

        & svg {
            display: block;
        }
    }
}

.ia-contents__list {
    display: flex;
    flex-direction: column;
    gap: 20px;

    @media screen and (max-width: 1024px) {
        margin-top: 20px;
    }
}

.ia-contents__nav {
    color: var(--color-secondary);
    line-height: 1.2;
    transition: var(--transition-default);

    @media screen and (max-width: 1024px) {
        width: 100%;
        order: 1;
        overflow: hidden;
        max-height: 0;
    }
}

.ia-contents__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;

    &.is-active:not(.is-close) {
        & .ia-contents__sublist {
            display: flex;
        }

        & .ia-contents__progress {
            display: block;
        }

        & .ia-contents__toggle {
            & svg {
                transform: rotate(-90deg);
            }
        }
    }

}

.ia-contents__toggle {
    cursor: pointer;
    position: absolute;
    right: -4px;
    top: -3px;
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;

    & svg {
        width: 18px;
        height: 18px;
        pointer-events: none;
        transition: var(--transition-default);
        transform: rotate(90deg);
        fill: var(--color-secondary);
    }

    @media screen and (hover: hover) {
        &:hover {
            & svg {
                fill: var(--color-accent-light);
            }
        }
    }
}

.ia-contents__sublist {
    flex-direction: column;
    gap: 10px;
    display: none;
}

.ia-contents__link {

    & span {
        margin-right: 5px;
    }

    &.is-active {
        color: var(--color-primary);
    }

    @media screen and (hover: hover) {
        &:hover {
            color: var(--color-accent-light);
        }
    }
}

.ia-contents__progress {
    display: none;
    position: relative;
    width: 100%;
    height: 2px;
    background-color: var(--color-surface-grey);
}

.ia-contents__trackbar {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 100%;
    height: 2px;
    background-color: var(--color-accent-light);
}

.ia-share {
    display: flex;
    gap: 20px;

    @media screen and (max-width: 1024px) {
        gap: 15px;
    }

    @media screen and (max-width: 370px) {
        gap: 10px;
    }
}

.ia-share__btn {
    appearance: none;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-sticker);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-secondary);
    transition: var(--transition-default);

    & svg {
        fill: var(--color-default);
    }

    @media screen and (hover: hover) {
        &:hover {
            background-color: var(--color-accent-light);
        }
    }
}
/* End */


/* Start:/local/templates/new_main/components/sprint.editor/blocks/ia_custom/_style.css?17786726018942*/
/* Общие стили для блоков */
.sp-block-table {
    width: 100%;
    overflow: auto;
    max-height: 322px;
}

.sp-block-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}


.sp-block-table table tr:nth-child(1) {
    background: var(--color-surface-light);
    font-weight: 700;
}


.sp-block-table table td {
    text-align: left;
    border: 1px solid var(--color-grey);
    padding: 12px;
    min-width: 167px;

    @media screen and (max-width: 1024px) {
        min-width: 112px;
    }
}


.sp-block-table p {
    margin: 0;
}

.sp-image {
    display: flex;
    overflow: hidden;
    width: 100%;
    align-items: center;
    justify-content: center;

    &:not(.sp-real-size) {
        /* aspect-ratio: 2.25 / 1; */
        border-radius: var(--border-radius-max);

        & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    &.sp-real-size {
        max-height: unset;
    }

    @media screen and (max-width: 1024px) {
        &:not(.sp-real-size) {
            border-radius: var(--border-radius-image);
        }
    }
}

.sp-video iframe,
.sp-video-gallery iframe {
    border-width: 0;
}

.sp-iblock-sections {
    padding: 10px;
    border: 1px solid #c3c3c3;
    margin: 10px 0;
}

.sp-iblock-elements {
    padding: 10px;
    border: 1px solid #c3c3c3;
    margin: 10px 0;
}

.sp-medialib-elements {
    padding: 10px;
    border: 1px solid #c3c3c3;
    margin: 10px 0;
}

.sp-properties {
    width: 400px;
    border-collapse: collapse;
}

.sp-properties_title {
    border: 1px solid #ccc;
    padding: 0 5px;
    font-weight: bold;
}

.sp-properties_text {
    border: 1px solid #ccc;
    padding: 0 5px;
}

.sp-gallery-items {
    overflow: hidden;
}

.sp-gallery-item {
    float: left;
    height: 220px;
    padding: 5px;
    /*width: 20%;*/
}

.sp-gallery-item-img-wrapper {
    float: left;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: block;
    color: inherit;
}

.sp-gallery-item img {
    display: block;
    max-width: 100%;
    left: 50%;
    max-height: 100%;
    max-width: none;
    position: relative;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    -moz-transform: translate(-50%, -50%) translateZ(0);
    -o-transform: translate(-50%, -50%) translateZ(0);
    -ms-transform: translate(-50%, -50%) translateZ(0);
    transform: translate(-50%, -50%) translateZ(0);
}

.sp-gallery-item-text {
    background-color: rgba(255, 255, 255, .7);
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    width: 100%;
}

.sp-gallery-item-text:hover {
    opacity: 1;
}

.sp-gallery-item-text::after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.sp-gallery-item-text-content {
    display: inline-block;
    vertical-align: middle;
    width: 90%;
}

.sp-button_link,
.sp-button_link:link,
.sp-button_link:visited {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: var(--border-radius-default);
    text-decoration: none;
    background: #ccc;
    color: #333;
}

.sp-button_link:hover {
    text-decoration: none;
    background: #333;
    color: #ccc;
}

/*accordion*/
.sp-accordion {
    border: 1px solid #ccc;
    border-radius: 5px;
}

.sp-accordion-title {
    border-top: 1px solid #ccc;
    color: #444;
    cursor: pointer;
    padding: 10px;
    text-align: left;
}

.sp-accordion-title:first-child {
    border-top: none;
}

.sp-accordion-container {
    padding: 0 10px 10px;
    display: none;
    overflow: hidden;
}

.sp-accordion-title:after {
    content: '\02795';
    font-size: 12px;
    color: #777;
    float: right;
    margin: 2px 5px;
}

.sp-accordion-title__active:after {
    content: "\2796";
}

.sp-complex-table {
    display: table;
    table-layout: fixed;
    border-spacing: 10px;
}

.sp-complex-row {
    display: table-row;
}

.sp-complex-col {
    display: table-cell;
    vertical-align: top;
}

.sp-caption {
    margin-top: 20px;
    font-style: italic;
    color: var(--color-secondary);
}

.sp-complex {
    margin-bottom: 98px;
    font-size: 16px;
    line-height: 1.4;

    /* & p {
        margin-bottom: 0;
    } */

    & h2 {
        margin: 16px 0;
        font-weight: 700;
        font-size: 30px;
        line-height: 1.2;
    }

    & h3 {
        margin: 12px 0;
        font-weight: 700;
        font-size: 20px;
        line-height: 1.2;
    }

    & h4 {
        margin: 10px 0;
        font-weight: 700;
        font-size: 18px;
        line-height: 1.2;
    }

    & h5 {
        margin: 8px 0;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.2;
    }

    & a {
        border-bottom: 1px solid var(--color-accent-light);

        &:active,
        &:focus {
            color: var(--color-accent-light);
        }
    }

    & .ia-slider {
        position: relative;
        margin: 0 44px;

        & .swiper-slide {
            height: auto;
        }

        & .ia-card {
            height: 100%;
        }

        & .swiper-arrow-prev {
            left: -83px;
        }

        & .swiper-arrow-next {
            right: -78px;
        }

        & a {
            border-bottom: none;
        }
    }

    & ul {
        margin-bottom: 20px;
        list-style: disc;
        padding-left: 26px;
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    & ol {
        margin-bottom: 20px;
        list-style: decimal;
        padding-left: 22px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }


    @media screen and (max-width: 1024px) {
        font-size: 14px;
        margin-bottom: 80px;

        & h2 {
            margin: 8px 0;
            font-size: 20px;
        }

        & h3 {
            margin: 6px 0;
            font-size: 16px;
        }

        & h4 {
            margin: 4px 0;
            font-size: 14px;
        }

        & h5 {
            margin: 4px 0;
            font-size: 14px;
        }

        & ul {
            gap: 14px;
        }

        & ol {
            gap: 14px;
        }

        & .ia-slider {

            & .swiper-arrow-prev {
                left: -73px;
            }

            & .swiper-arrow-next {
                right: -68px;
            }

        }

    }

    @media screen and (max-width: 780px) {

        & .container {
            padding: 0;
            width: calc(100% + 40px);
            margin: 0 -20px;
        }

        & .ia-slider {
            margin: 0;
            overflow: hidden;

            & .swiper {
                width: 114%;
                padding-left: 20px;
            }
        }

        & .ia-card .catalog-card__image-box {
            padding-top: 121.3%;
        }
    }
}

.sp-text:not(:last-child) {
    margin-bottom: 40px;

    @media screen and (max-width: 1024px) {
        margin-bottom: 20px;
    }
}

h2.sp-title {
    margin: 16px 0;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
}

h3.sp-title {
    margin: 12px 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
}

h4.sp-title {
    margin: 10px 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
}

h5.sp-title {
    margin: 8px 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

@media screen and (max-width: 1024px) {

    h2.sp-title {
        margin: 8px 0;
        font-size: 20px;
    }

    h3.sp-title {
        margin: 6px 0;
        font-size: 16px;
    }

    h4.sp-title {
        margin: 4px 0;
        font-size: 14px;
    }

    h5.sp-title {
        margin: 4px 0;
        font-size: 14px;
    }
}

.sp-my_banner {
    padding: 32px;
    overflow: hidden;
    border-radius: var(--border-radius-default);
    background: var(--bg-desktop);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    & .sp-title {
        margin-top: 0;
    }

    & .sp-text {
        margin-bottom: 0;
        font-size: 20px;
        line-height: 1.4;
    }

    .sp-my_banner__btn {
        margin-top: 30px;
        width: 100%;
        height: 48px;
        font-size: 16px;
        border-bottom: none;
    }

    @media (max-width: 640px) {
        padding: 20px 20px 186px;
        background: var(--bg-mobile);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;

        & .sp-title{
            margin-bottom: 12px;
        }

        & .sp-my_banner__btn {
            max-width: 283px;
        }
    }
}

.sp-my_banner__info {
    width: 60%;

    @media (max-width: 640px) {
        width: 100%;
    }
}
/* End */
/* /local/components/itaces/iblockelement.detail/templates/.default/style.css?17792779217865 */
/* /local/templates/new_main/components/sprint.editor/blocks/ia_custom/_style.css?17786726018942 */
