.docs-page {
    --docs-blue: #0868e8;
    --docs-dark: #101820;
    --docs-line: #e8edf4;
    --docs-soft: #f6f9fd;
    color: var(--docs-dark);
    font-family: 'AvenirNextCyr-Regular', Arial, sans-serif;
    padding: 0 0 58px;
}

.docs-page *,
.docs-page *::before,
.docs-page *::after { box-sizing: border-box; }
.docs-page a { text-decoration: none; }
.docs-page button { font-family: inherit; }

.docs-page-body > .container > .breadcrumbs { display: none; }
.docs-page-body > .container { max-width: 1630px; }

.docs-hero {
    min-height: 430px;
    margin: 8px 0 26px;
    border-radius: 19px;
    overflow: hidden;
    color: #fff;
    background: #044bbb url('/docs_new/assets/instructions-banner.webp') center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.docs-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 44, 135, .5) 0%, rgba(0, 57, 168, .12) 49%, transparent 66%);
    pointer-events: none;
}

.docs-hero__content {
    position: relative;
    z-index: 1;
    width: 46%;
    /*padding: 38px 0 36px 76px;*/
    padding: 35px 0 0px 15px;
}

.docs-hero__crumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 34px; font-size: 14px; }
.docs-hero__crumbs a,
.docs-hero__crumbs span { color: /*rgba(255,255,255,.92)*/ black; }
.docs-hero h1 { margin: 0 0 26px; font-family: 'AvenirNextCyr-Bold', Arial, sans-serif; font-size: clamp(38px, 4vw, 60px); line-height: 1; text-transform: uppercase; color: #fff; }
.docs-hero p { margin: 0; font-size: 22px; line-height: 1.45; }

.docs-tabs {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0 13px 0 13px;
    overflow-x: auto;
    scrollbar-width: none;
}
.docs-tabs::-webkit-scrollbar { display: none; }
.docs-page .docs-tab { position: relative; flex: 0 0 auto; padding: 33px 0 28px; border: 0; background: transparent; color: #171717; font-family: 'AvenirNextCyr-Demi', Arial, sans-serif; font-size: 17px; white-space: nowrap; cursor: pointer; }
.docs-tab:hover, .docs-tab.is-active { color: var(--docs-blue); }
.docs-tab.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 18px; height: 4px; border-radius: 4px; background: var(--docs-blue); }
.docs-tab:focus-visible { outline: 2px solid var(--docs-blue); outline-offset: -10px; }

.docs-xls { margin-left: auto; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 11px; min-height: 50px; padding: 0 24px; border: 1px solid #bdd5f6; border-radius: 12px; color: var(--docs-blue); font-family: 'AvenirNextCyr-Demi', Arial, sans-serif; font-size: 16px; }
.docs-xls svg { width: 24px; height: 24px; color: #139443; }
.docs-archive-all { width:24px; height:24px; padding:0; border:0; background:transparent; display:grid; place-items:center; cursor:pointer; transition:.2s ease; }
.docs-archive-all:hover { transform:translateY(-1px); }
.docs-archive-all:disabled { cursor:wait; opacity:.55; }
.docs-archive-all.is-loading svg { animation:docs-archive-spin 1s linear infinite; }
@keyframes docs-archive-spin { to { transform:rotate(360deg); } }

.docs-filter {
    min-height: 115px;
    margin: 0 13px 27px;
    padding: 22px 49px;
    border-radius: 13px;
    background: linear-gradient(110deg, #f5f8fc, #fafcff);
    display: flex;
    align-items: center;
    gap: 52px;
}
.docs-filter h2 { margin: 0 auto 0 0; flex: 0 0 auto; color: #171717; font-family: 'AvenirNextCyr-Demi', Arial, sans-serif; font-size: 22px; text-transform: none; }
.docs-filter__buttons { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.docs-filter__buttons { scrollbar-width: none; }
.docs-filter__buttons::-webkit-scrollbar { display: none; }
.docs-filter button { min-width: 144px; height: 55px; padding: 0 24px; border: 1px solid #c9d9ee; border-radius: 999px; background: #fff; color: var(--docs-blue); font-family: 'AvenirNextCyr-Demi', Arial, sans-serif; font-size: 17px; box-shadow: 0 3px 8px rgba(36, 80, 137, .07); transition: .2s ease; }
.docs-filter button:hover { border-color: var(--docs-blue); transform: translateY(-1px); }
.docs-filter button.is-active { border-color: transparent; background: linear-gradient(135deg, #0754d5, #087af2); color: #fff; box-shadow: 0 8px 18px rgba(0, 104, 232, .2); }

.docs-groups { margin: 0 17px; }
.docs-group { margin-bottom: 24px; border-radius: 14px; background: #fff; box-shadow: 0 7px 28px rgba(35, 68, 106, .1); overflow: hidden; }
.docs-group__header { min-height: 84px; padding: 15px 38px 15px 28px; background: linear-gradient(110deg, #f5f8fc, #fafcff); display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between; gap: 24px; }
.docs-group__heading { min-width: 0; display: flex; align-items: center; gap: 14px; }
.docs-group__number { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(145deg, #087af2, #0452c6); }
.docs-group h2 { margin: 0; color: #151515; font-family: 'AvenirNextCyr-Demi', Arial, sans-serif; font-size: 19px; text-transform: uppercase; }
.docs-group__actions { display: flex; align-items: center; gap: 25px; }
.docs-archive { min-height: 44px; padding: 0 20px; border: 1px solid #c4d8f2; border-radius: 999px; display: inline-flex; align-items: center; gap: 13px; color: var(--docs-blue); font-family: 'AvenirNextCyr-Demi', Arial, sans-serif; font-size: 15px; white-space: nowrap; }
.docs-archive:hover { color: var(--docs-blue); transform: translateY(-1px); }
.docs-archive.is-loading { pointer-events: none; cursor: wait; opacity: .55; }
.docs-archive.is-loading svg { animation: docs-archive-spin 1s linear infinite; }
.docs-archive svg,
.docs-download svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.docs-collapse { width: 36px; height: 36px; padding: 0; border: 0; background: transparent; color: var(--docs-blue); display: grid; place-items: center; }
.docs-collapse svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; transform: rotate(180deg); transition: transform .2s; }
.docs-group.is-collapsed .docs-collapse svg { transform: rotate(0); }

.docs-group__body { padding: 12px 44px 22px; }
.docs-group.is-collapsed .docs-group__body { display: none; }
.docs-list { border: 0; }
.docs-item { min-height: 75px; padding: 10px 25px 10px 33px; border: 1px solid #edf1f6; border-bottom: 0; display: grid; grid-template-columns: 45px minmax(0, 1fr) 130px 144px; align-items: center; gap: 22px; }
.docs-item.is-first-visible { border-radius: 8px 8px 0 0; }
.docs-item.is-last-visible { border-bottom: 1px solid #edf1f6; border-radius: 0 0 8px 8px; }
.docs-item.is-first-visible.is-last-visible { border-radius: 8px; }
.docs-item.is-extra { display: none; }
.docs-item.is-brand-hidden { display: none !important; }
.docs-group.is-expanded .docs-item.is-extra { display: grid; }
.docs-item__pdf { position: relative; width: 28px; height: 34px; color: #fff; display: flex; align-items: end; justify-content: center; padding-bottom: 4px; font-size: 7px; line-height: 1; }
.docs-item__pdf svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.docs-item__pdf b { position: relative; z-index: 1; font-family: Arial, sans-serif; font-weight: 700; letter-spacing: -.2px; }
.docs-item__info { min-width: 0; }
.docs-item h3 { margin: 0 0 3px; overflow: hidden; text-overflow: ellipsis; color: #171717; font-family: 'AvenirNextCyr-Demi', Arial, sans-serif; font-size: 17px; line-height: 1.2; white-space: nowrap; }
.docs-item p { margin: 0; color: #68717d; font-size: 14px; }
.docs-item__size { color: #4f5660; font-size: 16px; }
.docs-download { min-height: 43px; padding: 0 18px; border: 1px solid var(--docs-blue); border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; color: var(--docs-blue); font-family: 'AvenirNextCyr-Demi', Arial, sans-serif; font-size: 15px; }
.docs-more { margin: 19px 0 0 101px; padding: 0; border: 0; background: transparent; display: inline-flex; align-items: center; gap: 8px; color: var(--docs-blue); font-family: 'AvenirNextCyr-Bold', Arial, sans-serif; font-size: 14px; font-weight: 700; }
.docs-more svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s; }
.docs-group.is-expanded .docs-more svg { transform: rotate(180deg); }
.docs-empty { margin: 50px 0; text-align: center; color: #68717d; font-size: 18px; }

.docs-heading { display:flex; align-items:center; justify-content:space-between; gap:30px; padding:16px 13px 0; }
.docs-heading h1 { margin:0 0 8px; font-family:'AvenirNextCyr-Demi',Arial,sans-serif; font-size:clamp(28px,3vw,42px); line-height:1.12; text-transform:uppercase; }
.docs-heading p { margin:0; color:#68717d; font-size:17px; }
.docs-filter { flex-wrap:wrap; }
.docs-search { position:relative; flex:1 1 280px; min-width:260px; }
.docs-search input { width:100%; height:55px; padding:0 48px 0 20px; border:1px solid #c9d9ee; border-radius:999px; background:#fff; color:var(--docs-dark); font:inherit; font-size:16px; outline:none; }
.docs-search input:focus { border-color:var(--docs-blue); box-shadow:0 0 0 3px rgba(8,104,232,.12); }
.docs-search svg { position:absolute; top:17px; right:18px; width:22px; height:22px; fill:none; stroke:var(--docs-blue); stroke-width:2; pointer-events:none; }
.docs-reset { color:var(--docs-blue); font-family:'AvenirNextCyr-Demi',Arial,sans-serif; white-space:nowrap; }
.docs-result-count { margin:0 17px 14px; color:#68717d; font-size:15px; }
.docs-document-list { margin:0 17px; border-radius:14px; overflow:hidden; box-shadow:0 7px 28px rgba(35,68,106,.1); }
.docs-document-list .docs-item { border-left:0; border-right:0; }
.docs-document-list .docs-item:last-child { border-bottom:0; }
.docs-item__info h2 { margin:0 0 3px; overflow:hidden; text-overflow:ellipsis; color:#171717; font-family:'AvenirNextCyr-Demi',Arial,sans-serif; font-size:17px; line-height:1.2; white-space:nowrap; }
.docs-item__categories { display:flex; flex-wrap:wrap; gap:5px; margin-top:7px !important; }
.docs-item__categories span { padding:3px 8px; border-radius:20px; background:#eef5ff; color:#336baf; font-size:12px; }
.docs-item__actions { display:flex; align-items:center; justify-content:flex-end; gap:10px; }
.docs-view { width:43px; height:43px; border:1px solid #c4d8f2; border-radius:7px; display:grid; place-items:center; color:var(--docs-blue); }
.docs-view svg { width:21px; height:21px; fill:none; stroke:currentColor; stroke-width:1.7; }
.docs-pagination { display:flex; justify-content:center; gap:7px; margin:28px 17px 0; }
.docs-pagination a { min-width:38px; height:38px; padding:0 8px; border:1px solid #c9d9ee; border-radius:7px; display:grid; place-items:center; color:var(--docs-blue); font-family:'AvenirNextCyr-Demi',Arial,sans-serif; }
.docs-pagination a.is-active { border-color:var(--docs-blue); background:var(--docs-blue); color:#fff; }
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

@media (max-width: 1199px) {
    .docs-page-body > .container { padding-inline: 15px; }
    .docs-hero { min-height: 360px; }
    .docs-hero__content { padding-left: 48px; }
    .docs-hero p { font-size: 19px; }
    .docs-tabs { gap: 28px; padding: 0 13px 0 15px; }
    .docs-filter { align-items: flex-start; flex-direction: column; gap: 20px; padding: 28px; }
    .docs-filter__buttons { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
    .docs-item { grid-template-columns: 40px minmax(0, 1fr) 90px 130px; }
    .docs-more { margin-left: 96px; }
    .docs-heading { padding-inline:15px; }
    .docs-filter__buttons { max-width:100%; overflow-x:auto; padding-bottom:4px; }
}

@media (max-width: 767px) {
    .docs-page { padding-bottom: 35px; }
    .docs-hero { min-height: 390px; margin-top: 0; border-radius: 13px; background-position: 64% center; align-items: flex-end; }
    .docs-hero::after { background: linear-gradient(180deg, rgba(0,34,105,.05), rgba(0,31,101,.9)); }
    .docs-hero__content { width: 100%; padding: 28px 24px 34px; }
    .docs-hero__crumbs { margin-bottom: 18px; font-size: 12px; }
    .docs-hero h1 { margin-bottom: 15px; font-size: 34px; }
    .docs-hero p { font-size: 16px; }
    .docs-tabs { min-height: 72px; padding: 0 4px; }
    .docs-tab { padding: 24px 0; font-size: 15px; }
    .docs-tab.is-active::after { bottom: 12px; }
    .docs-xls { order: -1; margin-left: 0; min-height: 42px; padding: 0 15px; font-size: 14px; }
    .docs-filter { margin: 0 0 18px; padding: 22px 18px; border-radius: 10px; }
    .docs-filter h2 { font-size: 19px; }
    .docs-filter__buttons { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
    .docs-filter button { min-width: auto; height: 44px; padding: 0 19px; font-size: 15px; }
    .docs-groups { margin: 0; }
    .docs-group { margin-bottom: 16px; }
    .docs-group__header { min-height: 72px; padding: 13px 15px; gap: 12px; }
    .docs-group__heading { gap: 12px; }
    .docs-group__number { width: 24px; height: 24px; }
    .docs-group h2 { font-size: 14px; line-height: 1.2; }
    .docs-group__actions { gap: 5px; }
    .docs-archive { min-height: 36px; padding: 0 11px; font-size: 13px; }
    .docs-archive svg { width: 17px; }
    .docs-collapse { width: 30px; }
    .docs-group__body { padding: 10px 12px 17px; }
    .docs-item { min-height: 80px; padding: 10px 8px; grid-template-columns: 32px minmax(0, 1fr) auto; gap: 10px; }
    .docs-item__size { display: none; }
    .docs-item h3 { font-size: 14px; white-space: normal; }
    .docs-item p { font-size: 12px; }
    .docs-download { width: 38px; min-height: 38px; padding: 0; }
    .docs-download span { display: none; }
    .docs-download svg { width: 18px; }
    .docs-more { margin-left: 50px; }
    .docs-heading { align-items:flex-start; flex-direction:column; gap:14px; padding:12px 0 0; }
    .docs-heading h1 { font-size:28px; }
    .docs-heading p { font-size:15px; }
    .docs-heading .docs-xls { order:0; }
    .docs-search { flex-basis:100%; min-width:0; }
    .docs-document-list, .docs-result-count { margin-inline:0; }
    .docs-document-list .docs-item { grid-template-columns:32px minmax(0,1fr) auto; }
    .docs-item__categories { display:none; }
    .docs-item__actions { gap:6px; }
    .docs-view { width:38px; height:38px; }
}

@media (max-width: 575px) {
    .docs-group__header { position: relative; align-items: center; padding-bottom: 58px; }
    .docs-group__heading { flex: 1 1 auto; min-width: 0; align-items: center; padding-top: 0; }
    .docs-group h2 { min-width: 0; white-space: normal; overflow-wrap: anywhere; }
    .docs-group__actions { flex: 0 0 auto; flex-direction: row; align-items: center; gap: 2px; }
    .docs-archive { position: absolute; right: 15px; bottom: 10px; }
}

@media (max-width: 420px) {
    .docs-hero { min-height: 350px; background-position: 61% center; }
    .docs-hero__content { padding: 24px 20px 30px; }
    .docs-hero__crumbs { gap: 6px; margin-bottom: 15px; font-size: 11px; }
    .docs-hero h1 { margin-bottom: 14px; font-size: 27px; }
    .docs-hero p { font-size: 14px; line-height: 1.4; }
    .docs-tabs { gap: 22px; }
    .docs-tab { font-size: 14px; }
    .docs-xls { gap: 8px; padding: 0 12px; font-size: 13px; }
    .docs-xls svg { width: 20px; height: 20px; }
    .docs-filter { padding: 18px 16px; }
    .docs-filter h2 { font-size: 18px; }
    .docs-filter__buttons { gap: 12px; }
    .docs-filter button { height: 42px; padding: 0 17px; font-size: 14px; }
    .docs-group__header { padding: 12px 10px 56px; gap: 8px; }
    .docs-group__heading { gap: 8px; }
    .docs-group__number { width: 20px; height: 20px; }
    .docs-group h2 { font-size: 12px; }
    .docs-group__actions { gap: 2px; }
    .docs-archive { width: auto; min-height: 36px; padding: 0 9px; justify-content: center; font-size: 12px; }
    .docs-archive { right: 10px; bottom: 10px; }
    .docs-archive svg { width: 16px; }
    .docs-collapse { width: 28px; height: 32px; }
    .docs-collapse svg { width: 19px; height: 19px; }
    .docs-group__body { padding: 8px 8px 15px; }
    .docs-item { min-height: 76px; padding: 9px 6px; grid-template-columns: 28px minmax(0, 1fr) 36px; gap: 8px; }
    .docs-item__pdf { width: 25px; height: 31px; }
    .docs-item h3 { font-size: 13px; }
    .docs-download { width: 36px; min-height: 36px; }
    .docs-more { margin: 17px 0 0 43px; font-size: 13px; }
}
