

/* Start:/bitrix/templates/adhesol/css/navbar.css?177122409312364*/
.header-container {
    max-width: 1366px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 1366px) {
    .header-container {
        margin-right: 30px;
        margin-left: 30px;
    }
}

@media (max-width: 576px) {
    .header-container {
        margin-right: 16px;
        margin-left: 16px;
    }
}

.header-navbar {
    background-color: var(--color-white);
    border: 1px solid var(--color-EDEEEF);
    margin-bottom: 40px;
}

.header-navbar.with-shadow {
    box-shadow: 0 4px 14px rgba(31, 41, 55, .149);
}

@media (max-width: 1366px) {
    .header-navbar {
        margin-bottom: 30px;
    }
}

/*header-navbar__top*/
.header-navbar__top {
    background-color: var(--color-0074BC);

    &.is-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        box-shadow: 0 4px 14px rgba(31, 41, 55, .149);
    }

    &.is-fixed .header-navbar__top-content {
        margin-bottom: 0; /* у тебя сейчас margin-bottom:20px; при фиксе обычно лишний */
    }
}

.header-navbar__top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
}

.header-navbar__top-items {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.header-navbar__top-items:hover .header-navbar__top-item:last-child {
    cursor: pointer;
}

.header-navbar__top-items:last-child .header-navbar__top-item:last-child:before {
    content: "";
    width: 1px;
    height: 14px;
    background-color: var(--color-white);
    margin-left: 10px;
    margin-right: 20px;
}

.header-navbar__top-items:last-child .header-navbar__top-item:first-child span {
    white-space: nowrap;
}


.header-navbar__top-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-navbar__top-item:nth-child(2) a {
    z-index: -1;
}

.header-navbar__top-item svg {
    width: 17px;
    height: 16px;
    flex-shrink: 0;
    fill: var(--color-white);
    stroke: var(--color-white);
}

.header-navbar__top-item a {
    color: var(--color-white);
}

.header-navbar__top-item span {
    color: var(--color-white);
}

.header-navbar__top-item:nth-child(2) svg {
    width: 19px;
    height: 14px;
}

.header-navbar__top-item:nth-child(2) .header-navbar__top-link {
    z-index: -1;
}

.header-navbar__top-item:hover span {
    color: var(--color-EFF4F9);
}


/*.header-navbar__top*/
/*header-navbar__middle*/
.header-navbar__middle {
    display: flex;
    gap: 34px;
    margin-bottom: 20px;
}

.header-navbar__logo {
    display: flex;
    align-items: center;
    gap: 34px;
    position: relative;
}

.header-navbar__logo-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.header-navbar__logo svg {
    width: 146px;
    height: 34px;
    flex-shrink: 0;
}

.header-navbar__logo span {
    color: var(--color-3F4B69);
    font-size: 12px;
    width: 250px;
}

.header-navbar__search {
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    background-color: var(--color-EFF4F9);
    border-radius: 10px;
    flex: 1;
    position: relative;
    min-width: 35%;
}

.header-navbar__search svg {
    width: 16px;
    height: 16px;
    fill: var(--color-3F4B69);
    stroke: var(--color-3F4B69);
    position: absolute;
    right: 20px;
    top: 30%;
    bottom: 0;
    cursor: pointer;
    transition: .3s;

    &:hover {
        fill: var(--color-028EE4);
        stroke: var(--color-028EE4);
    }
}

.header-navbar__search input {
    background-color: var(--color-EFF4F9);
    border: none;
    color: var(--color-3F4B69);
    font-size: 12px;
    width: 100%;
    margin-right: 20px;
}

.header-navbar__favorite {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--color-EFF4F9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.header-navbar__favorite svg {
    width: 17px;
    height: 14px;
    flex-shrink: 0;
    fill: var(--color-white);
    stroke: var(--color-0074BC);
}

.header-navbar__favorite:hover svg {
    fill: var(--color-0074BC);
}

.header-navbar__lc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 15px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    width: 180px;
    background-color: var(--color-EFF4F9);
}

.header-navbar__lc-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.header-navbar__lc span {
    color: var(--color-3F4B69);
}

.header-navbar__lc svg {
    width: 21px;
    height: 21px;
    fill: var(--color-EFF4F9);
    stroke: var(--color-3F4B69);
    transition: .3s;
}

.header-navbar__lc:hover svg {
    fill: var(--color-3F4B69);
}

.burger-menu {
    align-items: center;
    display: none;
}

.burger-menu__button {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger-menu__button span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-0074BC);
    transition: all 0.3s ease;
}

.burger-menu__button.active span {
    background-color: var(--color-white);
}

.menu-overlay {
    display: none;
}

/*.header-navbar__middle*/
/*header-navbar__bottom*/
.header-navbar__bottom, .header-navbar__bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    width: 100%;
}


.header-navbar__bottom-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex: 1;
}

.header-navbar__bottom-item {
    position: relative;
    padding-bottom: 20px;

    @media (max-width: 992px) {
        padding-bottom: 0;
    }
}

.header-navbar__bottom-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    gap: 4px;
}

.header-navbar__bottom-item span {
    white-space: nowrap;
    color: var(--color-3F4B69);
    font-size: 14px;
}

.header-navbar__bottom-item:hover span {
    color: var(--color-0074BC);
}


