@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans:wght@300;400;500&family=Roboto:wght@300;400;500&display=swap');

@font-face {
    font-family: SegoeUI;
    src:
        local("Segoe UI Light"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff2) format("woff2"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff) format("woff"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.ttf) format("truetype");
    font-weight: 100;
}

@font-face {
    font-family: SegoeUI;
    src:
        local("Segoe UI Semilight"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff2) format("woff2"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff) format("woff"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.ttf) format("truetype");
    font-weight: 200;
}

@font-face {
    font-family: SegoeUI;
    src:
        local("Segoe UI"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff2) format("woff2"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff) format("woff"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.ttf) format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: SegoeUI;
    src:
        local("Segoe UI Bold"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.woff2) format("woff2"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.woff) format("woff"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.ttf) format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: SegoeUI;
    src:
        local("Segoe UI Semibold"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semibold/latest.woff2) format("woff2"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semibold/latest.woff) format("woff"),
        url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semibold/latest.ttf) format("truetype");
    font-weight: 700;
}




/* remove all the styles of the "User-Agent-Stylesheet" styles
              except for the 'display' property */

:not(svg|*) {
    /* * { */
    all: unset;
    display: revert;
}


/* preferred box-sizing value for web developers these days */

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

body {
    margin-top: 0px;
}

/* общий стиль ссылок */
a {
    text-decoration: none;
}

/* общий стиль заголовка */

h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: xx-large;
}

/* Основное поле с бледноголубым цветом  - контейнер страницы */

.bgrctg {
    background-color: #D3E2EA;
    width: 1000px;
    padding: 12px;
    margin: auto;
}


/* шапка страницы */

.shadowbox {
    width: 978px;
    height: 66px;
    box-shadow: 0px 4px 10px 0px rgb(97, 97, 97);
    border-radius: 10px;
    background-image: url("/images/cont_bg_1.webp");
    background-position: top;
    margin: auto;
    margin-bottom: 17px;
}


/* меню из прямоугольников в линию */

.shadowbox .menubxs {
    position: relative;
    display: inline-block;
    top: 0px;
    left: 10px;
    width: 200px;
    height: 30px;
    background: rgb(168, 223, 248, 0.3);
    border-radius: 4px;
    margin: 18px;
}

/* изменение фона при наведении */
.menubxs:hover {
    background: rgb(16, 49, 66, 0.7);
}

/* нажатая кнопка */

#unpressed {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    /* color: aliceblue; */
}


/* надпись на кнопке */

#unpressed p {
    margin-top: 3px;
    text-align: center;
}


#unpressed a {
    /* position: relative; */
    /* font-family: 'Roboto', sans-serif;
    font-weight: 300; */
    color: aliceblue;
}


#pressed {
    background: rgb(16, 49, 66, 0.7);
    position: relative;
    font-family: 'Roboto', sans-serif;
    /* color: aliceblue; */
    border: solid;
    border-color: rgb(90 131 165);
    border-width: 2px;

}

#pressed p {
    margin-top: 0px;
    text-align: center;
}

#pressed a {
    color: aliceblue;
}

#disabled {
    background: #3b9ffd11;
    position: relative;
    font-family: 'Roboto', sans-serif;
    /* color: aliceblue; */
    border: solid;
    border-color: rgb(90 131 165);
    border-width: 2px;
}

#disabled p {
    margin-top: 0px;
    text-align: center;
}

#disabled a {
    color: aliceblue;
    color: #4D4D4D;
}


/* скрываем почту - метод раз
              поставится указанный элемент перед элементом с этим классом */

.domain::before {
    content: "\0040";
    /* Unicode character for @ symbol */
}


/* скрываем почту - метод два
              Добавте любое количество слов, которые будут невидимыми */

#dummy {
    display: none;
}


/* основной блок с белым фоном для текста и с прозрачным */

