@charset "UTF-8";
/**
 * Compass
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/**
 * Конфигурация темы
 */
/**
 * Основные цвета сайта
 */
/**
 * Название цветов использующихся в темах
 */
/**
 * Настройки шрифтов
 */
/**
 * Высота заголовка
 */
/**
 * Стандартный размер элементов формы
 */
/**
 * Дополнительные размеры элементов формы
 */
/**
 * Цвета модификаторы
 */
/**
 * Иконки
 */
/**
 * Функции ядра
 */
/**
 * Easing функция по названию
 *
 * @param  {string}  $name            - название функции
 *
 * @return  {color}  Возвращает функцию или генерирует предупреждение и возвращает null
 */
/**
 * Поиск следующего значения в мапе
 *
 * @param  {map}     $map                    - Мап для поиска
 * @param  {string}  $key                    - Ключ предыдущего элемента
 * @param  {mixed}   $fallback    [false]    - Резервное значение, если следующего элемента нет
 *
 * @return  {mixed}  Значение следующего элемента или значение параметра $fallback
 */
/**
 * Индекс последнего вхождения
 *
 * @param  {string}  $string            - Строка для поиска
 * @param  {string}  $needle            - Поисковая строка
 *
 * @return  {string}  Индекс строки или null
 */
/**
 * Заполнение нулями
 *
 * @param  {number}  $i                 - Числовое значение
 * @param  {number}  $length            - Длина числа
 *
 * @return  {string}  Число с заполненными нулями, например 0023
 */
/**
 * Замена значения в строке
 *
 * @param  {string}  $string             - Строка для замены
 * @param  {string}  $search             - Строка которую надо заменить
 * @param  {string}  $replace            - Строка замены
 *
 * @return  {string}
 */
/**
 * Удаление единицы измерения
 *
 * @param  {number}  $number            - Число
 *
 * @return  {number}
 */
/**
 * Цвет из конфигурации или из списка материальных цветов
 *
 * @param  {string}  $name            - название цвета
 *
 * @return  {color}  Возвращает цвет или генерирует предупреждение и возвращает null
 */
/**
 * Модификация цвета
 *
 * @param  {color}   $color            - Цвет
 * @param  {string}  $state            - Состояние цвета (hover, active, disabled)
 *
 * @return  {color}  Возвращает модифицированный цвет или вызывает ошибку
 */
/**
 * Список всех цветов
 *
 * @return  {list}
 */
/**
 * Название шрифта
 *
 * @param  {string}  $type            - тип шрифта (regular, bold и т.д.)
 *
 * @return  {string}  Возвращает название шрифта или null и генериурет предупреждение, если такой
 *                    шрифт не найден
 */
/**
 * Размер шрифта по умолчанию
 *
 * @return  {number}  Размер шрифта указанного в конфигурации
 */
/**
 * Список всех шрифтов
 *
 * @return  {list}
 */
/**
 * Получение размера инпут элемента
 *
 * @param  {string}  $name            - название размера
 *
 * @return  {color}  Возвращает размер или генерирует предупреждение и возвращает null
 */
/**
 * Список экранов
 *
 * @return  {map}
 */
/**
 * Миксины ядра
 */
/**
 * Полоска прокрутки
 *
 * @param  {number}  $size     [8px]               - Размер полоски прокрутки (высота или ширина)
 * @param  {color}   $color    [rgba(#9e9e9e, .7)] - Цвет в состоянии покоя
 * @param  {color}   $hover    [rgba(#fff, .5)]    - Цвет при наведении
 *
 * @return  {css}
 */
/**
 * Цвет ползунка прокрутки
 *
 * @param  {number}  $radius    [8px]      - Радиус скругления
 * @param  {color}   $color     [false]    - Цвет в состоянии покоя
 * @param  {color}   $hover     [false]    - Цвет при наведении
 *
 * @return  {css}
 */
/**
 * Невлезающий текст обрезается многоточием (только одна строка)
 *
 * @return  {css}
 */
/**
 * Обрезка невлезающего многострочного текста многоточием.
 *
 * @param  {number}   $lines                          - Количество строк
 * @param  {color}    $color          [#fff]          - Цвет перекрытия текста
 * @param  {number}   $font-size      [$font-size]    - Размер шрифта
 * @param  {number}   $line-height    [1.25]          - Высота строки в em
 * @param  {boolean}  $as-link        [false]         - Отображать текст как ссылку
 *
 * @return  {css}  Выводит стиль для div > span > текст. Стиль применять к div.
 */
/**
 * Анимация бесконечного прогрессбара
 *
 * @param      {color}   $color  [rgba(#fff, .3)]  - цвет линий прогрессбара
 *
 * @return     {css}  Возвращает код анимации прогрессбара (заменяет background-image)
 */
/**
 * Анимация спиннера
 *
 * @return     {css}  Возвращает код для анимации объекта в который он встроен
 */
/**
 * Плавный переход между состояниями элемента
 *
 * @param      {list}  $target          - CSS свойство для плавного перехода
 *
 * @return     {css}   Возвращает код анимации transition
 */
/**
 * Декларирование веб-шрифтов
 *
 * @param  {string}  $font-name            - Название семейства шрифта
 * @param  {string}  $eot                  - Путь к шрифту в формате eot
 * @param  {string}  $woff                 - Путь к шрифту в формате woff
 * @param  {string}  $ttf                  - Путь к шрифту в формате ttf
 * @param  {string}  $svg                  - Путь к шрифту в формате svg
 *
 * @return  {css}
 */
/**
 * Применение кода для списка экранов
 *
 * @param  {list}  $sizes            - Список экранов
 *
 * @return  {css}  Выводит стиль заданный в content, если размер не найден, то выводит ошибку
 */
/**
 * Применение кода только для определенного экрана
 *
 * @param  {string}  $size            - Размер экрана
 *
 * @return  {css}  Выводит стиль заданный в content, если размер не найден, то выводит ошибку
 */
/**
 * Стандартная конфигурация ядра
 */
/**
 * Easing функции анимаций
 */
/**
 * Тайминги анимации
 */
/**
 * Основные цвета
 */
/**
 * Цвета тем
 */
/**
 * Таблица цветов материального дизайна
 */
/**
 * Размер шрифта по умолчанию (для body)
 */
/**
 * Список шрифтов
 */
/**
 * Путь к файлам иконок (относительно css)
 */
/**
 * Стандартный размер элементов формы
 */
/**
 * Дополнительные размеры элементов формы
 */
/**
 * Цвета модификаторы
 */
/**
 * Список размеров экранов (с маленького до большого)
 */
/**
 * Диапазоны размеров экранов устройств
 */
/**
 * Ширина прокрутки умноженное на 2 для двух сторон (чтобы не появилась горизонтальная прокрутка)
 */
/**
 * Утилиты ядра
 */
/**
 * Шрифты
 */
