/* Стиль основного текста на страницах */

body {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #686868;
}


/* Класс корпоративного голубого цвета */

.corporate-color {
    color: #5878A8;
}


/* Класс для выравнивания блока по горизонтали, 
обычно для картинок */

.center-block-horizontal {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* Полоса с логотипом, названием компании и навигационным меню  */

.navbar {
    background-color: #5878A8;
    /* Уберём стандартный отступ в 20px под навбаром, т.к. слайдер будет начинаться сразу под ним */
    margin-bottom: 0px;
}


/* Кнопка с тремя полосками, которая появляется в мобильном виде */

.navbar-toggle {
    position: relative;
    float: right;
    padding: 3px 8px;
    margin-top: 6px;
    margin-right: 10px;
    margin-bottom: 6px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 5px;
    border-color: white;
}


/* Классы трёх полосок кнопки в мобильном виде */

.bar1,
.bar2,
.bar3 {
    width: 24px;
    height: 2px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}


/* Трансформации трёх полосок кнопки в мобильном виде в процессе нажатия */

.change .bar1 {
    transform: translate(0px, 8px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0px, -8px) rotate(45deg);
}


/* Бренд, состоящий из логотипа и названия компании в две строки */

.navbar-brand {
    /* Делаем через flex grid, так проще разметка */
    display: flex;
    padding: 5px;
    font-weight: bold;
    /* Цвет названия компании без наведения курсора мыши - немного темнее белого, т.к. прозрачность 0.8 */
    color: rgba(255, 255, 255, 0.8);
}

.navbar-brand-logo {
	width: 40px;
}

#navbar-brand-logo-original {
    position: absolute;
    opacity: 1;

    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

#navbar-brand-logo-christmas {
	position: absolute;
    opacity: 0;
	
    -webkit-transition: opacity 1.4s ease-in-out;
    -moz-transition: opacity 1.4s ease-in-out;
    -o-transition: opacity 1.4s ease-in-out;
    transition: opacity 1.4s ease-in-out;
}


/* Цвет названия компании при наведении курсора мыши */

a.navbar-brand:hover,
a.navbar-brand:focus {
    /* Белый непрозрачный */
    color: rgba(255, 255, 255, 1);
    /* Анимация изменения цвета */
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}


/* Верхняя строка названия бренда */

.navbar-brand-upper-line {
    font-size: 14px;
    /* Из-за разного размера шрифта нужно немого поднять обе надписи вверх */
    margin-top: -1px;
    /* Расстояние от текста до логотипа */
    margin-left: 10px;
}


/* Нижняя строка названия бренда */

.navbar-brand-bottom-line {
    font-size: 25px;
    /* Расстояние от текста до логотипа */
    margin-left: 10px;
}


/* При движении по пунктам меню в мобильном виде не выделять их фоновой полосой */

#navbar-pages a:hover,
#navbar-pages a:active,
#navbar-pages a:focus {
    /* Прозрачный цвет фона пункта меню */
    background-color: rgba(0, 0, 0, 0);
}


/* Для меню обнуляем отступы, т.к. ниже заданы глоабальные значения */

#navbar-pages nav ul li {
    margin: 0 0 0 0;
}


/* Текст пунктов меню */

#navbar-pages nav ul li a {
    font-size: 20px;
    /* Не жирный, т.к. ссылки по умолчанию жирные */
    font-weight: normal;
    /* Не чисто белый, немного прозрачности */
    color: rgba(255, 255, 255, 0.8);
    /* Анимация */
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}


/* Полоса, которой подчёркивается пукнт меню на который наведена мышь */

#navbar-pages nav ul li a:after {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 8px;
    left: 10px;
    right: 10px;
    background-color: white;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


/* При наведении мыши на пункт меню */

#navbar-pages nav ul li a:hover {
    /* Для выделения установим абсолютно белый цвет шрифта меню */
    color: white;
    /* Слегка подсветим выделенный пункт меню в мобильном виде (будет отключено для десктопа) */
    background-color: rgba(255, 255, 255, 0.2);
}


/* Выделенный при помощи класса "active" элемент меню отличается белым шрифтом */

#navbar-pages nav ul li.active a {
    text-decoration: none;
    color: white;
}