.header-navbar__bottom-item svg {
    width: 12px;
    height: 7px;
    flex-shrink: 0;
    stroke: var(--color-3F4B69);
    transition: transform 0.3s;
}

.header-navbar__bottom-item:hover svg {
    stroke: var(--color-0074BC);
    transform: rotate(180deg);
}


.submenu {
    position: absolute;
    top: 80%;
    left: 0;
    background-color: var(--color-white);
    min-width: 215px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 14px 0 rgba(31, 41, 55, .149);
    border-radius: 10px;
    overflow-x: hidden;
    z-index: 2;
}

.submenu .submenu-item a {
    white-space: nowrap;
}

.submenu .submenu-item:first-child a {
    padding-top: 20px;
}

.submenu .submenu-item:last-child a {
    padding-bottom: 20px;
}

.header-navbar__bottom-item:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.submenu-item a {
    padding: 12px 20px;
    border-bottom: 1px solid #f3f4f6;
    display: block;
    color: var(--color-3F4B69);
    text-decoration: none;
    transition: background-color 0.3s;
    font-weight: 500;
}

.submenu-item a:hover {
    color: var(--color-0074BC);
}

.submenu-item:last-child a {
    border-bottom: none;
}

.header-navbar__social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.header-navbar__social-item {
    position: relative;
}

.header-navbar__social-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.tg svg {
    width: 19px;
    height: 16px;
    flex-shrink: 0;
    fill: var(--color-40B3E0);
    transition: transform 0.3s ease;
}

.wt svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: var(--color-25D366);
    transition: transform 0.3s ease;
}

.vk svg {
    width: 22px;
    height: 12px;
    flex-shrink: 0;
    fill: var(--color-4B9BE4);
    transition: transform 0.3s ease;
}

.header-navbar__social-item:hover svg {
    transform: scale(1.2);
}


/*.header-navbar__bottom*/


@media (max-width: 990px) {
    .header-navbar__middle {
        gap: 15px;
    }

    .header-navbar__favorite {
        display: none;
    }

    .header-navbar__logo {
        gap: 15px;
    }

    .header-navbar__logo span {
        display: none;
    }

    .header-navbar__bottom-item svg {
        display: none;
    }

    .burger-menu {
        display: flex;
        z-index: 100;
    }

    /* Оверлей для затемнения фона */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 6, 14, .6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 98;
        display: block;
    }

    /* Оверлей при открытом меню */
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .header-navbar__bottom-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100vh;
        background-color: var(--color-white);
        transition: left 0.3s ease;
        z-index: 99;
        box-shadow: 2px 0 5px rgba(0, 6, 14, .6);
        justify-content: flex-start;
    }

    .header-navbar__bottom-items {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
        width: 100%;
        justify-content: flex-start !important;
        flex: 0;
        gap: 0;
    }

    .header-navbar__bottom-item {
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
    }

    .header-navbar__bottom-link {
        padding: 16px;
    }

    .submenu {
        display: none;
    }


    /* Класс для открытого состояния меню */
    .header-navbar__bottom-container.active {
        left: 0;
        flex-direction: column;
        gap: 0;
    }

    /* Анимация бургера при открытии */
    .burger-menu__button.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 7px);
    }

    .burger-menu__button.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu__button.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -8px);
    }

    .header-navbar__social {
        justify-content: unset;
        width: 100%;
        padding-left: 10px;
    }

    .header-navbar__bottom-item:nth-child(3) {
        display: block;
    }

    .header-navbar__bottom, .header-navbar__bottom-container {
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .header-navbar__top-items {
        gap: 16px;
        padding: 12px 0;
    }

    .header-navbar__top-items:first-child .header-navbar__top-item:first-child {
        display: none;
    }

    .header-navbar__top-item span {
        font-size: 12px;
    }

    .header-navbar__top-items:last-child a::after {
        margin-left: 10px;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .header-navbar__top-items:last-child .header-navbar__top-item:last-child {
        display: none;
    }

    .header-navbar__middle {
        flex-wrap: wrap;
    }

    .header-navbar__logo svg {
        width: 102px;
        height: 24px;
    }

    .header-navbar__search {
        min-width: 100%;
        height: 30px;
        border-radius: 4px;
        order: 5;
    }

    .header-navbar__search svg {
        top: 22%;
    }

    .header-navbar__lc {
        margin-left: auto;
        border: none;
        width: auto;
        background-color: unset;
    }

    .header-navbar__lc span {
        font-size: 12px;
    }

    .header-navbar__bottom {
        margin-bottom: 5px;
    }

    .header-navbar__bottom-container {
        width: 80%;
        max-width: 320px;
    }
}

.body-lock {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* опционально: чтобы на iOS не было жестов */
.body-lock {
    touch-action: none !important;
}


/* End */


/* Start:/bitrix/templates/adhesol/css/custom.css?178008174824178*/
html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

body {
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Manrope", sans-serif;
    line-height: normal;
    font-style: normal;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 14px;
}

html, body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 0 !important;
}


#element::-webkit-scrollbar {
    width: 10px;
}

#element::-webkit-scrollbar-track {
    -webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.2) inset;
    background-color: #f9f9fd;
}

