

/* 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 */
/* /local/components/itaces/iblockelement.detail/templates/.default/style.css?17792779217865 */