@font-face {
  font-family: "Manrope-Regular";
  src: url("../fonts/manrope/Manrope-Regular.eot");
  src: url(../fonts/manrope/Manrope-Regular.eot?#iefix) format("embedded-opentype"), url("../fonts/manrope/Manrope-Regular.woff") format("woff"), url("../fonts/manrope/Manrope-Regular.ttf") format("truetype"), url("../fonts/manrope/Manrope-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: "Manrope-Bold";
  src: url("../fonts/manrope/Manrope-Bold.eot");
  src: url(../fonts/manrope/Manrope-Bold.eot?#iefix) format("embedded-opentype"), url("../fonts/manrope/Manrope-Bold.woff") format("woff"), url("../fonts/manrope/Manrope-Bold.ttf") format("truetype"), url("../fonts/manrope/Manrope-Bold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: "Manrope-Medium";
  src: url("../fonts/manrope/Manrope-Medium.eot");
  src: url(../fonts/manrope/Manrope-Medium.eot?#iefix) format("embedded-opentype"), url("../fonts/manrope/Manrope-Medium.woff") format("woff"), url("../fonts/manrope/Manrope-Medium.ttf") format("truetype"), url("../fonts/manrope/Manrope-Medium.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: "Manrope-Light";
  src: url("../fonts/manrope/Manrope-Light.eot");
  src: url(../fonts/manrope/Manrope-Light.eot?#iefix) format("embedded-opentype"), url("../fonts/manrope/Manrope-Light.woff") format("woff"), url("../fonts/manrope/Manrope-Light.ttf") format("truetype"), url("../fonts/manrope/Manrope-Light.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: "Manrope-SemiBold";
  src: url("../fonts/manrope/Manrope-SemiBold.eot");
  src: url(../fonts/manrope/Manrope-SemiBold.eot?#iefix) format("embedded-opentype"), url("../fonts/manrope/Manrope-SemiBold.woff") format("woff"), url("../fonts/manrope/Manrope-SemiBold.ttf") format("truetype"), url("../fonts/manrope/Manrope-SemiBold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: "Manrope-ExtraBold";
  src: url("../fonts/manrope/Manrope-ExtraBold.eot");
  src: url(../fonts/manrope/Manrope-ExtraBold.eot?#iefix) format("embedded-opentype"), url("../fonts/manrope/Manrope-ExtraBold.woff") format("woff"), url("../fonts/manrope/Manrope-ExtraBold.ttf") format("truetype"), url("../fonts/manrope/Manrope-ExtraBold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: auto;
}

/**
 * Установка настроек для глобальных объектов
 */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

/**
 * Корневой элемент
 */
html {
  height: 100%;
  min-height: 100%;
  font-size: 16px;
  font-family: Manrope-Regular, Arial;
}

body {
  position: relative;
  height: 100%;
  min-height: 100%;
  color: #faf6f2;
  background-color: #212132;
}

/**
 * Цвет выделения текста на странице (только отдельно)
 */
::selection {
  color: #212132;
  background: #1976d2;
}

::-moz-selection {
  color: #212132;
  background: #1976d2;
}

/**
 * Смена цвета для заполнителей input элементов (только отдельно)
 */
::-webkit-input-placeholder {
  color: #adb5bd;
}

:-moz-placeholder {
  color: #adb5bd;
}

::-moz-placeholder {
  color: #adb5bd;
}

:-ms-input-placeholder {
  color: #adb5bd;
  opacity: 1;
}

/**
 * Вывод правил видимости
 *
 * @param  {string}  $postfix            - Постфикс
 *
 * @return  {css}
 */
.display_block {
  display: block !important;
}

.display_inline {
  display: inline !important;
}

.display_inline-block {
  display: inline-block !important;
}

.display_inline-table {
  display: inline-table !important;
}

.display_inline-flex {
  display: inline-flex !important;
}

.display_flex {
  display: flex !important;
}

.display_list-item {
  display: list-item !important;
}

.display_none {
  display: none !important;
}

.display_run-in {
  display: run-in !important;
}

.display_table {
  display: table !important;
}

.display_table-caption {
  display: table-caption !important;
}

.display_table-cell {
  display: table-cell !important;
}

.display_table-column {
  display: table-column !important;
}

.display_table-column-group {
  display: table-column-group !important;
}

.display_table-footer-group {
  display: table-footer-group !important;
}

.display_table-header-group {
  display: table-header-group !important;
}

.display_table-row {
  display: table-row !important;
}

.display_table-row-group {
  display: table-row-group !important;
}

@media screen and (max-width: 739px) {
  .display-xs_block {
    display: block !important;
  }
  .display-xs_inline {
    display: inline !important;
  }
  .display-xs_inline-block {
    display: inline-block !important;
  }
  .display-xs_inline-table {
    display: inline-table !important;
  }
  .display-xs_inline-flex {
    display: inline-flex !important;
  }
  .display-xs_flex {
    display: flex !important;
  }
  .display-xs_list-item {
    display: list-item !important;
  }
  .display-xs_none {
    display: none !important;
  }
  .display-xs_run-in {
    display: run-in !important;
  }
  .display-xs_table {
    display: table !important;
  }
  .display-xs_table-caption {
    display: table-caption !important;
  }
  .display-xs_table-cell {
    display: table-cell !important;
  }
  .display-xs_table-column {
    display: table-column !important;
  }
  .display-xs_table-column-group {
    display: table-column-group !important;
  }
  .display-xs_table-footer-group {
    display: table-footer-group !important;
  }
  .display-xs_table-header-group {
    display: table-header-group !important;
  }
  .display-xs_table-row {
    display: table-row !important;
  }
  .display-xs_table-row-group {
    display: table-row-group !important;
  }
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .display-sm_block {
    display: block !important;
  }
  .display-sm_inline {
    display: inline !important;
  }
  .display-sm_inline-block {
    display: inline-block !important;
  }
  .display-sm_inline-table {
    display: inline-table !important;
  }
  .display-sm_inline-flex {
    display: inline-flex !important;
  }
  .display-sm_flex {
    display: flex !important;
  }
  .display-sm_list-item {
    display: list-item !important;
  }
  .display-sm_none {
    display: none !important;
  }
  .display-sm_run-in {
    display: run-in !important;
  }
  .display-sm_table {
    display: table !important;
  }
  .display-sm_table-caption {
    display: table-caption !important;
  }
  .display-sm_table-cell {
    display: table-cell !important;
  }
  .display-sm_table-column {
    display: table-column !important;
  }
  .display-sm_table-column-group {
    display: table-column-group !important;
  }
  .display-sm_table-footer-group {
    display: table-footer-group !important;
  }
  .display-sm_table-header-group {
    display: table-header-group !important;
  }
  .display-sm_table-row {
    display: table-row !important;
  }
  .display-sm_table-row-group {
    display: table-row-group !important;
  }
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .display-md_block {
    display: block !important;
  }
  .display-md_inline {
    display: inline !important;
  }
  .display-md_inline-block {
    display: inline-block !important;
  }
  .display-md_inline-table {
    display: inline-table !important;
  }
  .display-md_inline-flex {
    display: inline-flex !important;
  }
  .display-md_flex {
    display: flex !important;
  }
  .display-md_list-item {
    display: list-item !important;
  }
  .display-md_none {
    display: none !important;
  }
  .display-md_run-in {
    display: run-in !important;
  }
  .display-md_table {
    display: table !important;
  }
  .display-md_table-caption {
    display: table-caption !important;
  }
  .display-md_table-cell {
    display: table-cell !important;
  }
  .display-md_table-column {
    display: table-column !important;
  }
  .display-md_table-column-group {
    display: table-column-group !important;
  }
  .display-md_table-footer-group {
    display: table-footer-group !important;
  }
  .display-md_table-header-group {
    display: table-header-group !important;
  }
  .display-md_table-row {
    display: table-row !important;
  }
  .display-md_table-row-group {
    display: table-row-group !important;
  }
}

@media screen and (min-width: 1220px) {
  .display-lg_block {
    display: block !important;
  }
  .display-lg_inline {
    display: inline !important;
  }
  .display-lg_inline-block {
    display: inline-block !important;
  }
  .display-lg_inline-table {
    display: inline-table !important;
  }
  .display-lg_inline-flex {
    display: inline-flex !important;
  }
  .display-lg_flex {
    display: flex !important;
  }
  .display-lg_list-item {
    display: list-item !important;
  }
  .display-lg_none {
    display: none !important;
  }
  .display-lg_run-in {
    display: run-in !important;
  }
  .display-lg_table {
    display: table !important;
  }
  .display-lg_table-caption {
    display: table-caption !important;
  }
  .display-lg_table-cell {
    display: table-cell !important;
  }
  .display-lg_table-column {
    display: table-column !important;
  }
  .display-lg_table-column-group {
    display: table-column-group !important;
  }
  .display-lg_table-footer-group {
    display: table-footer-group !important;
  }
  .display-lg_table-header-group {
    display: table-header-group !important;
  }
  .display-lg_table-row {
    display: table-row !important;
  }
  .display-lg_table-row-group {
    display: table-row-group !important;
  }
}

@media screen and (max-width: 739px) {
  .display-mobile_block {
    display: block !important;
  }
  .display-mobile_inline {
    display: inline !important;
  }
  .display-mobile_inline-block {
    display: inline-block !important;
  }
  .display-mobile_inline-table {
    display: inline-table !important;
  }
  .display-mobile_inline-flex {
    display: inline-flex !important;
  }
  .display-mobile_flex {
    display: flex !important;
  }
  .display-mobile_list-item {
    display: list-item !important;
  }
  .display-mobile_none {
    display: none !important;
  }
  .display-mobile_run-in {
    display: run-in !important;
  }
  .display-mobile_table {
    display: table !important;
  }
  .display-mobile_table-caption {
    display: table-caption !important;
  }
  .display-mobile_table-cell {
    display: table-cell !important;
  }
  .display-mobile_table-column {
    display: table-column !important;
  }
  .display-mobile_table-column-group {
    display: table-column-group !important;
  }
  .display-mobile_table-footer-group {
    display: table-footer-group !important;
  }
  .display-mobile_table-header-group {
    display: table-header-group !important;
  }
  .display-mobile_table-row {
    display: table-row !important;
  }
  .display-mobile_table-row-group {
    display: table-row-group !important;
  }
}

@media screen and (min-width: 740px) {
  .display-desktop_block {
    display: block !important;
  }
  .display-desktop_inline {
    display: inline !important;
  }
  .display-desktop_inline-block {
    display: inline-block !important;
  }
  .display-desktop_inline-table {
    display: inline-table !important;
  }
  .display-desktop_inline-flex {
    display: inline-flex !important;
  }
  .display-desktop_flex {
    display: flex !important;
  }
  .display-desktop_list-item {
    display: list-item !important;
  }
  .display-desktop_none {
    display: none !important;
  }
  .display-desktop_run-in {
    display: run-in !important;
  }
  .display-desktop_table {
    display: table !important;
  }
  .display-desktop_table-caption {
    display: table-caption !important;
  }
  .display-desktop_table-cell {
    display: table-cell !important;
  }
  .display-desktop_table-column {
    display: table-column !important;
  }
  .display-desktop_table-column-group {
    display: table-column-group !important;
  }
  .display-desktop_table-footer-group {
    display: table-footer-group !important;
  }
  .display-desktop_table-header-group {
    display: table-header-group !important;
  }
  .display-desktop_table-row {
    display: table-row !important;
  }
  .display-desktop_table-row-group {
    display: table-row-group !important;
  }
}

/**
 * Настройки
 */
/**
 * Создание модификаторов отступа для указанного экрана
 *
 * @param  {string}  $postfix    ['']    - Постфикс после цифры g_mt_1-{postfix}
 *
 * @return  {css}
 */
.mt_0 {
  margin-top: 0px !important;
}

.mb_0 {
  margin-bottom: 0px !important;
}

.mr_0 {
  margin-right: 0px !important;
}

.ml_0 {
  margin-left: 0px !important;
}

.pt_0 {
  padding-top: 0px !important;
}

.pb_0 {
  padding-bottom: 0px !important;
}

.pr_0 {
  padding-right: 0px !important;
}

.pl_0 {
  padding-left: 0px !important;
}

.mt_1 {
  margin-top: 8px !important;
}

.mb_1 {
  margin-bottom: 8px !important;
}

.mr_1 {
  margin-right: 8px !important;
}

.ml_1 {
  margin-left: 8px !important;
}

.pt_1 {
  padding-top: 8px !important;
}

.pb_1 {
  padding-bottom: 8px !important;
}

.pr_1 {
  padding-right: 8px !important;
}

.pl_1 {
  padding-left: 8px !important;
}

.mt_2 {
  margin-top: 16px !important;
}

.mb_2 {
  margin-bottom: 16px !important;
}

.mr_2 {
  margin-right: 16px !important;
}

.ml_2 {
  margin-left: 16px !important;
}

.pt_2 {
  padding-top: 16px !important;
}

.pb_2 {
  padding-bottom: 16px !important;
}

.pr_2 {
  padding-right: 16px !important;
}

.pl_2 {
  padding-left: 16px !important;
}

.mt_3 {
  margin-top: 24px !important;
}

.mb_3 {
  margin-bottom: 24px !important;
}

.mr_3 {
  margin-right: 24px !important;
}

.ml_3 {
  margin-left: 24px !important;
}

.pt_3 {
  padding-top: 24px !important;
}

.pb_3 {
  padding-bottom: 24px !important;
}

.pr_3 {
  padding-right: 24px !important;
}

.pl_3 {
  padding-left: 24px !important;
}

.mt_4 {
  margin-top: 32px !important;
}

.mb_4 {
  margin-bottom: 32px !important;
}

.mr_4 {
  margin-right: 32px !important;
}

.ml_4 {
  margin-left: 32px !important;
}

.pt_4 {
  padding-top: 32px !important;
}

.pb_4 {
  padding-bottom: 32px !important;
}

.pr_4 {
  padding-right: 32px !important;
}

.pl_4 {
  padding-left: 32px !important;
}

.mt_5 {
  margin-top: 40px !important;
}

.mb_5 {
  margin-bottom: 40px !important;
}

.mr_5 {
  margin-right: 40px !important;
}

.ml_5 {
  margin-left: 40px !important;
}

.pt_5 {
  padding-top: 40px !important;
}

.pb_5 {
  padding-bottom: 40px !important;
}

.pr_5 {
  padding-right: 40px !important;
}

.pl_5 {
  padding-left: 40px !important;
}

@media screen and (max-width: 739px) {
  .mt-xs_0 {
    margin-top: 0px !important;
  }
  .mb-xs_0 {
    margin-bottom: 0px !important;
  }
  .mr-xs_0 {
    margin-right: 0px !important;
  }
  .ml-xs_0 {
    margin-left: 0px !important;
  }
  .pt-xs_0 {
    padding-top: 0px !important;
  }
  .pb-xs_0 {
    padding-bottom: 0px !important;
  }
  .pr-xs_0 {
    padding-right: 0px !important;
  }
  .pl-xs_0 {
    padding-left: 0px !important;
  }
  .mt-xs_1 {
    margin-top: 8px !important;
  }
  .mb-xs_1 {
    margin-bottom: 8px !important;
  }
  .mr-xs_1 {
    margin-right: 8px !important;
  }
  .ml-xs_1 {
    margin-left: 8px !important;
  }
  .pt-xs_1 {
    padding-top: 8px !important;
  }
  .pb-xs_1 {
    padding-bottom: 8px !important;
  }
  .pr-xs_1 {
    padding-right: 8px !important;
  }
  .pl-xs_1 {
    padding-left: 8px !important;
  }
  .mt-xs_2 {
    margin-top: 16px !important;
  }
  .mb-xs_2 {
    margin-bottom: 16px !important;
  }
  .mr-xs_2 {
    margin-right: 16px !important;
  }
  .ml-xs_2 {
    margin-left: 16px !important;
  }
  .pt-xs_2 {
    padding-top: 16px !important;
  }
  .pb-xs_2 {
    padding-bottom: 16px !important;
  }
  .pr-xs_2 {
    padding-right: 16px !important;
  }
  .pl-xs_2 {
    padding-left: 16px !important;
  }
  .mt-xs_3 {
    margin-top: 24px !important;
  }
  .mb-xs_3 {
    margin-bottom: 24px !important;
  }
  .mr-xs_3 {
    margin-right: 24px !important;
  }
  .ml-xs_3 {
    margin-left: 24px !important;
  }
  .pt-xs_3 {
    padding-top: 24px !important;
  }
  .pb-xs_3 {
    padding-bottom: 24px !important;
  }
  .pr-xs_3 {
    padding-right: 24px !important;
  }
  .pl-xs_3 {
    padding-left: 24px !important;
  }
  .mt-xs_4 {
    margin-top: 32px !important;
  }
  .mb-xs_4 {
    margin-bottom: 32px !important;
  }
  .mr-xs_4 {
    margin-right: 32px !important;
  }
  .ml-xs_4 {
    margin-left: 32px !important;
  }
  .pt-xs_4 {
    padding-top: 32px !important;
  }
  .pb-xs_4 {
    padding-bottom: 32px !important;
  }
  .pr-xs_4 {
    padding-right: 32px !important;
  }
  .pl-xs_4 {
    padding-left: 32px !important;
  }
  .mt-xs_5 {
    margin-top: 40px !important;
  }
  .mb-xs_5 {
    margin-bottom: 40px !important;
  }
  .mr-xs_5 {
    margin-right: 40px !important;
  }
  .ml-xs_5 {
    margin-left: 40px !important;
  }
  .pt-xs_5 {
    padding-top: 40px !important;
  }
  .pb-xs_5 {
    padding-bottom: 40px !important;
  }
  .pr-xs_5 {
    padding-right: 40px !important;
  }
  .pl-xs_5 {
    padding-left: 40px !important;
  }
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .mt-sm_0 {
    margin-top: 0px !important;
  }
  .mb-sm_0 {
    margin-bottom: 0px !important;
  }
  .mr-sm_0 {
    margin-right: 0px !important;
  }
  .ml-sm_0 {
    margin-left: 0px !important;
  }
  .pt-sm_0 {
    padding-top: 0px !important;
  }
  .pb-sm_0 {
    padding-bottom: 0px !important;
  }
  .pr-sm_0 {
    padding-right: 0px !important;
  }
  .pl-sm_0 {
    padding-left: 0px !important;
  }
  .mt-sm_1 {
    margin-top: 8px !important;
  }
  .mb-sm_1 {
    margin-bottom: 8px !important;
  }
  .mr-sm_1 {
    margin-right: 8px !important;
  }
  .ml-sm_1 {
    margin-left: 8px !important;
  }
  .pt-sm_1 {
    padding-top: 8px !important;
  }
  .pb-sm_1 {
    padding-bottom: 8px !important;
  }
  .pr-sm_1 {
    padding-right: 8px !important;
  }
  .pl-sm_1 {
    padding-left: 8px !important;
  }
  .mt-sm_2 {
    margin-top: 16px !important;
  }
  .mb-sm_2 {
    margin-bottom: 16px !important;
  }
  .mr-sm_2 {
    margin-right: 16px !important;
  }
  .ml-sm_2 {
    margin-left: 16px !important;
  }
  .pt-sm_2 {
    padding-top: 16px !important;
  }
  .pb-sm_2 {
    padding-bottom: 16px !important;
  }
  .pr-sm_2 {
    padding-right: 16px !important;
  }
  .pl-sm_2 {
    padding-left: 16px !important;
  }
  .mt-sm_3 {
    margin-top: 24px !important;
  }
  .mb-sm_3 {
    margin-bottom: 24px !important;
  }
  .mr-sm_3 {
    margin-right: 24px !important;
  }
  .ml-sm_3 {
    margin-left: 24px !important;
  }
  .pt-sm_3 {
    padding-top: 24px !important;
  }
  .pb-sm_3 {
    padding-bottom: 24px !important;
  }
  .pr-sm_3 {
    padding-right: 24px !important;
  }
  .pl-sm_3 {
    padding-left: 24px !important;
  }
  .mt-sm_4 {
    margin-top: 32px !important;
  }
  .mb-sm_4 {
    margin-bottom: 32px !important;
  }
  .mr-sm_4 {
    margin-right: 32px !important;
  }
  .ml-sm_4 {
    margin-left: 32px !important;
  }
  .pt-sm_4 {
    padding-top: 32px !important;
  }
  .pb-sm_4 {
    padding-bottom: 32px !important;
  }
  .pr-sm_4 {
    padding-right: 32px !important;
  }
  .pl-sm_4 {
    padding-left: 32px !important;
  }
  .mt-sm_5 {
    margin-top: 40px !important;
  }
  .mb-sm_5 {
    margin-bottom: 40px !important;
  }
  .mr-sm_5 {
    margin-right: 40px !important;
  }
  .ml-sm_5 {
    margin-left: 40px !important;
  }
  .pt-sm_5 {
    padding-top: 40px !important;
  }
  .pb-sm_5 {
    padding-bottom: 40px !important;
  }
  .pr-sm_5 {
    padding-right: 40px !important;
  }
  .pl-sm_5 {
    padding-left: 40px !important;
  }
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .mt-md_0 {
    margin-top: 0px !important;
  }
  .mb-md_0 {
    margin-bottom: 0px !important;
  }
  .mr-md_0 {
    margin-right: 0px !important;
  }
  .ml-md_0 {
    margin-left: 0px !important;
  }
  .pt-md_0 {
    padding-top: 0px !important;
  }
  .pb-md_0 {
    padding-bottom: 0px !important;
  }
  .pr-md_0 {
    padding-right: 0px !important;
  }
  .pl-md_0 {
    padding-left: 0px !important;
  }
  .mt-md_1 {
    margin-top: 8px !important;
  }
  .mb-md_1 {
    margin-bottom: 8px !important;
  }
  .mr-md_1 {
    margin-right: 8px !important;
  }
  .ml-md_1 {
    margin-left: 8px !important;
  }
  .pt-md_1 {
    padding-top: 8px !important;
  }
  .pb-md_1 {
    padding-bottom: 8px !important;
  }
  .pr-md_1 {
    padding-right: 8px !important;
  }
  .pl-md_1 {
    padding-left: 8px !important;
  }
  .mt-md_2 {
    margin-top: 16px !important;
  }
  .mb-md_2 {
    margin-bottom: 16px !important;
  }
  .mr-md_2 {
    margin-right: 16px !important;
  }
  .ml-md_2 {
    margin-left: 16px !important;
  }
  .pt-md_2 {
    padding-top: 16px !important;
  }
  .pb-md_2 {
    padding-bottom: 16px !important;
  }
  .pr-md_2 {
    padding-right: 16px !important;
  }
  .pl-md_2 {
    padding-left: 16px !important;
  }
  .mt-md_3 {
    margin-top: 24px !important;
  }
  .mb-md_3 {
    margin-bottom: 24px !important;
  }
  .mr-md_3 {
    margin-right: 24px !important;
  }
  .ml-md_3 {
    margin-left: 24px !important;
  }
  .pt-md_3 {
    padding-top: 24px !important;
  }
  .pb-md_3 {
    padding-bottom: 24px !important;
  }
  .pr-md_3 {
    padding-right: 24px !important;
  }
  .pl-md_3 {
    padding-left: 24px !important;
  }
  .mt-md_4 {
    margin-top: 32px !important;
  }
  .mb-md_4 {
    margin-bottom: 32px !important;
  }
  .mr-md_4 {
    margin-right: 32px !important;
  }
  .ml-md_4 {
    margin-left: 32px !important;
  }
  .pt-md_4 {
    padding-top: 32px !important;
  }
  .pb-md_4 {
    padding-bottom: 32px !important;
  }
  .pr-md_4 {
    padding-right: 32px !important;
  }
  .pl-md_4 {
    padding-left: 32px !important;
  }
  .mt-md_5 {
    margin-top: 40px !important;
  }
  .mb-md_5 {
    margin-bottom: 40px !important;
  }
  .mr-md_5 {
    margin-right: 40px !important;
  }
  .ml-md_5 {
    margin-left: 40px !important;
  }
  .pt-md_5 {
    padding-top: 40px !important;
  }
  .pb-md_5 {
    padding-bottom: 40px !important;
  }
  .pr-md_5 {
    padding-right: 40px !important;
  }
  .pl-md_5 {
    padding-left: 40px !important;
  }
}

@media screen and (min-width: 1220px) {
  .mt-lg_0 {
    margin-top: 0px !important;
  }
  .mb-lg_0 {
    margin-bottom: 0px !important;
  }
  .mr-lg_0 {
    margin-right: 0px !important;
  }
  .ml-lg_0 {
    margin-left: 0px !important;
  }
  .pt-lg_0 {
    padding-top: 0px !important;
  }
  .pb-lg_0 {
    padding-bottom: 0px !important;
  }
  .pr-lg_0 {
    padding-right: 0px !important;
  }
  .pl-lg_0 {
    padding-left: 0px !important;
  }
  .mt-lg_1 {
    margin-top: 8px !important;
  }
  .mb-lg_1 {
    margin-bottom: 8px !important;
  }
  .mr-lg_1 {
    margin-right: 8px !important;
  }
  .ml-lg_1 {
    margin-left: 8px !important;
  }
  .pt-lg_1 {
    padding-top: 8px !important;
  }
  .pb-lg_1 {
    padding-bottom: 8px !important;
  }
  .pr-lg_1 {
    padding-right: 8px !important;
  }
  .pl-lg_1 {
    padding-left: 8px !important;
  }
  .mt-lg_2 {
    margin-top: 16px !important;
  }
  .mb-lg_2 {
    margin-bottom: 16px !important;
  }
  .mr-lg_2 {
    margin-right: 16px !important;
  }
  .ml-lg_2 {
    margin-left: 16px !important;
  }
  .pt-lg_2 {
    padding-top: 16px !important;
  }
  .pb-lg_2 {
    padding-bottom: 16px !important;
  }
  .pr-lg_2 {
    padding-right: 16px !important;
  }
  .pl-lg_2 {
    padding-left: 16px !important;
  }
  .mt-lg_3 {
    margin-top: 24px !important;
  }
  .mb-lg_3 {
    margin-bottom: 24px !important;
  }
  .mr-lg_3 {
    margin-right: 24px !important;
  }
  .ml-lg_3 {
    margin-left: 24px !important;
  }
  .pt-lg_3 {
    padding-top: 24px !important;
  }
  .pb-lg_3 {
    padding-bottom: 24px !important;
  }
  .pr-lg_3 {
    padding-right: 24px !important;
  }
  .pl-lg_3 {
    padding-left: 24px !important;
  }
  .mt-lg_4 {
    margin-top: 32px !important;
  }
  .mb-lg_4 {
    margin-bottom: 32px !important;
  }
  .mr-lg_4 {
    margin-right: 32px !important;
  }
  .ml-lg_4 {
    margin-left: 32px !important;
  }
  .pt-lg_4 {
    padding-top: 32px !important;
  }
  .pb-lg_4 {
    padding-bottom: 32px !important;
  }
  .pr-lg_4 {
    padding-right: 32px !important;
  }
  .pl-lg_4 {
    padding-left: 32px !important;
  }
  .mt-lg_5 {
    margin-top: 40px !important;
  }
  .mb-lg_5 {
    margin-bottom: 40px !important;
  }
  .mr-lg_5 {
    margin-right: 40px !important;
  }
  .ml-lg_5 {
    margin-left: 40px !important;
  }
  .pt-lg_5 {
    padding-top: 40px !important;
  }
  .pb-lg_5 {
    padding-bottom: 40px !important;
  }
  .pr-lg_5 {
    padding-right: 40px !important;
  }
  .pl-lg_5 {
    padding-left: 40px !important;
  }
}

@media screen and (max-width: 739px) {
  .mt-mobile_0 {
    margin-top: 0px !important;
  }
  .mb-mobile_0 {
    margin-bottom: 0px !important;
  }
  .mr-mobile_0 {
    margin-right: 0px !important;
  }
  .ml-mobile_0 {
    margin-left: 0px !important;
  }
  .pt-mobile_0 {
    padding-top: 0px !important;
  }
  .pb-mobile_0 {
    padding-bottom: 0px !important;
  }
  .pr-mobile_0 {
    padding-right: 0px !important;
  }
  .pl-mobile_0 {
    padding-left: 0px !important;
  }
  .mt-mobile_1 {
    margin-top: 8px !important;
  }
  .mb-mobile_1 {
    margin-bottom: 8px !important;
  }
  .mr-mobile_1 {
    margin-right: 8px !important;
  }
  .ml-mobile_1 {
    margin-left: 8px !important;
  }
  .pt-mobile_1 {
    padding-top: 8px !important;
  }
  .pb-mobile_1 {
    padding-bottom: 8px !important;
  }
  .pr-mobile_1 {
    padding-right: 8px !important;
  }
  .pl-mobile_1 {
    padding-left: 8px !important;
  }
  .mt-mobile_2 {
    margin-top: 16px !important;
  }
  .mb-mobile_2 {
    margin-bottom: 16px !important;
  }
  .mr-mobile_2 {
    margin-right: 16px !important;
  }
  .ml-mobile_2 {
    margin-left: 16px !important;
  }
  .pt-mobile_2 {
    padding-top: 16px !important;
  }
  .pb-mobile_2 {
    padding-bottom: 16px !important;
  }
  .pr-mobile_2 {
    padding-right: 16px !important;
  }
  .pl-mobile_2 {
    padding-left: 16px !important;
  }
  .mt-mobile_3 {
    margin-top: 24px !important;
  }
  .mb-mobile_3 {
    margin-bottom: 24px !important;
  }
  .mr-mobile_3 {
    margin-right: 24px !important;
  }
  .ml-mobile_3 {
    margin-left: 24px !important;
  }
  .pt-mobile_3 {
    padding-top: 24px !important;
  }
  .pb-mobile_3 {
    padding-bottom: 24px !important;
  }
  .pr-mobile_3 {
    padding-right: 24px !important;
  }
  .pl-mobile_3 {
    padding-left: 24px !important;
  }
  .mt-mobile_4 {
    margin-top: 32px !important;
  }
  .mb-mobile_4 {
    margin-bottom: 32px !important;
  }
  .mr-mobile_4 {
    margin-right: 32px !important;
  }
  .ml-mobile_4 {
    margin-left: 32px !important;
  }
  .pt-mobile_4 {
    padding-top: 32px !important;
  }
  .pb-mobile_4 {
    padding-bottom: 32px !important;
  }
  .pr-mobile_4 {
    padding-right: 32px !important;
  }
  .pl-mobile_4 {
    padding-left: 32px !important;
  }
  .mt-mobile_5 {
    margin-top: 40px !important;
  }
  .mb-mobile_5 {
    margin-bottom: 40px !important;
  }
  .mr-mobile_5 {
    margin-right: 40px !important;
  }
  .ml-mobile_5 {
    margin-left: 40px !important;
  }
  .pt-mobile_5 {
    padding-top: 40px !important;
  }
  .pb-mobile_5 {
    padding-bottom: 40px !important;
  }
  .pr-mobile_5 {
    padding-right: 40px !important;
  }
  .pl-mobile_5 {
    padding-left: 40px !important;
  }
}

@media screen and (min-width: 740px) {
  .mt-desktop_0 {
    margin-top: 0px !important;
  }
  .mb-desktop_0 {
    margin-bottom: 0px !important;
  }
  .mr-desktop_0 {
    margin-right: 0px !important;
  }
  .ml-desktop_0 {
    margin-left: 0px !important;
  }
  .pt-desktop_0 {
    padding-top: 0px !important;
  }
  .pb-desktop_0 {
    padding-bottom: 0px !important;
  }
  .pr-desktop_0 {
    padding-right: 0px !important;
  }
  .pl-desktop_0 {
    padding-left: 0px !important;
  }
  .mt-desktop_1 {
    margin-top: 8px !important;
  }
  .mb-desktop_1 {
    margin-bottom: 8px !important;
  }
  .mr-desktop_1 {
    margin-right: 8px !important;
  }
  .ml-desktop_1 {
    margin-left: 8px !important;
  }
  .pt-desktop_1 {
    padding-top: 8px !important;
  }
  .pb-desktop_1 {
    padding-bottom: 8px !important;
  }
  .pr-desktop_1 {
    padding-right: 8px !important;
  }
  .pl-desktop_1 {
    padding-left: 8px !important;
  }
  .mt-desktop_2 {
    margin-top: 16px !important;
  }
  .mb-desktop_2 {
    margin-bottom: 16px !important;
  }
  .mr-desktop_2 {
    margin-right: 16px !important;
  }
  .ml-desktop_2 {
    margin-left: 16px !important;
  }
  .pt-desktop_2 {
    padding-top: 16px !important;
  }
  .pb-desktop_2 {
    padding-bottom: 16px !important;
  }
  .pr-desktop_2 {
    padding-right: 16px !important;
  }
  .pl-desktop_2 {
    padding-left: 16px !important;
  }
  .mt-desktop_3 {
    margin-top: 24px !important;
  }
  .mb-desktop_3 {
    margin-bottom: 24px !important;
  }
  .mr-desktop_3 {
    margin-right: 24px !important;
  }
  .ml-desktop_3 {
    margin-left: 24px !important;
  }
  .pt-desktop_3 {
    padding-top: 24px !important;
  }
  .pb-desktop_3 {
    padding-bottom: 24px !important;
  }
  .pr-desktop_3 {
    padding-right: 24px !important;
  }
  .pl-desktop_3 {
    padding-left: 24px !important;
  }
  .mt-desktop_4 {
    margin-top: 32px !important;
  }
  .mb-desktop_4 {
    margin-bottom: 32px !important;
  }
  .mr-desktop_4 {
    margin-right: 32px !important;
  }
  .ml-desktop_4 {
    margin-left: 32px !important;
  }
  .pt-desktop_4 {
    padding-top: 32px !important;
  }
  .pb-desktop_4 {
    padding-bottom: 32px !important;
  }
  .pr-desktop_4 {
    padding-right: 32px !important;
  }
  .pl-desktop_4 {
    padding-left: 32px !important;
  }
  .mt-desktop_5 {
    margin-top: 40px !important;
  }
  .mb-desktop_5 {
    margin-bottom: 40px !important;
  }
  .mr-desktop_5 {
    margin-right: 40px !important;
  }
  .ml-desktop_5 {
    margin-left: 40px !important;
  }
  .pt-desktop_5 {
    padding-top: 40px !important;
  }
  .pb-desktop_5 {
    padding-bottom: 40px !important;
  }
  .pr-desktop_5 {
    padding-right: 40px !important;
  }
  .pl-desktop_5 {
    padding-left: 40px !important;
  }
}

/**
 * Выравнивание текста
 */
.text_align_center {
  text-align: center;
}

.text_align_justify {
  text-align: justify;
}

.text_align_left {
  text-align: left;
}

.text_align_right {
  text-align: right;
}

.text_align_start {
  text-align: start;
}

.text_align_end {
  text-align: end;
}

/**
 * Трансформация текста
 */
.text_transform_lowercase {
  text-transform: lowercase;
}

.text_transform_uppercase {
  text-transform: uppercase;
}

.text_transform_capitalize {
  text-transform: capitalize;
}

/**
 * Обрезка текста и отступы
 */
.text_nowrap {
  white-space: nowrap;
}

.text_ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.text_indent {
  text-indent: 1.25em;
}

/**
 * Адаптивный контейнер
 *
 * @return  {css}
 */
.container {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 739px) {
  .container {
    width: 100%;
  }
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .container {
    width: 700px;
  }
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .container {
    width: 940px;
  }
}

@media screen and (min-width: 1220px) {
  .container {
    width: 1180px;
  }
}

/**
 * Общий стиль заголовка
 */
.markdown h6, .markdown h5, .markdown h4, .markdown h3, .markdown h2, .markdown h1 {
  font-family: Manrope-Medium;
  font-weight: normal;
  line-height: 1.25;
  color: #ff234a;
}

@media screen and (min-width: 740px) {
  .markdown h6, .markdown h5, .markdown h4, .markdown h3, .markdown h2, .markdown h1 {
    margin: 20px 0 12px;
  }
}

@media screen and (max-width: 739px) {
  .markdown h6, .markdown h5, .markdown h4, .markdown h3, .markdown h2, .markdown h1 {
    margin: 16px 0 10px;
  }
}

/**
 * Заголовки
 *
 * @return  {css}
 */
/**
 * Сброс стандартных стилей для таблцы
 */
/**
 * Стиль таблцы.
 */
/**
 * Модификации таблицы
 */
/**
 * Конструктор таблицы
 *
 * @return     {css}
 */
/**
 * Типография
 */
/**
 * Форма
 */
/**
 * Сброс стандартных настроек кнопок
 */
.button {
  position: relative;
  display: inline-block;
  margin: 0 .25rem 0 0;
  padding: 0;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  vertical-align: middle;
  border: none;
  overflow: hidden;
  cursor: default;
  white-space: nowrap;
}

.button:last-child {
  margin-right: 0;
}

/**
 * Стилизация основной кнопки
 */
.button {
  z-index: 1;
  padding: 0 21px;
  height: 42px;
  font-size: 14px;
  font-family: Manrope-Bold;
  text-transform: uppercase;
  line-height: 42px;
  color: #fff;
  background-color: #ff351a;
  cursor: pointer;
  overflow: hidden;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
}

@media screen and (min-width: 740px) {
  .button:hover {
    color: #fff;
    background-color: #ff7867;
  }
}

.button:active {
  color: #fff;
  background-color: #c5220d;
}

.button:disabled, .button[disabled], .button.button_disabled {
  cursor: not-allowed;
  color: #e0e0e0;
  background-color: #caa19c;
}

.button_icon {
  width: 42px;
  padding: 0;
}

.button.mdi {
  padding-left: 42px;
}

.button.mdi:before {
  position: absolute;
  top: 0;
  left: 11.5px;
  font-size: 19px;
}

.button.mdi.button_icon_right {
  padding-left: 21px;
  padding-right: 42px;
}

.button.mdi.button_icon_right:before {
  left: auto;
  right: 11.5px;
}

/**
 * Модификаторы цветов
 */
.button_theme_secondary {
  background-color: #2b2d31;
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .button_theme_secondary:hover {
    background-color: #4f525a;
  }
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .button_theme_secondary:hover {
    background-color: #4f525a;
  }
}

@media screen and (min-width: 1220px) {
  .button_theme_secondary:hover {
    background-color: #4f525a;
  }
}

.button_theme_secondary:active {
  background-color: #111214;
}

.button_theme_secondary:disabled, .button_theme_secondary[disabled], .button_theme_secondary.button_disabled {
  background-color: #4f525a;
}

.button_theme_success {
  background-color: #66b57f;
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .button_theme_success:hover {
    background-color: #8ed9a6;
  }
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .button_theme_success:hover {
    background-color: #8ed9a6;
  }
}

@media screen and (min-width: 1220px) {
  .button_theme_success:hover {
    background-color: #8ed9a6;
  }
}

.button_theme_success:active {
  background-color: #458e5c;
}

.button_theme_success:disabled, .button_theme_success[disabled], .button_theme_success.button_disabled {
  background-color: #9aceaa;
}

.button_theme_warning {
  background-color: #fddd62;
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .button_theme_warning:hover {
    background-color: #ffeead;
  }
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .button_theme_warning:hover {
    background-color: #ffeead;
  }
}

@media screen and (min-width: 1220px) {
  .button_theme_warning:hover {
    background-color: #ffeead;
  }
}

.button_theme_warning:active {
  background-color: #dab837;
}

.button_theme_warning:disabled, .button_theme_warning[disabled], .button_theme_warning.button_disabled {
  background-color: #e2ddca;
}

.button_theme_error {
  background-color: #ff6d66;
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .button_theme_error:hover {
    background-color: #ffb6b3;
  }
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .button_theme_error:hover {
    background-color: #ffb6b3;
  }
}

@media screen and (min-width: 1220px) {
  .button_theme_error:hover {
    background-color: #ffb6b3;
  }
}

.button_theme_error:active {
  background-color: #dd413a;
}

.button_theme_error:disabled, .button_theme_error[disabled], .button_theme_error.button_disabled {
  background-color: #e4cecd;
}

.button_theme_info {
  background-color: #25a2a6;
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .button_theme_info:hover {
    background-color: #31e1e6;
  }
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .button_theme_info:hover {
    background-color: #31e1e6;
  }
}

@media screen and (min-width: 1220px) {
  .button_theme_info:hover {
    background-color: #31e1e6;
  }
}

.button_theme_info:active {
  background-color: #226769;
}

.button_theme_info:disabled, .button_theme_info[disabled], .button_theme_info.button_disabled {
  background-color: #76a0a2;
}

/**
 * Прозрачная кнопка со основным цветом
 */
.button_theme_transparent {
  line-height: 38px;
  color: #fff;
  border: 2px solid #e61b00;
  background-color: transparent;
}

.button_theme_transparent:before {
  line-height: 38px;
}

.button_theme_transparent:disabled, .button_theme_transparent[disabled], .button_theme_transparent.button_disabled {
  color: #e0e0e0 !important;
  border-color: #e6eaee !important;
}

@media screen and (min-width: 740px) {
  .button_theme_transparent:hover {
    border-color: #ff351a;
    background-color: rgba(255, 255, 255, 0.2);
  }
}

@media screen and (max-width: 739px) {
  .button_theme_transparent:active {
    border-color: #e61b00;
    background-color: transparent;
  }
}

/**
 * Основной стиль инпута
 */
.text, .textarea {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  line-height: normal;
  vertical-align: middle;
  color: #faf6f2;
  border: none;
  padding: 0 14px;
  height: 42px;
  line-height: 40px;
  font-size: 1rem;
  font-family: Manrope-Regular;
  color: #343a40;
  border: 1px solid #e61b00;
  background-color: #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: border-color 300ms cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: border-color 300ms cubic-bezier(0, 0, 0.58, 1);
  -o-transition: border-color 300ms cubic-bezier(0, 0, 0.58, 1);
  transition: border-color 300ms cubic-bezier(0, 0, 0.58, 1);
  /**
     * Кнопка очистить
     */
  /**
     * Поисковая кнопка закрыть
     */
  /**
     * Псевдоэлементы для пикера даты
     */
}

@media screen and (min-width: 740px) {
  .text:hover, .textarea:hover {
    border-color: #adb5bd;
  }
}

.text:focus, .textarea:focus {
  border-color: #adb5bd;
}

.text:disabled, .textarea:disabled, .text[disabled], [disabled].textarea, .text.text_disabled, .text_disabled.textarea, .text.select_disabled, .select_disabled.textarea, .text.textarea_disabled, .textarea_disabled.textarea {
  cursor: not-allowed;
  color: #adb5bd;
  border-color: #cad0d7;
  background-color: #e6eaee;
}

.text:-moz-read-only, .textarea:-moz-read-only {
  color: #4d545b;
  background-color: #f2f4f5;
}

.text:read-only, .textarea:read-only {
  color: #4d545b;
  background-color: #f2f4f5;
}

.text::-webkit-clear-button, .textarea::-webkit-clear-button {
  display: none;
}

.text::-webkit-search-cancel-button, .textarea::-webkit-search-cancel-button {
  position: relative;
  right: -18px;
  display: block;
  width: 42px;
  height: 42px;
  background-size: 14px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAn0lEQVR42u3UMQrDMBBEUZ9WfQqDmm22EaTyjRMHAlM5K+Y7lb0wnUZPIKHlnutOa+25Z4D++MRBX98MD1V/trSppLKHqj9TTBWKcoUqffbUcbBBEhTjBOV4ja4l4OIAZThEOV6jHO8ARXD+gPPvKMABinGOrnu6gTNUawrcQKNCAQ7QeTxORzle3+sDfjJpPCqhJh7GixZq4rHcc9l5A9qZ+WeBhgEuAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.text::-webkit-search-cancel-button:hover, .textarea::-webkit-search-cancel-button:hover {
  cursor: pointer;
}

.text::-webkit-datetime-edit-text, .textarea::-webkit-datetime-edit-text {
  color: #adb5bd;
  padding: 0 .3em;
}

.text::-webkit-datetime-edit-day-field, .textarea::-webkit-datetime-edit-day-field, .text::-webkit-datetime-edit-month-field, .textarea::-webkit-datetime-edit-month-field, .text::-webkit-datetime-edit-year-field, .textarea::-webkit-datetime-edit-year-field {
  color: #343a40;
}

.text::-webkit-datetime-clear-button, .textarea::-webkit-datetime-clear-button {
  display: none;
}

.text::-webkit-inner-spin-button, .textarea::-webkit-inner-spin-button {
  display: none;
}

.text::-webkit-calendar-picker-indicator, .textarea::-webkit-calendar-picker-indicator {
  color: #868e96;
}

/**
 * Скругленный инпут
 */
.text_shape_rounded {
  padding: 0 16px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}

.text_align_center {
  text-align: center;
}

/**
 * Стиль многострочного текста
 */
.textarea {
  padding-top: 8px;
  padding-bottom: 8px;
  height: auto;
  min-height: 126px;
  line-height: 1.25;
  resize: vertical;
}

.textarea::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.textarea::-webkit-scrollbar-track {
  background-color: transparent;
}

.textarea::-webkit-scrollbar-track:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.textarea::-webkit-scrollbar-thumb {
  background-color: rgba(158, 158, 158, 0.4);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

.textarea::-webkit-scrollbar-thumb:hover {
  background-color: rgba(158, 158, 158, 0.7);
}

@media screen and (max-width: 739px) {
  .textarea {
    resize: none;
  }
}

/**
 * Модификация изменения размера
 */
.textarea_resize_none {
  resize: none;
}

.textarea_resize_vertical {
  resize: vertical;
}

.textarea_resize_horizontal {
  resize: horizontal;
}

/**
 * Модификатор автоматической высоты (для использования с JS)
 */
.textarea_height_auto {
  min-height: 42px;
  height: auto;
}

/**
 * Базовые блоки
 */
.header {
  position: relative;
  z-index: 1000;
  background-color: #1e1e2e;
  -webkit-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.56);
  -moz-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.56);
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.56);
}

.header__container {
  position: relative;
  height: 64px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (min-width: 740px) {
  .header__container {
    overflow: hidden;
  }
}

@media screen and (max-width: 739px) {
  .header__container {
    height: 60px;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.header__logo {
  width: 128px;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (max-width: 739px) {
  .header__logo {
    width: 160px;
    margin-left: 8px;
  }
}

.header__action {
  margin-left: auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (max-width: 739px) {
  .header__action {
    display: none;
  }
}

.header__action-mobile {
  margin-right: 8px;
  margin-left: auto;
}

@media screen and (min-width: 740px) {
  .header__action-mobile {
    display: none;
  }
}

.header__nav {
  padding: 0 32px;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media screen and (max-width: 739px) {
  .header__nav {
    display: none;
    padding: 16px 20px;
    background-color: #2b2d31;
    -webkit-order: 5;
    order: 5;
  }
}

.header__nav_active {
  position: absolute;
  top: 60px;
  left: 180px;
  display: block;
}

.header__menu {
  margin-left: 12px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media screen and (min-width: 740px) {
  .header__menu {
    display: none;
  }
}

.header__menu span,
.header__menu span:before,
.header__menu span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 32px;
  background: #faf6f2;
  position: absolute;
  display: block;
  content: '';
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}

.header__menu span:before {
  top: -10px;
}

.header__menu span:after {
  bottom: -10px;
}

.header__menu_active span,
.header__menu_active span:before,
.header__menu_active span:after {
  background-color: #b0b0b0;
}

.logo {
  display: block;
  padding-top: 39%;
  background-image: url("../img/logo.webp");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
}

.banner {
  position: relative;
  height: 600px;
  background-image: url("../img/banner.webp");
  background-repeat: no-repeat;
  background-position: top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.banner:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background-image: -owg-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #212132 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #212132 100%);
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #212132 100%);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #212132 100%);
  background-image: linear-gradient(top, rgba(0, 0, 0, 0) 0%, #212132 100%);
}

@media screen and (max-width: 739px) {
  .banner {
    padding: 48px 8px;
    height: auto;
  }
  .banner:after {
    height: 100px;
  }
}

.banner__container {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (min-width: 740px) {
  .banner__left {
    width: 50%;
  }
}

.banner__heading {
  margin-bottom: 12px;
  font-size: 30px;
  font-family: Manrope-Bold;
  line-height: 1.25;
  text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.1), 1px 1px 1px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 739px) {
  .banner__heading {
    font-size: 24px;
    line-height: 1.1;
    text-align: center;
  }
}

.banner__description {
  position: relative;
  margin-bottom: 16px;
  z-index: 10;
  line-height: 1.5;
  font-size: 18px;
  font-family: Manrope-Light;
  text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.1), 1px 1px 1px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 739px) {
  .banner__description {
    font-size: 16px;
    line-height: 1.25;
  }
}

@media screen and (max-width: 739px) {
  .banner__action {
    text-align: center;
  }
  .banner__action .button {
    margin-bottom: 8px;
  }
}

body {
  position: relative;
  min-height: 100%;
}

a {
  color: #e61b00;
}

@media screen and (max-width: 739px) {
  .content {
    padding: 0 12px;
  }
}

/**
 * Комментарий
 */
.comment {
  padding: 20px 24px;
  background-color: #33334d;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
}

@media screen and (max-width: 739px) {
  .comment {
    padding: 16px 20px;
  }
}

.comment + .comment {
  margin-top: 20px;
}

.comment__author {
  margin-bottom: 4px;
  line-height: 1.25;
  font-size: 18px;
  font-family: Manrope-Bold;
  color: #b2b2cc;
}

@media screen and (max-width: 739px) {
  .comment__author {
    word-wrap: break-word;
  }
}

.comment__text {
  line-height: 1.5;
  font-size: 15px;
}

.footer {
  margin-top: 60px;
  padding: 32px 0;
  background-color: #0a0a0f;
}

.footer__nav {
  margin-bottom: 24px;
}

.footer__copy {
  line-height: 1.5;
  text-align: center;
}

/**
 * Маркдаун
 */
.markdown {
  font-size: 1rem;
  line-height: 1.5;
}

.markdown p {
  margin: .5em 0;
}

.markdown p:first-child {
  margin-top: 0;
}

.markdown p:last-child {
  margin-bottom: 0;
}

.markdown i, .markdown em {
  font-family: Tahoma;
}

.markdown b, .markdown strong {
  font-family: Manrope-Bold;
}

.markdown code {
  font-family: monospace;
}

.markdown s, .markdown del {
  text-decoration: line-through;
}

.markdown ul, .markdown ol {
  margin: .5em 0;
  padding-left: 2em;
}

.markdown li {
  margin-bottom: .5em;
}

.markdown ul {
  list-style: disc;
}

.markdown ol {
  list-style: decimal;
}

.markdown blockquote {
  position: relative;
  margin: 1.2em 0;
  padding: 10px 20px;
  font-family: Tahoma;
  color: #868e96;
}

.markdown blockquote:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background-color: #dce1e6;
}

.markdown img {
  display: block;
  max-width: 100%;
}

.markdown table {
  margin: 20px 0;
  padding: 0;
  width: 100%;
  line-height: 1.25;
  border-collapse: collapse;
  font-size: 1rem;
}

.markdown table:last-child {
  margin-bottom: 0;
}

.markdown table th {
  padding: 12px;
  font-size: 1.1em;
  font-family: Manrope-Medium;
}

.markdown table td {
  padding: 10px 12px;
  vertical-align: middle;
}

.markdown table th, .markdown table td {
  border: 1px solid #47476c;
}

.markdown h1 {
  font-size: 1.6em;
}

.markdown h1:first-child {
  margin-top: 0;
}

.markdown h1:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 739px) {
  .markdown h1 {
    font-size: 1.5em;
  }
}

.markdown h2 {
  font-size: 1.5em;
}

.markdown h2:first-child {
  margin-top: 0;
}

.markdown h2:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 739px) {
  .markdown h2 {
    font-size: 1.35em;
  }
}

.markdown h3 {
  font-size: 1.35em;
}

.markdown h3:first-child {
  margin-top: 0;
}

.markdown h3:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 739px) {
  .markdown h3 {
    font-size: 1.2em;
  }
}

.markdown h4 {
  font-size: 1.15em;
}

.markdown h4:first-child {
  margin-top: 0;
}

.markdown h4:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 739px) {
  .markdown h4 {
    font-size: 1.05em;
  }
}

.markdown h5 {
  font-size: 1em;
}

.markdown h5:first-child {
  margin-top: 0;
}

.markdown h5:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 739px) {
  .markdown h5 {
    font-size: 0.9em;
  }
}

.markdown h6 {
  font-size: 0.9em;
}

.markdown h6:first-child {
  margin-top: 0;
}

.markdown h6:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 739px) {
  .markdown h6 {
    font-size: 0.8em;
  }
}

.markdown h1, .markdown h2, .markdown h3, .markdown h4, .markdown h5, .markdown h6 {
  font-family: Manrope-Bold;
}

/**
 * Меню навигации
 */
@media screen and (min-width: 740px) {
  .nav {
    display: -webkit-flex;
    display: flex;
  }
}

.nav__item {
  position: relative;
  font-size: 15px;
  white-space: nowrap;
}

@media screen and (min-width: 740px) {
  .nav__item + .nav__item {
    margin-left: 16px;
  }
}

@media screen and (max-width: 739px) {
  .nav__item + .nav__item {
    margin-top: 12px;
  }
}

.nav__item a {
  color: #cacbcc;
  line-height: 1.25;
  text-decoration: none;
  -webkit-transition: color 300ms cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: color 300ms cubic-bezier(0, 0, 0.58, 1);
  -o-transition: color 300ms cubic-bezier(0, 0, 0.58, 1);
  transition: color 300ms cubic-bezier(0, 0, 0.58, 1);
}

@media screen and (min-width: 740px) {
  .nav__item a:hover {
    color: #e61b00;
  }
}

@media screen and (max-width: 739px) {
  .nav__item a:active {
    color: #e61b00;
  }
}

.nav__sub {
  padding: 16px 20px;
  display: none;
  top: 24px;
  position: absolute;
  background-color: #27292c;
}

.nav__sub .nav__item {
  margin-left: 0;
}

.nav__sub .nav__item + .nav__item {
  margin-top: 8px;
}