#element::-webkit-scrollbar-thumb {
    background-color: #f2bf93;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .25) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, .25) 50%,
    rgba(255, 255, 255, .25) 75%,
    transparent 75%,
    transparent);
}

:root {
    --fz-8: 0.5rem;
    --fz-10: 0.625rem;
    --fz-12: 0.75rem;
    --fz-14: 0.875rem;
    --fz-16: 1rem;
    --fz-18: 1.125rem;
    --fz-20: 1.25rem;
    --fz-24: 1.5rem;
    --fz-28: 1.75rem;
    --fz-32: 2rem;
    --fz-36: 2.25rem;
    --fz-42: 2.625rem;
    --radius-xs: 4px;
    --radius-x: 8px;
    --radius-m: 12px;
    --radius-l: 16px;
    --radius-xl: 24px;
    --radius-lg: 32px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

p {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

*::before,
*::after {
    box-sizing: border-box;
}

ul, ol {
    list-style: none;
    padding-left: 0;
    margin: 0;

    li {
        margin: 0;
        padding: 0;
    }
}

button {
    border: none;
}

/**/
input {
    outline: none;
}


aside {
    display: block;
    unicode-bidi: isolate;
}



:root {
    --color-white: #ffffff;
    --color-EFF4F9: #EFF4F9;
    --color-EDEEEF: #EDEEEF;
    --color-C9CACC: #C9CACC;
    --color-F5F5F5: #F5F5F5;
    --color-A7A9AB: #A7A9AB;
    --color-A6A8B9: #A6A8B9;
    --color-8D8FA1: #8D8FA1;
    --color-3F4B69: #3F4B69;
    --color-003A5F: #003A5F;
    --color-0074BC: #0074BC;
    --color-1081E9: #1081E9;
    --color-0096F3: #0096F3;
    --color-4B9BE4: #4B9BE4;
    --color-028EE4: #028EE4;
    --color-40B3E0: #40B3E0;
    --color-A4BCE4: #A4BCE4;
    --color-ED1C24: #ED1C24;
    --color-25D366: #25D366;
    --color-red: #F32121;
    --color-blue: #0074BC;
}

.ad-h1 {
    font-size: 48px;
    font-weight: 700;

    @media (max-width: 576px) {
        font-size: 20px;
    }
}

.ad-h2 {
    font-size: 32px;
    font-weight: 700;

    @media (max-width: 576px) {
        font-size: 20px;
    }
}

.ad-h3 {
    font-size: 20px;
    line-height: 30px; /* 150% */
    font-weight: 700;

    @media (max-width: 576px) {
        font-size: 18px;
        line-height: 21px;
    }
}

.mb_80 {
    margin-bottom: 80px;

    @media (max-width: 576px) {
        margin-bottom: 50px;
    }
}

.mb_30 {
    margin-bottom: 30px;

    @media (max-width: 576px) {
        margin-bottom: 20px;
    }
}

.mb-20 {
    margin-bottom: 20px;

    @media (max-width: 576px) {
        margin-bottom: 10px;
    }
}

.ad__layout {
    max-width: 1366px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 60px;

    @media (max-width: 1366px) {
        margin-left: 30px;
        margin-right: 30px;
        margin-bottom: 30px;
    }

    @media (max-width: 576px) {
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 15px;
    }
}

.margin-mobile {
    @media (max-width: 576px) {
        margin-left: -16px !important;
        margin-right: -16px !important;
    }
}

/*Title*/
.ad__title {
    display: flex;
    align-items: flex-end;
    gap: 20px;

    a {
        color: var(--color-8D8FA1);
        transition: .3s;
        display: flex;
        font-size: var(--fz-12);

        &:hover {
            color: var(--color-0074BC);
        }
    }

    @media (max-width: 576px) {
        gap: 4px;
    }
}

/* Эфект при наведении*/
body .ad__b-box {
    transition: .5s;

    &:hover {
        transition: .5s;
        transform: translateY(-10px);
        box-shadow: 0 0 80px rgb(255 255 255 / 0%), 0px 0px 46.8519px rgb(23 58 105 / 0%), 0px 15px 25.4815px rgb(23 58 105 / 0%), 0px 9px 13px rgb(23 58 105 / 0%), 0 10.1852px 6.51852px rgb(23 58 105 / 0%), 0 2.31481px 3.14815px rgb(231 231 231);
    }

    @media (max-width: 576px) {
        &:hover {
            transition: unset;
            transform: translateY(0);
            box-shadow: unset;
        }
    }
}


/*Универсальная ссылка*/
.ad__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
}

/*Универсальная обертка для слайдера*/
.swiper__wrap {
    position: relative;
    overflow: hidden;
    padding-top: 30px;
    @media (max-width: 576px) {
        overflow: visible;
        padding-top: 20px;
    }
}


/*.Универсальная обертка для слайдера*/
.swiper-initialized {
    &:hover {
        .ad-button__circle {
            display: flex;
        }
    }

    .swiper__swiper-next {
        right: 0;
        top: 50%;
    }
}

.swiper-button-disabled {
    background-color: var(--color-EFF4F9) !important;
    border: 1px solid var(--color-white);

    &:hover {
        background-color: var(--color-EFF4F9);
        cursor: no-drop;
    }
}

.swiper__swiper-prev svg {
    transform: rotate(180deg);
}

/*Эфект увеличеня при наведении*/
.ad__increase:hover svg {
    transform: scale(1.2);
}

/*Скопировать*/
body .copy {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    color: var(--color-0074BC);
    border: 1px solid var(--color-0074BC);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    margin-bottom: 5px;
    white-space: nowrap;
    font-weight: 400;
    z-index: -1;

    &:before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: var(--color-white) transparent transparent transparent;
        transform: rotate(180deg);
    }
}