/* и подчёркивается (для десктопа, в мобильном - отключено)  */

#navbar-pages nav ul li.active a:after {
    /* Не будем подчёркивать активный пункт меню в мобильном виде */
    visibility: hidden;
}

@media (min-width: 768px) {
    #navbar-pages nav ul li a:hover:after,
    #navbar-pages nav ul li.active a:after {
        /* выше было запрещено показывать подчёривание для пунктов меню для мобильного вида,
        а тут разрешается для десктопа, а так же, если вид не мобильный - подчеркнём активный
        пункт меню */
        visibility: visible;
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        -o-transform: scaleX(1);
        transform: scaleX(1);
    }
    #navbar-pages nav ul li a:hover {
        /* Уберём подсветку выделенный пункт меню, сделаем полностью прозачным фон не в мобильном виде */
        background-color: rgba(0, 0, 0, 0);
    }
}


/* Параметры слайдера */

.carousel-container {
    /* Уберём стандартные отступы по 15px по краям container-fluid для карусели */
    padding: 0px;
}


/* Стиль заголовков */

h1,
h2,
h3,
h4 {
    color: #5878A8;
}


/* Стиль для анимирования плавного появления блоков класса animate-box
по умолчанию они прозрачные, при появлении на экране - проявляются */

.js .animate-box {
    opacity: 0;
}

a {
    color: #5878A8;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: rgb(49, 69, 99);
    text-decoration: underline;
    outline: none;
}

.a_blue_no_underline {
    color: #5878A8;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-size: 23px;
    font-weight: bold;
    text-decoration: none;
}

.a_blue_no_underline:hover,
.a_blue_no_underline:active,
.a_blue_no_underline:focus {
    color: #26487B;
    outline: none;
    text-decoration: none;
}

.a_icon {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}

.a_icon:hover,
.a_icon:active,
.a_icon:focus {
    outline: none;
    text-decoration: none;
}

.col-container {
    display: table;
    /* Make the container element behave like a table */
    width: 100%;
    /* Set full-width to expand the whole page */
}

.col {
    display: table-cell;
    /* Make elements inside the container behave like table cells */
}


/* If the browser window is smaller than 600px, make the columns stack on top of each other */

@media only screen and (max-width: 600px) {
    .col {
        display: block;
        width: 100%;
    }
}


/* Add some padding inside the card container */


/* .container {
    padding: 2px 16px;
}
 */


/* ПРАЙСИНГ */

.price-box {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    text-align: center;
    padding: 30px;
    margin: 15px;
    background: white;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    /* position: relative; */
}


/* On mouse-over, add a deeper shadow */

.price-box:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}


/* .price-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 40px;
    position: relative;
}

.pricing {
    display: block;
    float: left;
} */


/* ФУТЕР И КОПИРАЙТ */

footer {
    padding: 1em 0;
    float: left;
    width: 100%;
    position: relative;
    background: #000;
}

@media screen and (max-width: 768px) {
    footer {
        padding: 1em 0;
    }
}

footer h2,
footer h3,
footer h4 {
    color: #fff;
}

footer h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: bold;
}

footer .btn {
    color: #fff;
}

footer .float {
    float: left;
    margin-right: 10%;
}

footer ul {
    padding: 0;
    margin: 0;
}

footer ul li {
    padding: 0;
    margin: 0 0 10px 0;
    list-style: none;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none !important;
}

footer ul li a:hover {
    color: #fff;
}

copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    clear: both;
    margin-top: 40px !important;
    padding: 40px 0 0 0;
}

copyright span {
    display: block;
}

@media screen and (max-width: 480px) {
    copyright {
        text-align: left !important;
    }
    copyright span {
        display: inline;
    }
}

@media (min-width: 768px) {
    .row.equal {
        display: flex;
        /*    flex-wrap: wrap; */
    }
}


/* add this for full height column content */


/* .equal > div[class*='col-'] {  
  display: flex;
  flex-direction: column;
}
 */

.outer {
    width: 1px;
    height: 100%;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.inner {
    position: absolute;
    width: 100%;
    height: 40%;
    background: grey;
    top: 30%;
    box-shadow: 0px 0px 30px 20px grey;
}

#map {
    height: 500px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    #map {
        height: 400px;
    }
}