.listing,
.translisting,
.listingshort {
    width: 978px;
    /*height: 570px;*/
    /* height: 742px; */
    border-radius: 10px;
    background-color: white;
    border-color: #6D9AB3;
    box-shadow: 0px 4px 10px 0px rgb(97, 97, 97);
    margin-bottom: 17px;
    background-image: url("/images/bluebar_long.png");
    background-repeat: no-repeat;
    background-position: top;
    padding-left: 30px;
    padding-right: 10px;
}

/* прозрачный основной блок */

.translisting {
    background-color: transparent;
    height: 742px;
}

.listingshort {
    height: 742px;
}

.lefttxt {
    width: 548px;
    margin-left: 5px;
    padding-bottom: 20px;
    /* border: #A17849;
    border-style: dotted; */
}

h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}


/* правая часть текстового поля - список тем */

.righttxt,
.righttxtintro,
.righttxtintros {
    float: right;
    width: 377px;
    height: 1400px;
    padding-right: 0px;
    /* border: blue;
    border-style: dashed; */
}

/* уменьшенная высота правой части на главной */
.righttxtintro {
    /* height: 500px; */
    height: auto;
    width: auto;
}

.righttxtintros {
    height: 802px;
}

/* блок с названием темы */

.ittheme {
    position: relative;
    height: 40px;
    font-family: 'Open Sans', sans-serif;
    color: #682A18;
    text-align: left;
    padding-left: 60px;
    padding-top: 0px;
    margin-bottom: 15px;
    text-shadow: 0.1em 0.1em 0.1em #6a9c96;
}

/* .ittheme h1 {
    font-family: 'Roboto', sans-serif;
    font-size: xx-large;
} */

h2 {
    font-family: 'Open Sans', sans-serif;
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: larger;
    font-weight: 500;
}

h2::before {
    content: "";
    background-color: #a17849b0;
    position: relative;
    clip-path: inset(8px 1px 3px round 10px);
    filter: drop-shadow(40px 8px 0px rgba(0, 0, 0, 0.8));
    padding: 13px 38px 9px 40px;
    left: -17px;
}



p {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    font-weight: 400;
    text-align: left;
    /* вставка пространства между абзацами */
    margin-top: 0.5em;
    /* Отступ сверху */
    margin-bottom: 1em;
    /* Отступ снизу */
}

/* Исползуется другой шрифт для первой страницы */
p.introtxt,
p.introtxts,
p.introtxtwos,
p.introtxtmain {
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* Стили для первой буквы элемента <p> */
p.introtxt::first-letter,
p.introtxts::first-letter,
p.introtxtmain::first-letter {
    font-size: 130%;
}

/* сдвиг и поднятие абзаца первой страницы */
p.introtxts {
    text-indent: 10px;
    margin-top: -19px;
}

/* нижний узкий параграф без сдвига */
p.introtxtwos:last-of-type {
    margin-top: -19px;
}

/* увеличнные по вертикали парагарфы страницы карты сайта */
p.introtxtmain {
    font-size: medium;
    margin-top: 1.5em;
    margin-bottom: 1em;
}

/* разделитель с увеличенным отступом сверху */

p.razdel {
    /* вставка пространства между абзацами */
    margin-top: 1em;
}

/* выделение абзаца */

p.kvadrat {
    margin-top: 0px;
    background-color: burlywood;
    font-weight: 400;
    padding: 10px;
    border-radius: 10px;
    padding-left: 15px;
}

/* оглавление перечня или абзаца */

p.tablenote {
    margin-bottom: 5px;
}

/* Комплексное объединение и форматрование параграфов.
Их необходимо помещать в верхний контейнер div. */

/* стиль всех объединенных параграфов */
p.brlessall {
    margin-top: 0;
    margin-bottom: 0;
}

/* стиль первого параграфа в объединении
с увеличенной толщиной шрифта */
p.brlessall:first-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 500;
    /* background: darkorange; */
}

/* стиль последнего параграфа в объединении */
p.brlessall:last-of-type {
    margin-top: 0;
    padding-top: 0;
    /* background-color: #A17849; */
    margin-bottom: 16px;
}