.show-tooltip {
    opacity: 1;
    z-index: 1;
}


/*.Скопировать*/

/**/
.content__layout {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;

    @media (max-width: 900px) {
        flex-direction: column;
    }
}


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

/**/


/*Почта */
.ad__email {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}


@media (max-width: 768px) {

    .ad__email span {
        font-size: 12px;
    }
}

/*Footer*/
.footer {
    background-color: var(--color-EFF4F9);
    display: flex;
}

.footer-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    gap: 40px;
}

.footer__title {
    position: relative;
    color: var(--color-3F4B69);
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    margin-bottom: 10px;
    cursor: pointer;

    svg {
        width: 13px;
        height: 8px;
        flex-shrink: 0;
        stroke: var(--color-0074BC);
        display: none;
    }

    &:hover {
        color: var(--color-028EE4);
    }
}

.expandable-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;

    .footer__top-item {
        color: var(--color-8D8FA1);
        position: relative;

        &:hover {
            color: var(--color-028EE4);
        }
    }

    .footer__top-item {
        &:first-child {
            padding-top: 0;
        }

        &:nth-child(n+4) {
            display: none;
        }
    }

    .expanded .footer__top-item {
        display: block !important;
    }
}

.toggle-btn {
    color: var(--color-0074BC);
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: none;
    cursor: pointer;

    svg {
        width: 12px;
        height: 7px;
        flex-shrink: 0;
        stroke: var(--color-0074BC);
        transition: transform 0.3s;

    }

    &:hover {
        color: var(--color-028EE4);

        svg {
            stroke: var(--color-028EE4);
        }
    }

    [aria-expanded="true"] .icon {
        transform: rotate(180deg);
    }

    .hidden {
        display: none;
    }
}

.footer__expandable-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;

    a {
        color: var(--color-8D8FA1);
        transition: color .3s;

        &:hover {
            color: var(--color-028EE4);
        }
    }
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-top: 60px;


    @media (max-width: 1200px) {
        gap: 20px;
    }
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__contacts-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;

    span {
        color: var(--color-8D8FA1);
        white-space: nowrap;

        &:hover {
            color: var(--color-028EE4);
        }

        svg {
            display: none;
        }
    }

    a {
        color: var(--color-8D8FA1);
        white-space: nowrap;

        &:hover {
            color: var(--color-028EE4);
        }
    }
}

.footer__mail {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;

    svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
        fill: var(--color-8D8FA1);
        stroke: var(--color-8D8FA1);
        cursor: pointer;
        margin-left: 5px;
    }

    &:hover span {
        color: var(--color-028EE4);

        svg {
            fill: var(--color-028EE4);
            stroke: var(--color-028EE4);
        }
    }
}

.footer__social {
    & > .footer__title:not(:hover) {
        pointer-events: none;
    }

    .footer__social-content {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer__social-item {
        position: relative;
    }
}

/*Social*/

.tg svg {
    width: 18px;
    height: 15px;
    flex-shrink: 0;
    fill: var(--color-40B3E0);
    transition: transform 0.3s ease;
}

.wt svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: var(--color-25D366);
    transition: transform 0.3s ease;
}

.vk svg {
    width: 24px;
    height: 13px;
    flex-shrink: 0;
    fill: var(--color-4B9BE4);
    transition: transform 0.3s ease;
}

/**/
.footer__bottom {
    border-top: 1px solid var(--color-C9CACC);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 40px 0 60px;

    .footer__bottom-logo {
        display: flex;
        align-items: center;
        gap: 18px;
        position: relative;

        svg {
            width: 130px;
            height: 50px;
            flex-shrink: 0;
        }

        span {
            color: var(--color-3F4B69);
            font-size: 12px;
            width: 250px;
        }
    }

    .footer__bottom-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 12px;

        a {
            color: var(--color-3F4B69);

            &:hover {
                color: var(--color-028EE4);
            }
        }

        span:last-child {
            color: var(--color-8D8FA1);

            a {
                color: var(--color-8D8FA1);

                &:hover {
                    color: var(--color-028EE4);
                }
            }
        }
    }

}


/**/
.details__title {
    background: var(--white);
    border-radius: 5px;
    padding: 12px 24px;
    font-size: 20px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    transition: .3s;

    &::-webkit-details-marker {
        display: none;
    }
}

.details__content {
    padding: 0 32px;
    font-size: 18px;
    margin-bottom: -60px;

    p {
        &:last-child {
            margin-bottom: 0;
        }

        &:first-child {
            margin-top: 0;
        }
    }


}

.footer-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.footer-block {
    &:nth-child(2) {
        width: 16%;
    }

    &:nth-child(4) {
        width: 16%;
    }
}

.accordion svg {
    display: none;
}