@media screen and (max-width: 480px) {
    #map {
        height: 300px;
    }
}

.top-bottom-container {
    margin-top: 1em;
    margin-bottom: 1em;
}

.padding-bottom-header {
    padding-bottom: 0.5em;
}

.contact-info {
    margin-bottom: 3em;
    /* padding: 0; */
}

.contact-info li {
    list-style: none;
    margin: 0 0 1.5em 0;
    position: relative;
    padding-left: 2.5em;
}

.contact-info li i {
    /* TODO: Тут не очень хорошо сделано, иконки могут быть не правильного размера и 
    неправильно выровнены в разных браузерах, лучше убрать absolute и сделать 
    стиль текста inline, добавить отступ между блоком текста и иконкой */
    position: absolute;
    top: 0.3em;
    left: 0;
    color: #5878A8;
}

.contact-info li a {
    color: #5878A8;
}

.services-info {
    margin-bottom: 40px;
}

.services-info li {
    list-style: none;
    margin: 0 0 1.5em 0;
    position: relative;
    padding-left: 2em;
    /*     list-style: none;
    margin: 0 0 1.5em 0; */
}

.services-info li i {
    position: absolute;
    top: 0.3em;
    left: 0;
    color: #5878A8;
    /*     color: #5878A8;
    margin-right: 10px; */
}

@media screen and (max-width: 768px) {
    .services-info,
    .contact-info {
        padding-left: 0px;
    }
}


/* Цвета при выделении текста мышью */

::-webkit-selection {
    color: #fff;
    background: rgb(88, 120, 168);
}

 ::-moz-selection {
    color: #fff;
    background: rgb(88, 120, 168);
}

 ::selection {
    color: #fff;
    background: rgb(88, 120, 168);
}


/* Кнопки */

.btn {
    margin-right: 2px;
    margin-bottom: 2px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 10px 20px;
}

.btn-activities {
    margin-right: 5px;
    margin-bottom: 5px;
    width: 210px;
    padding: 10px 20px;
    font-size: 16px;
}