/* верхний из двух абзацев без разделения */
p.brlessup {
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 500;
}

/* нижний из двух абзацев без разделения */
p.brlessdwn {
    margin-top: 0;
    padding-top: 0;
}

/* сноска с вертикальной чертой */
p.vert-line {
    border-left: 3px solid #a17849b0;
    padding-left: 15px;
    font-weight: 400;
    font-size: small;
}


/* абзацы превращаются в кнопки */
/* p.button { */
.button {
    display: inline-block;
    border-style: solid;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    font-weight: 400;
    background: #E1EEF4;
    border: 1px solid #006699;
    border-radius: 10px;
}

summary {
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    padding: 10px;
    border: 1px solid #006699;
    border-radius: 10px;
    /* font-size: 12px; */
    font-weight: 400;
    background: #E1EEF4;
    box-shadow: 3px 3px 4px #00000061;

}

summary::marker {
    /* content: '✝✺➔ '; */
    /* color: #006699; */
    /* color: #682A18; */
    color: #A17849;
    font-size: 1.2em;
}

/* шрифт страницы разделов сайта */
dl {
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    margin-left: 20px;
}

dt a {
    font-weight: 500;
    color: #A17849;
}

dd {
    font-size: small;
    margin: 0px 0px 0.5em;
}

/* выделение в тексте */

span#bldtxt {
    font-weight: 600;
    /* color: #682A18; */
    color: #A17849;

}

/* стилизация внешних ссылок в тексте  */

a {
    cursor: pointer;
}

a.linktozabbix:link {
    outline: none;
    text-decoration: none;
    padding: 2px 1px 0;
    font-weight: 500;
    padding-left: 4px;
    padding-right: 4px;

}

a.linktozabbix:hover {
    background: #A17849;
    color: antiquewhite;
}


.rob {
    font-family: 'Roboto', sans-serif;
    font-size: medium;
    line-height: 1.5;
    font-weight: 300;
}

.mon {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    font-weight: 500;
}

.ope {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    line-height: 1.5;
}

footer {
    text-align: right;
}

footer p {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    font-weight: 400;
    text-align: right;
}

ul,
ol {
    color: #A17849;
    margin-left: 20px;
    padding-left: 10px;
    list-style: none;
}

li {
    margin: 0 0 10px 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: medium;
    font-weight: 500;
}


/* ---классы оформления списков на заглавной--- */
/* Intro Text List - itl */
ul.itl,
ol.itl {
    list-style: square;
    color: #A17849;
    margin-left: 20px;
    padding-left: 10px;
    /* list-style: none; */
}

li.itl {
    margin: 0 0 10px 0;
    padding: 0;
    /* font-family: 'Open Sans', sans-serif; */
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: medium;
    font-weight: 500;
}

/* ---классы оформления списков на заглавной--- */



/* ---классы оформления списков в статье--- */


/* именованный список плана, чеклист  */

ol.plan li {
    list-style-position: inside;
    list-style-type: decimal;
    color: black;
    margin-left: 0px;
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 0px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1;
}

ol.arguments {
    margin-left: 30px;
    margin-right: 30px;
}