@media (max-width: 990px) {
    .footer__title {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-block:last-child {
        width: 100%;
    }

    .footer__content .expandable-list {
        margin-bottom: 0;
        gap: 5px;
    }


    .accordion {
        transition: 0.25s;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
    }

    .footer__title svg {
        display: flex;
    }


    .footer-block {
        width: calc(33.333% - 16px / 3 * 2);
    }

    .footer-block:nth-child(2) {
        width: calc(33.333% - 16px / 3 * 2);
    }

    .footer-block:nth-child(4) {
        width: calc(33.333% - 16px / 3 * 2);
    }

    .footer__title .ad__link {
        z-index: -1;
    }

    .footer-block:nth-child(6) {
        display: block;
    }

    .footer-content {
        gap: 10px;
    }

    .footer__contacts-content span:first-child {
        display: none;
    }

    .footer__contacts-content span:last-child {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer__mail span {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .footer__mail svg {
        width: 18px;
        height: 14px;
        fill: var(--color-0074BC);
    }

    .footer__contacts-content span:nth-child(2) {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .footer__contacts-content span:nth-child(2) svg {
        width: 18px;
        height: 25px;
        flex-shrink: 0;
        fill: var(--color-0074BC);
    }

    .footer__contacts-content span:last-child svg {
        width: 18px;
        height: 25px;
        flex-shrink: 0;
        stroke: var(--color-0074BC);
    }

    .footer__top {
        flex-wrap: wrap;
        align-content: center;
        gap: 10px 16px;
        padding-top: 10px;
    }

    .footer__bottom {
        flex-wrap: wrap;
        align-content: center;
        gap: 16px;
        padding: 0 0 10px;
        border-top: none;
    }

    .footer__bottom-logo {
        width: 100%;
        border-top: 1px solid var(--color-C9CACC);
        border-bottom: 1px solid var(--color-C9CACC);
        padding: 10px 0;
    }
}

@media (max-width: 576px) {


    .footer-block {
        width: calc(50% - 16px / 2 * 1);
    }

    .footer-block:nth-child(2) {
        width: calc(50% - 16px / 2 * 1);
    }

    .footer-block:nth-child(4) {
        width: calc(50% - 16px / 2 * 1);
    }


    .footer__top-item {
        font-size: 14px;
    }

    .footer__title {
        font-size: 14px;
        margin-bottom: 4px;
        justify-content: space-between;
    }

    .footer__content .toggle-btn {
        display: none;
    }

    .footer__contacts-content span {
        font-size: 12px;
    }

    .footer__contacts-content span svg {
        display: block;
    }

    .footer__bottom-info {
        font-size: 8px;
        gap: 4px;
    }

    .footer__bottom-logo span {
        color: var(--color-8D8FA1);
        font-size: 8px;
        width: 100%;
    }

    .footer__bottom-info span:first-child {
        white-space: nowrap;
    }

    .footer__bottom-info:nth-child(2) {
        width: 41%;
        
        @media (max-width: 576px) {
            width: 100%;
        }
    }

    .footer__bottom-info:last-child {
        width: 46%;
    }
}

/*Drop-down*/
/* Свернутая панель скрывает все элементы, кроме отмеченных .is-visible */
.js-drop-down__panel.js-drop-down .js-drop-down__item {
    display: none;
}

.js-drop-down__panel.js-drop-down .js-drop-down__item.is-visible {
    display: block;
}


/* Поворот стрелки в свернутом состоянии (при желании поменяйте) */
.js-drop-down__panel.js-drop-down .js-drop-down__btn svg {
    transform: rotate(180deg);
    transition: transform .1s ease;
}

/*.Drop-down*/


/**/


/*filter*/
/*.Основной фильтр*/
.filter-panel {
    margin-top: 10px;
    position: relative;
    margin-bottom: 20px;
}

.js-filter-panel {
    overflow: hidden;
    transition: max-height 0.5s ease;
    height: 100%;
}


.filter-panel::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    z-index: 4;
    background: var(--color-C9CACC);
}

.filter-panel::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, white, transparent);
    z-index: 3;
    transition: .3s;
}

.filter-panel:hover::after {
    z-index: -1;
    opacity: 0;
}

@media (max-height: 900px) {
    .filter-panel {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .filter-panel::after {
        display: none;
    }
}

.content__aside {
    flex: 0 0 24%;
}

.sidebar__nav-wrap {
    height: 100%;
}

.sidebar__nav-wrapper {
    height: 100%;
    transition: .3s;
}

.sidebar__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    position: sticky;
    top: 68px;
}

.js-filter-menu.open .filter-items {
    max-height: 415px;
}

.filter-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.filter-block:last-child {
    margin-bottom: 15px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-3F4B69);
    cursor: pointer;
    font-size: 16px;
}

.filter-item span {
    color: var(--color-A7A9AB);
}

@media (max-width: 900px) {
    .sidebar__nav {
        position: unset;
    }
}

@media (max-width: 576px) {
    .sidebar__nav {
        margin-left: -20px;
        margin-right: -20px;
        width: unset;
    }
}

/*.Основной фильтр*/
/*Мобильный фильтр*/
.filter-content {
    background-color: var(--color-white);
    border-radius: 10px;
    text-align: center;
    width: 100%;
    position: relative;
}