.btn-original {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn.btn-sm {
  padding: 5px 20px;
}

.btn.btn-md {
    padding: 10px 20px !important;
}

.btn.btn-lg {
    padding: 18px 36px !important;
}

.btn:hover,
.btn:active,
.btn:focus {
    box-shadow: none !important;
    outline: none !important;
}

.btn-primary {
    background: #5878A8;
    color: #fff;
    border: 2px solid #5878A8;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #5878A8 !important;
    border-color: #5878A8 !important;
}

.btn-primary.btn-outline {
    background: transparent;
    color: #5878A8;
    border: 2px solid #5878A8;
}

.btn-primary.btn-outline:hover,
.btn-primary.btn-outline:focus,
.btn-primary.btn-outline:active {
    background: #5878A8;
    color: #fff;
}

.btn-success {
    background: #5cb85c;
    color: #fff;
    border: 2px solid #5cb85c;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background: #4cae4c !important;
    border-color: #4cae4c !important;
}

.btn-success.btn-outline {
    background: transparent;
    color: #5cb85c;
    border: 2px solid #5cb85c;
}

.btn-success.btn-outline:hover,
.btn-success.btn-outline:focus,
.btn-success.btn-outline:active {
    background: #5cb85c;
    color: #fff;
}

.btn-info {
    background: #5bc0de;
    color: #fff;
    border: 2px solid #5bc0de;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active {
    background: #46b8da !important;
    border-color: #46b8da !important;
}

.btn-info.btn-outline {
    background: transparent;
    color: #5bc0de;
    border: 2px solid #5bc0de;
}

.btn-info.btn-outline:hover,
.btn-info.btn-outline:focus,
.btn-info.btn-outline:active {
    background: #5bc0de;
    color: #fff;
}

.btn-warning {
    background: #f0ad4e;
    color: #fff;
    border: 2px solid #f0ad4e;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
    background: #eea236 !important;
    border-color: #eea236 !important;
}

.btn-warning.btn-outline {
    background: transparent;
    color: #f0ad4e;
    border: 2px solid #f0ad4e;
}

.btn-warning.btn-outline:hover,
.btn-warning.btn-outline:focus,
.btn-warning.btn-outline:active {
    background: #f0ad4e;
    color: #fff;
}

.btn-danger {
    background: #d9534f;
    color: #fff;
    border: 2px solid #d9534f;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    background: #d43f3a !important;
    border-color: #d43f3a !important;
}

.btn-danger.btn-outline {
    background: transparent;
    color: #d9534f;
    border: 2px solid #d9534f;
}

.btn-danger.btn-outline:hover,
.btn-danger.btn-outline:focus,
.btn-danger.btn-outline:active {
    background: #d9534f;
    color: #fff;
}

.btn-outline {
    background: none;
    border: 2px solid gray;
    font-size: 16px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
    box-shadow: none;
}

.btn.with-arrow {
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.btn.with-arrow i {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -8px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.btn.with-arrow:hover {
    padding-right: 50px;
}

.btn.with-arrow:hover i {
    color: #fff;
    right: 18px;
    visibility: visible;
    opacity: 1;
}


/* Общий контейнер для текста для страницы "О компании" */

.activities-container {
    /*   color: black; */
    padding-bottom: 30px;
    padding-top: 30px;
    text-align: justify;
}


/* Контейнер светлосинего цвета */

.activities-container-lightblue {
    background: rgba(88, 120, 168, 0.2);
}


/* Контейнер белого цвета */

.activities-container-white {
    background: white;
}


/* Заголовок контейнера текста для страницы "О компании" */

.activities-container-header {
    margin-top: 0px;
    margin-bottom: 25px;
}

.activities-container-text {
    padding-right: 15px;
    padding-left: 15px;
}

.activities-list li {
    margin: 0 0 1em 0;
}

.activities-img {
    width: 50%;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .activities-img {
        width: 85%;
    }
}


/* Тут был баг в китайском браузере с в сочетанием flex & wrap, 
но при помощи @media (min-width: 992px) его удалось обойти */

.activities-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .activities-row {
        flex-wrap: nowrap;
    }
}


/* Карточки для людей в организации */

.employees-container {
    margin-bottom: 2em;
}

.employees-card-row {
    flex-wrap: wrap;
    justify-content: center;
    /*    margin-top: 2em; */
}

.employees-card {
    /*     width: 290px; */
    box-shadow: 2px 2px 10px 4px rgba(88, 120, 168, 0.3);
    transition: 0.3s;
    /*     margin-bottom: 30px;
    margin-right: 30px;
    margin-left: 30px;
 */
    margin: 1em;
    padding-left: 0px;
    padding-right: 0px;
    /* background: rgba(88, 120, 168, 0.2); */
}

.employees-card:hover {
    box-shadow: 4px 4px 15px 4px rgba(88, 120, 168, 0.5);
}

.employees-card-container {
    padding: 20px 20px;
    text-align: left;
}

.employees-card-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #5878A8;
}

.employees-card-position {
    text-align: left;
    font-weight: normal;
    padding: 10px 0px;
}

.employees-card-contacts-margin {
    margin-left: 0.6em;
}

#goToTopButton {
    height: 4.2em;
    width: 4.2em;
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgba(88, 120, 168, 0.4);
    color: white;
    cursor: pointer;
    border-radius: 10px;
}

#goToTopButton:hover {
    background-color: #5878A8;
}

#downloadPDFButton {
    height: 4.2em;
    width: 4.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgba(88, 120, 168, 0.4);
    color: white;
    cursor: pointer;
    border-radius: 10px;
}


/* 
#downloadPDFButton {

    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: center;
 
    position: fixed;
 
    height: 3.6em;
    width: 3.6em;
    bottom: 20px;

    right: 20px;

    z-index: 99;

    border: none;
 
    outline: none;

    background-color: rgba(88, 120, 168, 0.4);
 
    color: white;

    cursor: pointer;
  
    font-size: 1.2em;
    padding-right: 0.4em;
    padding-left: 0.4em;

    border-radius: 10px;
  
} */

#downloadPDFButton:hover {
    background-color: #5878A8;
}

.products-fast-links-row-item {
    width: 8.5em;
    margin-right: 0.5em;
    margin-left: 0.5em;
    margin-top: 1.5em;
    /*     margin-bottom: 0.7em; */
}