ol.arguments li {
    list-style-type: disc;
    list-style-position: outside;
    color: black;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    padding-left: 0px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/* именованный список плана, чеклист  */

li.plan {
    font-family: 'Open Sans', sans-serif;
    /*font-size: medium;*/
    line-height: 1;
    font-weight: 400;
    text-align: justify;
}


/* список с цифровым именованием */

ol.dignumber {
    margin-left: 30px;
    margin-right: 30px;
}

ol.dignumber li {
    list-style-type: decimal;
    list-style-position: outside;
    color: black;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    padding-left: 0px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/* список с буквенным именованием */

ol.letnumber {
    margin-left: 30px;
    margin-right: 30px;
}

ol.letnumber li {
    list-style-type: upper-alpha;
    list-style-position: outside;
    color: black;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    padding-left: 0px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}





/* стилизация таблиц */


/* двуцветная таблица duo color*/
table.duoclr {
    table-layout: fixed;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-style: normal;
    border-collapse: collapse;
}

/* заголовок */
table.duoclr caption {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-style: normal;
    padding: 6px;
    caption-side: top;
    color: black;
    text-align: left;
}

/* светлая ячейка */
table.duoclr td {
    background-color: #e3c89c;
    border-bottom: #682A18 solid 1px;
    padding-left: 10px;
}


/* задаем ширину столбцов таблицы */

/* столбец 30px */
table.duoclr col.var30 {
    width: 30px;
}

/* столбец 40px */
table.duoclr col.var40 {
    width: 40px;
}

/* столбец 70px */
table.duoclr col.var70 {
    width: 70px;
}

/* столбец 90px */
table.duoclr col.var90 {
    width: 90px;
}

/* столбец 135px */
table.duoclr col.var135 {
    width: 135px;
}

/* верхний заголовок */
/* общий стиль заголовка */
table.duoclr th {
    font-weight: 600;
    background-color: #b4c9d9;
    border-bottom: #682A18 solid 1px;
}

/* закругления угов заголовка */
table.duoclr th:first-child {
    border-top-left-radius: 10px;
}

table.duoclr th:last-child {
    border-top-right-radius: 10px;
}

/* темный цвет и шрифт последних ячеек в строке, rr-правая строка*/
table.duoclr tr.rr td:last-child {
    background-color: #b4c9d9;
    font-weight: 600;
}

/* темный цвет и тонкий шрифт последних ячеек в строке, rrd-правая строка темная*/
table.duoclr tr.rrd td:last-child {
    background-color: #b4c9d9;
    /* font-weight: 600; */
    /* padding-left: 15px; */
}

/* темный цвет и шрифт последних ячеек в строке, rrl-правая строка светлая*/
table.duoclr tr.rrl td:last-child {
    background-color: #b4c9d9;
    /* font-weight: 600; */
}

/* сдвиг текста впрво на 40px pr - padded row*/
table.duoclr tr.pr td:nth-child(2n),
tr.pr td:last-child {
    padding-left: 40px;
}


/* закругления угловых ячеек, отмена угловых нижних бордюров */
table.duoclr tr:first-child td:first-child {
    border-top-left-radius: 10px;
}

table.duoclr tr:first-child td:last-child {
    border-top-right-radius: 10px;
}

table.duoclr tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

table.duoclr tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

/* убираем подчеркивание нижней строки */
table.duoclr tr:last-child td {
    border-bottom: none;
}

/* двуцветная таблица завершение */





/* таблица три столбца */

table.three {
    table-layout: fixed;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-style: normal;
    border-collapse: collapse;
}

/* шапка таблицы */
table.three th.dark {
    background-color: #b4c9d9;
    border-bottom: #682A18 solid 1px;
    /* text-align: center; */
    font-weight: 600;
    padding-left: 20px;
}

/* левая ячейка заголовка */
table.three th.darkl {
    background-color: #b4c9d9;
    border-bottom: #682A18 solid 1px;
    /* text-align: center; */
    font-weight: 600;
    padding-left: 10px;
}

/* заголовок */
table.three caption {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-style: normal;
    padding: 6px;
    caption-side: top;
    color: black;
    text-align: left;
    /* letter-spacing: 1px; */
}

/* светлая ячейка без центрирования текста */
table.three td.light {
    /* background-color: #e3c89c; */
    border-bottom: #682A18 solid 1px;
    padding-left: 10px;
}

/* светлая ячейка со смещением текста */
table.three td.lightcntr {
    /* background-color: #e3c89c; */
    border-bottom: #682A18 solid 1px;
    padding-left: 20px;
}

/* темная ячейка */
table.three td.dark {
    /* background-color:#b4c9d9; */
    border-bottom: #682A18 solid 1px;
    text-align: center;
    font-weight: 600;
}

/* нижняя светлая левая ячейка без полосы */
table.three td.nlight {
    /* background-color: #e3c89c; */
    /* border-bottom: #682A18 solid 1px; */
    padding-left: 10px;
}

/* нижняя светлая центральная ячейка без полосы */
table.three td.nlightc {
    /* background-color: #e3c89c; */
    /* border-bottom: #682A18 solid 1px; */
    padding-left: 20px;
}


/* нижняя темная ячейка без полосы */
table.three td.ndark {
    /* background-color:#b4c9d9; */
    /* border-bottom: #682A18 solid 1px; */
    text-align: center;
    font-weight: 600;
    /* border-radius: 0 0 10px 0; */
}

/* красим столбцы таблицы и задаем размер */

/* широкий первый столбец */
table.three col.lc {
    /* background-color: #ffe8d4; */
    background-color: #e3c89c;
    width: 70px;
}

/* узкий столбец */
table.three col.lct {
    /* background-color: #ffe8d4; */
    background-color: #e3c89c;
    width: 40px;
}

table.three col.dc {
    /* background-color: #d7d9f2; */
    background-color: #b4c9d9;
    width: 30px;

}

/* более широкий темный столбец */
table.three col.dcw {
    /* background-color: #d7d9f2; */
    background-color: #b4c9d9;
    width: 80px;

}

/* более широкая темная ячейка */
table.three td.darkw {
    border-bottom: #682A18 solid 1px;
    font-weight: 400;
    text-align: left;
    padding-left: 5px;
}

/* более широкая нижняя темная ячейка без полосы */
table.three td.ndarkw {
    text-align: left;
    font-weight: 400;
    padding-left: 5px;
}

/* делаем скругление ячеек таблицы */

table.three th:first-child {
    border-radius: 10px 0 0 0;
}

table.three th:last-child {
    border-radius: 0 10px 0 0;
}

/* table.three tr:first-child td:last-child {
    border-top-right-radius: 10px;
} */

table.three tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

table.three tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

table.three tr td:last-child {
    border-right: none;
}

/* завершение стиля таблицы 3-х столбов */


/* таблица пояснения с тонкими линиями */

/* стиль таблицы внутри класса */
.datagrid table {
    border-collapse: collapse;
    text-align: left;
    width: 100%;
    table-layout: fixed;
}

/* сам класс div */
.datagrid {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    background: #fff;
    overflow: hidden;
    border: 1px solid #006699;
    border-radius: 10px;
}

/* отстуы внутри таблицы внутри класса */
.datagrid table td,
.datagrid table th {
    padding: 3px 10px;
}

/* задаем ширину столбцов */
.datagrid table col.lft {
    width: 100px;
}

.datagrid table col.rght {
    width: 100%;
}

/* оформляем все ячейки */
.datagrid table tbody td {
    border-left: 1px solid #E1EEF4;
    /* border-left: 1px solid #4784a0; */
    font-weight: normal;
}

/* темная ячейка  */
.datagrid table tbody .alt td {
    background: #b4c9d9;
}

.datagrid table tbody td:first-child {
    border-left: none;
}

.datagrid table tbody tr:last-child td {
    border-bottom: none;
}

/* завершение стиля таблицы пояснения с тонкими линиями */


/* таблица-граф */
table.ggraph {
    border-collapse: collapse;
    /* border-radius: 1em; */
    overflow: hidden;
    width: 100%;
    /* border-spacing: 0; */
}

/* заголовок */
table.ggraph caption {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-style: normal;
    padding: 6px;
    padding-left: 0px;
    caption-side: top;
    color: black;
    text-align: left;
    /* letter-spacing: 1px; */
}

table.ggraph td {
    padding: 0.1rem;
    background: #ddd;
    border-bottom: 4px solid white;
    /* line-height: 1; */
    padding-left: 1.5rem;
    /* background-color: #91ACC1; */
    color: black;
    font-weight: 700;
    background: linear-gradient(to left, #e66465, #9198e5);
    /* background: linear-gradient(to left, #6D9AB3, #ddd);  */
}


/* отсутпы спрва пять два десятка пять десятков одна сотня */
table.ggraph td.fp {
    clip-path: inset(0px 90% 0px 0px);
}

table.ggraph td.tdp {
    clip-path: inset(0px 75% 0px 0px);
}

table.ggraph td.fdp {
    clip-path: inset(0px 30% 0px 0px);
}

table.ggraph td.osp {
    clip-path: inset(0px 0% 0px 0px);
}
/* звершение таблицы-графа */

/* текущий пункт меню */

li.pressed {
    color: #363853;
}

/* маркированный список в статье с маркерами */
ul.zadachi li {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1;
    color: black;
}


/* область для организации статичного названия раздела */
.tematitle {
    width: 375px;
    /* border: black;
    border-width: 2px;
    border-style: dashed; */
}

/* название раздела над меню */
.tematitle h3 {
    /* background-color: #a17849b0; */
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(165, 42, 42, 0.801);
}

/* область самого меню */
.section {
    height: 200px;
    width: 375px;
    /* padding: 1rem; */
    overflow-y: auto;
    direction: ltr;
    scrollbar-color: #d4aa70 #e4e4e4;
    scrollbar-width: thin;
    /* border: rgb(223, 15, 15); */
    /* border-width: 2px;
            border-style: dotted; */
}

/* стиль ссылок в пунктах меню */
.section a {

    /* background-color: #eee; */
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    /* color: rgba(165, 42, 42, 0.801); */
    color: #A17849;
    display: block;
    /* padding: 5px; */
    padding-left: 15px;
    text-decoration: none;

}

/* при наведении мышкой */
.section a:hover {
    background-color: #ccc;
}

/* это активная текущая ссылка */
.section a.active {
    /* background-color: #4ACF50; */
    /* color: rgb(206, 143, 8); */
    color: #91ACC1;
    font-weight: 400;
}

.section a.active::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 7.5px;
    /* background-color: #A17849; */
    /* background-color: #ce8f08; */
    background-color: #91ACC1;
    margin-right: 5px;
    opacity: 0.6;
}



/* ширина скроллбара */
.section::-webkit-scrollbar {
    width: 12px;
}

/* свойства всей полосы прокрутки */
.section::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 100px;
}

/* ползунок скроллбара */
.section::-webkit-scrollbar-thumb {
    border-radius: 100px;
    border: 6px solid rgba(0, 0, 0, 0.18);
    border-left: 0;
    border-right: 0;
    background-color: #91ACC1;
}




/* плавающая надпись справа */
.lowstick {
    margin-top: 200px;
    position: -webkit-sticky;
    position: sticky;
    top: 300px;
    border-color: #91ACC1;
    border-style: solid;
    border-radius: 8px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-style: italic;
}


/* масштабирование изображения */

/* CSS */
/*************************************
* Базовые стили lightbox. 
* по умолчанию 'opacity' в значении '0'.
*/
a img {
    border: none;
    /* убираем рамку */
}

.lightbox {
    /** определяем базовый стиль lightbox */
    position: fixed;
    overflow: hidden;
    z-index: 9999;
    width: 0;
    height: 0;
    text-align: center;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
}

.lightbox img {
    /** базовый стиль изображений lightbox*/
    width: 95%;
    max-width: 1000px;
    height: auto;
    margin: 5% auto;
    /** полная прозрачность изначально */
    opacity: 0;
    border: 1px solid #4D4D4D;
    /** тени у картинок - это по желанию */
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    /* трансформация прозрачности при открытии  */
    -webkit-transition: opacity 500ms ease-in;
    -moz-transition: opacity 500ms ease-in;
    transition: opacity 500ms ease-in;
}

.lightbox:target {
    /** активируем lightbox при нажатии */
    width: auto;
    height: auto;
    bottom: 0;
    right: 0;
    /** удаляем контур по умолчанию */
    outline: none;
}

.lightbox:target img {
    /** делаем элемент непрозрачным  */
    opacity: 1;
}

/** стиль миниатюр изображения */
.thumb img {
    width: 100%;
    margin: 2%;
    /* box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.6); */
}