@media (max-width: 900px) {
    .filter-mobile-panel {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 999;
        justify-content: center;
        align-items: center;
    }

    .filter-content {
        overflow-y: auto;
        padding: 20px;
        height: 100%;
    }
}

/*.Мобильный фильтр*/
/*.filter*/
/*стили*/
.ad-style__custom {
    padding: 20px 24px;
    border-radius: 10px;
    overflow: hidden;

    @media (max-width: 576px) {
        border-radius: 4px;
        padding: 20px 16px;
    }
}

/*.стили*/
/*Form*/
.form-group {
    background-color: var(--color-white);
    padding: 0 10px;
    display: flex;
    gap: 10px;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;

    input {
        border: transparent;
        width: 100%;
        outline: none;

    }

    textarea {
        outline: none;
        padding: 20px 0;
        overflow: hidden;
    }


    @media (max-width: 576px) {
        padding: 16px;
        gap: 4px;
        border-radius: 4px;
        height: 40px;
    }
}


input {
    outline: none;
    height: 51px;

    @media (max-width: 576px) {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .form-textarea {
        height: 100px;
    }
}

/*.Form*/

/*Button*/
/*button, .ad-button-custom {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 10px;*/
/*    padding: 14px;*/
/*    font-size: 16px;*/
/*    overflow: hidden;*/
/*    border-radius: 8px;*/
/*    background-color: var(--color-4B9BE4);*/
/*    color: var(--color-white);*/
/*    border: transparent;*/
/*    transition: background-color .3s;*/
/*    cursor: pointer;*/
/*    width: 100%;*/
/*    font-weight: 500;*/

/*    @media (max-width: 576px) {*/
/*        padding: 12px;*/
/*        border-radius: 4px;*/
/*        font-size: 12px;*/
/*    }*/
/*}*/
/**/
.ad-button__circle {
    position: absolute;
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color .3s;
    top: 50%;
    transform: translate(0, 0);
    font-weight: 500;

    svg {
        width: 7px;
        height: 12px;
        flex-shrink: 0;
    }

    &:hover {
        display: flex;
    }

    @media (max-width: 576px) {
        display: none !important;
    }
}

.ad-button__circle_top {
    top: 25% !important;
}

.ad-button_color_blue {
    background-color: var(--color-4B9BE4);
    transition: .3s;

    svg {
        fill: var(--color-white);
        stroke: var(--color-white);
    }

    &:hover {
        background-color: var(--color-028EE4);
    }
}

/*.*/
/**/
.ad-button-custom-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    font-size: 16px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    border: 1px solid var(--color-C9CACC);
    background-color: var(--color-white);
    color: var(--color-3F4B69);
    white-space: nowrap;
    transition: .3s;
    font-weight: 500;

    svg {
        flex-shrink: 0;
        stroke: var(--color-3F4B69);
        transition: .3s;
    }

    &:hover {
        border: 1px solid var(--color-028EE4);
        color: var(--color-028EE4);

        svg {
            stroke: var(--color-028EE4);
        }
    }
}

/*.*/
/**/
.ad-button-custom {
    border: none;
    background-color: var(--color-0074BC);
    color: var(--color-white);
    transition: background-color .3s;
    border-radius: 10px;
    padding: 12px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    height: 50px;
    width: 100%;
    font-weight: 500;
    font-size: 16px;

    @media (max-width: 576px) {
        font-size: 12px;
        border-radius: 4px;
        height: 36px;
    }

    &:hover {
        background-color: var(--color-028EE4);
        color: var(--color-white);
    }
}

/*.*/

/**/
.ad-button-effect {
    overflow: hidden;
    background: var(--color-0074BC);
    color: var(--color-white);
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 16px;
    transition: background 0.3s;
    /*!* Добавим line-height для лучшего выравнивания *!*/
    position: relative;
    overflow: clip;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    height: 100%;

    span {
        white-space: nowrap;
        color: var(--color-white);
    }

    @media (max-width: 576px) {
        border-radius: 4px;
        font-size: 14px;
    }

    &:hover {
        background: var(--color-4B9BE4);
    }
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 1.2s linear;
    background-color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 999;
}