.products-fast-links-img {
    height: 3em;
    margin-bottom: 0.1em;
}

.products-fast-links-row {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
}

.products-fast-links-row-label {
    font-size: 1.2em;
}

.products-chapter-label-container {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 1em;
    margin-bottom: 1.5em;
}

.products-chapter-label {
    font-size: 2.2em;
    text-align: center;
    margin-top: 0px;
    padding-bottom: 0.2em;
    padding-top: 0.1em;
    background: rgba(88, 120, 168, 0.2)
}

.product-card-row {
    flex-wrap: wrap;
    /*   justify-content: center; */
    justify-content: flex-start;
}

.product-card {
    /* Ширина блока, высота будет рассчитана автоматически */
    /*     width: 350px; */
    width: auto;
    /* Применим flex для выравнивания соседних карточек по высоте */
    display: flex;
    /* Размещать элементы содержимого карточки будем вдоль вертикальной оси, а не по горизонтали */
    flex-direction: column;
    /* Заполним всё пространство от самого низа до самого верха карточки */
    justify-content: space-between;
    /* Отцентруем элементы, если не ставить, то они будут выравнены по ширине,
    кнопка "Подробнее" займёт всю ширину карточки */
    align-items: center;
    /* Выравнивание текста внутри карточки по центру */
    text-align: center;
    /* Расстояние между карточками */
    margin-bottom: 2em;
    margin-left: 1em;
    margin-right: 1em;
    margin-top: 0em;
    /* Отступ внутри от краёв карточки */
    padding: 2em;
    /* Тень и время трансформации */
    box-shadow: 2px 2px 10px 4px rgba(88, 120, 168, 0.2);
    transition: 0.3s;
    border-radius: 20px;
}

@media (min-width: 768px) {
    .product-card {
        width: 45%;
    }
}

@media (min-width: 992px) {
    .product-card {
        width: 30%;
    }
}

.product-card-row a {
    text-decoration: none;
}

.product-card:hover {
    box-shadow: 4px 4px 15px 4px rgba(88, 120, 168, 0.3);
}

.product-card-img {
    margin-bottom: 10px;
}

.product-card-name {
    margin-bottom: 0px;
    font-size: 1.8em;
}

.product-card-label {
    margin-bottom: 20px;
    font-size: 1em;
    font-weight: normal;
    text-decoration: none;
    color: #7f7f7f;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}


/* canvas {
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
} */

canvas {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 999999;
    pointer-events: none;
    -moz-pointer-events: none;
    -webkit-pointer-events: none;
    -o-pointer-events: none;
    /* Для snow5.js */
    /* position: fixed; */
    /* Для остальных  */
    position: absolute;
}


/* Общий вид главного заголовка (перед титульной картинкой) всех страниц с описаниями продуктов */

.main-product-header-centered {
    text-align: center;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}


/* Основной заголовок остальных разделов всех страниц с описанием продуктов  */

.chapter-product-header {
    margin-top: 1em;
    margin-bottom: 1em;
}


/* Блок текста на каждой странице с продуктами */

.general-item-block {
    margin-bottom: 1.5em;
}


/* Класс векторных иконок (обычно "Преимущества") на страницах с описанием продуктов */

.benefits-icon {
    height: 60px;
}


/* Карточка с преимуществами */

.benefits-card-row {
    display: flex;
    flex-wrap: wrap;
}

.benefits-card {
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: center;
}

.benefits-header {
    margin-top: 1.4em;
    margin-bottom: 1.4em;
}


/* Общее правило для отступов в списке */

li {
    margin: 0.6em 0 0 0;
}


/* .indenttable {
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 1em;
    margin-bottom: 2em;
} */

.contnone {
    display: none;
}

.contnonecol {
    color: black;
}

.small-product-image {
    /*     margin-top: 1em;
    margin-bottom: 5em;*/
    margin: 2em;
    display: block;
    height: auto;
    /*   max-width: 100%; */
    width: 100%;
    max-width: 220px;
    /* width: 220px; */
}

.gallery-images {
    /* margin: 1em 1em; */
    margin: 1em auto;
    display: none;
}


/* Используется только в таблицах характеристик, можно переделать */

p {
    margin-bottom: 1.7em;
}