@keyframes ripple-animation {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/*.*/

/*.Button*/




/* End */


/* Start:/bitrix/templates/adhesol/css/typography.css?17800817185886*/



/*typography*/

.typography {
    display: flex;
    flex-direction: column;
    line-height: 28px;

    h1 {
        line-height: 1.2;
        font-weight: 600;
        font-size: 32px;
        color: var(--color-3F4B69);
        display: none;

        @media (max-width: 576px) {
            font-size: 27px;
        }
    }

    h2 {
        font-size: 24px;
        margin-bottom: 16px;
        color:var(--color-3F4B69);
        font-weight: 600;
        position: relative;

        @media (max-width: 576px) {
            font-size: 18px;
        }

    }

    h3 {
        font-size: 18px;
        margin-bottom: 16px;
        color: var(--color-3F4B69);
        font-weight: 600;
        position: relative;

        @media (max-width: 576px) {
            font-size: 16px;
        }
    }


    p {
        color: var(--color-3F4B69);
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;

        @media (max-width: 576px) {
            font-size: var(--fz-12);
        }

        &:last-child {
            margin-bottom: 0;
        }

        a {
            color: var(--color-0074BC);
            font-size: 14px;
            transition: color .3s;
            display: contents;

            &:hover {
                color: var(--color-0074BC);
            }
        }
    }

    ul {
        color: var(--color-3F4B69);;
        font-size: 14px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;

        @media (max-width: 576px) {
            font-size: 12px
        }

        &:last-child {
            margin-bottom: 0;
        }

        li {
            display: flex;
            padding-left: 10px;
            position: relative;
            line-height: 28px;


            b {
                display: contents;
            }

            a {
                color: var(--color-0074BC);
                transition: .3s;
                display: contents;

                &:hover {
                    color: var(--color-028EE4);
                }
            }

            &:before {
                content: '';
                width: 4px;
                height: 4px;
                display: block;
                flex-shrink: 0;
                border-radius: 50%;
                background-color: var(--color-3F4B69);
                transition: .3s;
                position: absolute;
                top: 12px;
                left: 0;
            }
        }

    }

    ol {
        color: var(--color-3F4B69);
        font-size: 14px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        list-style: none;
        counter-reset: my-counter;
        margin-bottom: 20px;

        @media (max-width: 576px) {
            font-size:12px;
        }

        &:last-child {
            margin-bottom: 0;
        }

        li {
            display: flex;
            counter-increment: my-counter;
            padding-left: 15px;
            position: relative;
            line-height: 28px;

            b {
                display: contents;
            }

            a {
                color: var(--color-0074BC);
                transition: .3s;
                display: contents;

                &:hover {
                    color: var(--color-028EE4);
                }
            }

            &:before {
                content: counter(my-counter) "." !important;
                color: var(--color-3F4B69);
                transition: .3s;
                position: absolute;
                top: 0;
                left: 0;
                font-weight: 500;
            }
        }
    }

    video {
        width: 100%;
        max-height: 300px;
        object-fit: cover;
        border-radius: 10px;
        overflow: hidden;
    }

    h1, h2, h3 {
        a {
            color: var(--color-0074BC);
            transition: color .3s;
            display: contents;

            &:hover {
                color: var(--red-600);
            }
        }
    }

}

/**/
.typography__images {
    display: flex;
    justify-content: center;
    gap: 10px;

    @media (max-width: 576px) {
        flex-direction: column;
    }

    .typography__img {
        position: relative;
        flex: 1 1 350px; /* Базовый размер 300px, но может расти и сжиматься */
        height: 240px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        overflow: hidden;
        border-radius: 10px;

        @media (max-width: 576px) {
            flex: unset;
            height: 150px;

        }


        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }


        figcaption {
            font-size: 16px;
            transition: color .3s;
            position: absolute;
            bottom: 0;
            color: var(--white);
            z-index: 2;
            padding: 10px 10px 10px 20px;
            text-align: left;
            font-weight: 500;
            display: flex;
            align-items: end;
            left: 0;
            right: 0;
            top: 0;
            opacity: 1 !important;

            &:before {
                background-image: linear-gradient(180deg, #0000, #292929);
                bottom: 0;
                content: "";
                display: block;
                height: 50%;
                left: 0;
                right: 0;
                position: absolute;
                width: 100%;
                z-index: -1;
            }
        }
    }

}

/**/
.typography__video {
    display: flex;
    align-items: center;
    gap: 20px;

    @media (max-width: 576px) {
        flex-direction: column;
    }
}

/*.typography*/
/* End */


/* Start:/local/components/adhesol/search.form/templates/suggest/style.css?17685616706179*/

.search-main {
    width: 100%;
    margin: 0 auto;
    position: relative;

    @media (max-width: 576px) {
        order: 2;
    }

    & > svg {
        width: 16px;
        height: 16px;
        fill: var(--color-3F4B69);
        stroke: var(--color-3F4B69);
        position: absolute;
        bottom: 0;
        cursor: pointer;
        transition: .3s;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    input {
        width: 100%;
        padding: 18px 70px 18px 40px;
        border: 1px solid var(--color-EFF4F9);
        border-radius: 8px;
        outline: none;
        transition: all 0.3s;
        background-color: var(--color-EFF4F9);
        height: 40px;
        color: var(--color-3F4B69);

        &:focus {
            border-color: #4d8af0;
            background: white;
            box-shadow: 0 0 0 3px rgba(77, 138, 240, 0.1);
        }
    }

    .clear-btn {
        position: absolute;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        display: none;
        z-index: 2;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        right: 80px;
        top: 50%;

        svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            fill: var(--color-3F4B69);
            stroke: var(--color-3F4B69);
            transition: .3s;

            &:hover {
                fill: var(--color-0074BC);
                stroke: var(--color-0074BC);
            }
        }

    }

}

.search__box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}


.search-btn {
    padding: 0 15px;
    background: var(--color-028EE4);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    &:hover {
        background: var(--color-0074BC);
    }
}


/* Autocomplete Dropdown */
.autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 100;
    overflow: hidden;
    display: none;
    animation: fadeIn 0.2s ease-out;
    border: 1px solid #eaeaea;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    justify-content: space-between;
}

.results-count {
    background: #4d8af0;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.dropdown-content {
    max-height: 350px;
    overflow-y: auto;
}

.result-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:hover {
    background: #f8fafe;
}

.result-item.highlighted {
    background: #f0f5ff;
    border-left: 4px solid #4d8af0;
}

.item-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f0f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #4d8af0;
    font-size: 1rem;
}

.item-content {
    flex: 1;
}

.item-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.item-category {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 5px;
}

.no-results {
    padding: 30px 20px;
    text-align: center;
    color: #888;
}

.no-results i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .search__box {
        flex-direction: column;
    }

    #searchButton {
        padding: 18px;
        justify-content: center;
    }

    .search-wrapper {
        padding: 20px;
    }
}

/* Scrollbar */
.dropdown-content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}


.live-search {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.live-search__list {
    max-height: 360px;
    overflow: auto;
}

.live-search__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: .3s;
}

.live-search__item:before {
    position: absolute;
    bottom: 0;
    content: '';
    height: 0.5px;
    width: 90%;
    background-color: var(--color-EDEEEF);
    right: 48%;
}

.live-search__item:hover {
    background-color: var(--color-EFF4F9);
}

.live-search__img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 10px;
    overflow: hidden;
}

.live-search__title {
    color: var(--color-3F4B69);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 600;
    font-size: 12px;
    width: 100%;
}


.live-search__title_analog {
    font-size: 12px;
    background-color: var(--color-EFF4F9);
    font-weight: 400;
    padding: 6px 10px;
    border-radius: 4px;
    color: #666;

}

.live-search__all {
    display: block;
    padding: 10px;
    border-top: 1px solid var(--color-EDEEEF);;
    text-decoration: none;
    color: var(--color-3F4B69);

}

.live-search__title mark {
    background: rgba(255, 230, 120, 0.6);
    padding: 0 2px;
    border-radius: 3px;
}




/* End */


/* Start:/bitrix/templates/adhesol/components/bitrix/menu/header/style.css?1762079484960*/


div.menu-sitemap-tree {
    font-size: 100%;
}

div.menu-sitemap-tree ul {
    list-style-type: none;
    margin: 0;
    padding: 0 1em 0 0;
}

div.menu-sitemap-tree ul ul {
    width: auto;
    margin: -0.75em 0 0 0;
    padding: 0 0 0 0.75em;
}

div.menu-sitemap-tree li {
    margin: 0 0 -0.85em 0;
    padding: 0;
}

div.menu-sitemap-tree li li {
    margin: 0 0 -0.85em 0.5em;
    padding: 0;
}

div.menu-sitemap-tree li.menu-close ul {
    display: none;
}

div.menu-sitemap-tree div.item-text {
    position: relative;
    top: -19px;
    left: 19px;
}

/*Icons*/
div.folder, div.page {
    background-repeat: no-repeat;
    width: 17px;
    height: 17px;
    vertical-align: top;
}

div.folder {
    cursor: pointer;
    cursor: hand;
    background-image: url(/bitrix/templates/adhesol/components/bitrix/menu/header/images/folder_open.gif);
}

div.menu-sitemap-tree li.menu-close div.folder {
    background-image: url(/bitrix/templates/adhesol/components/bitrix/menu/header/images/folder_close.gif);
}

div.page {
    background-image: url(/bitrix/templates/adhesol/components/bitrix/menu/header/images/page.gif);
}

/* End */


/* Start:/local/components/adhesol/breadcrumb/templates/adhesol/style.css?17649195921270*/
.ad__container_bread {
    max-width: 1366px;
    margin-right: auto;
    margin-left: auto;
}

.breadcrumbs {
    align-items: center;
    display: flex;
    height: 18px;
    overflow-x: auto;
    position: relative;
    scrollbar-width: none;
    white-space: nowrap;
    z-index: 1;

    a {
        color: var(--color-0074BC);

        &:hover {
            color: var(--color-0074BC);
        }
    }
}

.breadcrumbs__item {
    align-items: center;
    color: var(--color-C9CACC);
    display: flex;
    height: 18px;
}

.breadcrumbs__item:first-child a {
    display: block;
    height: 16px;
    width: 16px;
}

.breadcrumbs__item a {
    color: var(--color-C9CACC);
    transition: .3s;
}

.breadcrumbs__item a:hover {
    color: var(--color-0074BC);
}


.breadcrumbs__item:last-child a {
    color: var(--color-0074BC);
    cursor: unset;
}

.breadcrumbs__icon-home {
    fill: var(--color-C9CACC);
    flex-shrink: 0;
    height: 16px;
    width: 16px;
}

.breadcrumbs__icon-home:hover {
    fill: var(--color-0074BC);
}

.breadcrumbs__icon-arrow {
    stroke: var(--color-C9CACC);
    stroke-width: 1.6;
    flex-shrink: 0;
    height: 8px;
    margin: 0 4px;
    width: 8px;
}

.breadcrumbs__icon {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* End */
/* /bitrix/templates/adhesol/css/navbar.css?177122409312364 */
/* /bitrix/templates/adhesol/css/custom.css?178008174824178 */
/* /bitrix/templates/adhesol/css/typography.css?17800817185886 */
/* /local/components/adhesol/search.form/templates/suggest/style.css?17685616706179 */
/* /bitrix/templates/adhesol/components/bitrix/menu/header/style.css?1762079484960 */
/* /local/components/adhesol/breadcrumb/templates/adhesol/style.css?17649195921270 */
