@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-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: "Rubik-Bold";
  src: url("../fonts/rubik/Rubik-Bold.eot");
  src: url(../fonts/rubik/Rubik-Bold.eot?#iefix) format("embedded-opentype"), url("../fonts/rubik/Rubik-Bold.woff") format("woff"), url("../fonts/rubik/Rubik-Bold.ttf") format("truetype"), url("../fonts/rubik/Rubik-Bold.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: 14px;
  font-family: Manrope-SemiBold, Arial;
}

body {
  position: relative;
  height: 100%;
  min-height: 100%;
  color: #0e1537;
  background-color: #fff;
}

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

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

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

:-moz-placeholder {
  color: #565b73;
}

::-moz-placeholder {
  color: #565b73;
}

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

/**
 * Конфигурация
 */
/**
 * Глубина объекта (отрисовка тени)
 *
 * @param  {number}  $level            - Уровень элемента (0 - отключить тень)
 *
 * @return  {css}  Выводит тень box-shadow
 */
.depth_0 {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.depth_1 {
  -webkit-box-shadow: 0 1.5px 6px rgba(0, 0, 0, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0 1.5px 6px rgba(0, 0, 0, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1.5px 6px rgba(0, 0, 0, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.24);
}

.depth_2 {
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16), 0 3px 12px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16), 0 3px 12px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16), 0 3px 12px rgba(0, 0, 0, 0.23);
}

.depth_3 {
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.19), 0 6px 12px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.19), 0 6px 12px rgba(0, 0, 0, 0.23);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.19), 0 6px 12px rgba(0, 0, 0, 0.23);
}

.depth_4 {
  -webkit-box-shadow: 0 14px 56px rgba(0, 0, 0, 0.25), 0 10px 20px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0 14px 56px rgba(0, 0, 0, 0.25), 0 10px 20px rgba(0, 0, 0, 0.22);
  box-shadow: 0 14px 56px rgba(0, 0, 0, 0.25), 0 10px 20px rgba(0, 0, 0, 0.22);
}

.depth_5 {
  -webkit-box-shadow: 0 19px 76px rgba(0, 0, 0, 0.3), 0 15px 24px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0 19px 76px rgba(0, 0, 0, 0.3), 0 15px 24px rgba(0, 0, 0, 0.22);
  box-shadow: 0 19px 76px rgba(0, 0, 0, 0.3), 0 15px 24px rgba(0, 0, 0, 0.22);
}

.depth_6 {
  -webkit-box-shadow: 0 25px 100px rgba(0, 0, 0, 0.36), 0 21px 28px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 0 25px 100px rgba(0, 0, 0, 0.36), 0 21px 28px rgba(0, 0, 0, 0.21);
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.36), 0 21px 28px rgba(0, 0, 0, 0.21);
}

/**
 * Вывод правил видимости
 *
 * @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;
  }
}

/**
 * Общий стиль заголовка
 */
/**
 * Заголовки
 *
 * @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 {
  position: relative;
  z-index: 1;
  padding: 0 21px;
  height: 42px;
  font-size: 1rem;
  font-family: Tahoma;
  line-height: 42px;
  color: #fff;
  background: linear-gradient(180deg, #b0a1fc 0%, #8e78fb 100%);
  cursor: pointer;
  overflow: hidden;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  -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);
  -webkit-box-shadow: 0px 20px 20px 0px rgba(142, 120, 251, 0.25);
  -moz-box-shadow: 0px 20px 20px 0px rgba(142, 120, 251, 0.25);
  box-shadow: 0px 20px 20px 0px rgba(142, 120, 251, 0.25);
}

.button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  -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:before {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.button:active:before {
  background-color: rgba(0, 0, 0, 0.2);
}

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

.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: linear-gradient(180deg, #f887a9 0%, #f55484 100%);
  -webkit-box-shadow: 0px 20px 20px 0px rgba(245, 84, 132, 0.25);
  -moz-box-shadow: 0px 20px 20px 0px rgba(245, 84, 132, 0.25);
  box-shadow: 0px 20px 20px 0px rgba(245, 84, 132, 0.25);
}

.button_theme_success {
  background: linear-gradient(180deg, #82c999 0%, #66b57f 100%);
  -webkit-box-shadow: 0px 20px 20px 0px rgba(102, 181, 127, 0.25);
  -moz-box-shadow: 0px 20px 20px 0px rgba(102, 181, 127, 0.25);
  box-shadow: 0px 20px 20px 0px rgba(102, 181, 127, 0.25);
}

.button_theme_warning {
  background: linear-gradient(180deg, #ffb867 0%, #ff9a26 100%);
  -webkit-box-shadow: 0px 20px 20px 0px rgba(255, 154, 38, 0.25);
  -moz-box-shadow: 0px 20px 20px 0px rgba(255, 154, 38, 0.25);
  box-shadow: 0px 20px 20px 0px rgba(255, 154, 38, 0.25);
}

.button_theme_error {
  background: linear-gradient(180deg, #fc8882 0%, #ff6d66 100%);
  -webkit-box-shadow: 0px 20px 20px 0px rgba(255, 109, 102, 0.25);
  -moz-box-shadow: 0px 20px 20px 0px rgba(255, 109, 102, 0.25);
  box-shadow: 0px 20px 20px 0px rgba(255, 109, 102, 0.25);
}

.button_theme_info {
  background: linear-gradient(180deg, #8ccff2 0%, #5abaed 100%);
  -webkit-box-shadow: 0px 20px 20px 0px rgba(90, 186, 237, 0.25);
  -moz-box-shadow: 0px 20px 20px 0px rgba(90, 186, 237, 0.25);
  box-shadow: 0px 20px 20px 0px rgba(90, 186, 237, 0.25);
}

.button_theme_black {
  background: #000;
  -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.25);
}

/**
 * Прозрачная кнопка со основным цветом
 */
.button_theme_transparent {
  line-height: 38px;
  color: #fff;
  border: 2px solid #8e78fb;
  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: #ebedef !important;
}

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

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

/**
 * Модификаторы размеров
 */
.button_size_large {
  padding: 0 28px;
  height: 56px;
  font-size: 18px;
  line-height: 56px;
}

@media screen and (max-width: 739px) {
  .button_size_large {
    padding: 0 22px;
    height: 44.8px;
    font-size: 14px;
    line-height: 44.8px;
  }
}

.button_size_huge {
  padding: 0 40px;
  height: 80px;
  font-size: 25px;
  line-height: 80px;
}

@media screen and (max-width: 739px) {
  .button_size_huge {
    padding: 0 32px;
    height: 64px;
    font-size: 20px;
    line-height: 64px;
  }
}

/**
 * Основной стиль инпута
 */
.text {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  line-height: normal;
  vertical-align: middle;
  color: #0e1537;
  border: none;
  padding: 0 14px;
  height: 42px;
  line-height: 40px;
  font-size: 1rem;
  font-family: Manrope-SemiBold;
  color: #55595d;
  border: 1px solid #8e78fb;
  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 {
    border-color: #adb5bd;
  }
}

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

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

.text:-moz-read-only {
  color: #686d71;
  background-color: #f7f8f8;
}

.text:read-only {
  color: #686d71;
  background-color: #f7f8f8;
}

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

.text::-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 {
  cursor: pointer;
}

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

.text::-webkit-datetime-edit-day-field, .text::-webkit-datetime-edit-month-field, .text::-webkit-datetime-edit-year-field {
  color: #55595d;
}

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

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

.text::-webkit-calendar-picker-indicator {
  color: #9ca3aa;
}

/**
 * Скругленный инпут
 */
.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;
}

/**
 * Стили сайта
 */
.section {
  padding: 80px 0;
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .section {
    padding: 60px 0;
  }
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .section {
    padding: 40px 0;
  }
}

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

.section__title {
  margin-bottom: 40px;
  font-size: 34px;
  font-family: Rubik-Bold;
  line-height: 1.25;
}

@media screen and (max-width: 739px) {
  .section__title {
    margin-bottom: 24px;
    font-size: 24px;
  }
}

.welcome {
  padding: 40px 0;
  position: relative;
  background-image: url("/img/welcome-bg.webp");
  background-repeat: no-repeat;
  background-position: 20% center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
}

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

.welcome__logo {
  margin: 0 auto 60px;
  width: 280px;
}

@media screen and (max-width: 739px) {
  .welcome__logo {
    margin: 0 auto 24px;
    width: 180px;
  }
}

.welcome__container {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.welcome__girl {
  background-image: url("/img/welcome-girl.webp");
  background-repeat: no-repeat;
  background-position: center right;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-flex: 0 0 300px;
  flex: 0 0 300px;
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .welcome__girl {
    -webkit-flex: 0 0 270px;
    flex: 0 0 270px;
  }
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .welcome__girl {
    -webkit-flex: 0 0 230px;
    flex: 0 0 230px;
  }
}

@media screen and (max-width: 739px) {
  .welcome__girl {
    -webkit-flex: 0 0 140px;
    flex: 0 0 140px;
  }
}

.welcome__text {
  padding: 40px 0;
  padding-left: 60px;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .welcome__text {
    padding-left: 40px;
  }
}

@media screen and (max-width: 739px) {
  .welcome__text {
    padding: 0;
    padding-left: 20px;
  }
}

.welcome__heading {
  margin-bottom: 24px;
  font-size: 60px;
  font-family: Rubik-Bold;
  line-height: 1;
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .welcome__heading {
    font-size: 50px;
  }
}

@media screen and (max-width: 739px) {
  .welcome__heading {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.25;
  }
}

.welcome__description {
  margin-bottom: 40px;
  font-size: 28px;
  line-height: 1.25;
  color: #565b73;
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .welcome__description {
    font-size: 24px;
  }
}

@media screen and (max-width: 739px) {
  .welcome__description {
    margin-bottom: 24px;
    font-size: 18px;
  }
}

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

.welcome__action2 {
  margin-top: 20px;
  text-align: center;
}

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

.partners {
  position: relative;
}

.partners__spot-1 {
  top: -34px;
  left: -30px;
  transform: scale(1.5, 1);
}

@media screen and (max-width: 739px) {
  .partners__spot-1 {
    top: 0;
    left: 0;
    transform: scale(0.7, 0.7) translate(-50%, -50%);
  }
}

.partners__spot-2 {
  right: -100px;
  bottom: -60px;
  transform: rotate(0.43turn) scale(1.2);
  opacity: .6;
}

@media screen and (max-width: 739px) {
  .partners__spot-2 {
    right: 0;
    bottom: 0;
    transform: rotate(0.43turn) scale(1) translate(-25%, -50%);
  }
}

.partners__container {
  display: -webkit-flex;
  display: flex;
}

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

.partners__left {
  margin-top: 90px;
  width: 50%;
  margin-right: 20px;
}

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

.partners__right {
  width: 50%;
  margin-left: 40px;
}

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

@media screen and (min-width: 740px) {
  .partners__item + .partners__item {
    margin-top: 80px;
  }
}

@media screen and (max-width: 739px) {
  .partners__item {
    margin-bottom: 24px;
  }
}

.spot {
  position: absolute;
  z-index: -1;
  width: 730px;
  height: 600px;
  background-image: url(/img/spot.webp);
  background-repeat: no-repeat;
}

/**
 * Отзыв
 */
.review__header {
  text-decoration: none;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.review__avatar {
  margin-right: 24px;
  width: 80px;
  height: 80px;
  background-image: linear-gradient(135deg, #5abaed, #8e78fb, #f55484);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.review__avatar img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

@media screen and (max-width: 739px) {
  .review__avatar img {
    width: 58px;
    height: 58px;
  }
}

@media screen and (max-width: 739px) {
  .review__avatar {
    margin-right: 16px;
    width: 64px;
    height: 64px;
  }
}

.review__name {
  display: inline-block;
  font-size: 22px;
  font-family: Rubik-Bold;
  line-height: 1.5;
  color: #dd4c77;
  text-decoration: none;
}

@media screen and (max-width: 739px) {
  .review__name {
    font-size: 18px;
  }
}

.review__description {
  margin-top: 2px;
  font-size: 14px;
  color: #b0b0b0;
}

.review__text {
  margin-top: 16px;
  font-size: 20px;
  line-height: 1.4;
  color: #565b73;
}

@media screen and (max-width: 739px) {
  .review__text {
    margin-top: 12px;
    font-size: 16px;
  }
}

.card {
  padding: 28px;
  width: 230px;
  height: 220px;
  background: #8e78fb;
  background: linear-gradient(135deg, #d2c9fd 0%, #8e78fb 100%);
  box-shadow: 0px 67px 60px -45px rgba(142, 120, 251, 0.65);
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  border-radius: 32px;
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .card {
    padding: 24px;
    width: 175px;
    height: 175px;
  }
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .card {
    padding: 16px;
    width: 130px;
    height: 130px;
  }
}

@media screen and (max-width: 739px) {
  .card {
    padding: 16px;
    width: 130px;
    height: 130px;
  }
}

.card__icon {
  margin-bottom: 14px;
  color: #fff;
  font-size: 62px;
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .card__icon {
    margin-bottom: 12px;
    font-size: 48px;
  }
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .card__icon {
    margin-bottom: 8px;
    font-size: 36px;
  }
}

@media screen and (max-width: 739px) {
  .card__icon {
    margin-bottom: 8px;
    font-size: 36px;
  }
}

.card__name {
  position: relative;
  color: #fff;
  font-size: 24px;
  font-family: Rubik-Bold;
  line-height: 1.5;
}

.card__name:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 85%;
  height: 1px;
  background: #fff;
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .card__name {
    font-size: 20px;
  }
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .card__name {
    font-size: 15px;
  }
}

@media screen and (max-width: 739px) {
  .card__name {
    font-size: 15px;
  }
}

.card_theme_secondary {
  background: linear-gradient(135deg, #fbbbce 0%, #f55484 100%);
  box-shadow: 0px 67px 60px -45px rgba(245, 84, 132, 0.65);
}

.card_theme_info {
  background: linear-gradient(135deg, #bde3f8 0%, #5abaed 100%);
  box-shadow: 0px 67px 60px -45px rgba(90, 186, 237, 0.65);
}

.card_theme_warning {
  background: linear-gradient(135deg, #ffd7a8 0%, #ff9a26 100%);
  box-shadow: 0px 67px 60px -45px rgba(255, 154, 38, 0.65);
}

.card-list {
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 739px) {
  .card-list {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.card-list__item {
  margin-right: 24px;
}

.card-list__item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 739px) {
  .card-list__item {
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    width: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .card-list__item:nth-child(2n) {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}

.card-list__item_text {
  font-size: 18px;
  font-family: Rubik-Bold;
  line-height: 1.25;
  color: #565b73;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .card-list__item_text {
    font-size: 15px;
  }
}

@media screen and (max-width: 739px) {
  .card-list__item_text {
    width: 100%;
    font-size: 15px;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.howto {
  padding: 70px;
  background: #b0a1fc url(/img/howto.webp) center;
  background-size: cover;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
  border-radius: 80px;
  display: -webkit-flex;
  display: flex;
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .howto {
    padding: 60px;
  }
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .howto {
    padding: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
  }
}

@media screen and (max-width: 739px) {
  .howto {
    padding: 40px;
    background-image: url(/img/howto-mobile.webp);
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
  }
}

.howto__left {
  padding-right: 60px;
  width: 45%;
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .howto__left {
    padding-right: 40px;
    width: 40%;
  }
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .howto__left {
    padding-right: 24px;
    width: 40%;
  }
}

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

.howto__right {
  margin-bottom: -48px;
  width: 55%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .howto__right {
    width: 60%;
  }
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .howto__right {
    width: 60%;
  }
}

@media screen and (max-width: 739px) {
  .howto__right {
    margin-bottom: -24px;
    width: 100%;
  }
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .howto__title {
    font-size: 30px;
  }
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .howto__title {
    font-size: 26px;
  }
}

.howto__item {
  padding-left: 48px;
  padding-bottom: 48px;
  width: 50%;
}

@media screen and (min-width: 980px) and (max-width: 1219px) {
  .howto__item {
    padding-left: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .howto__item {
    padding-left: 32px;
    padding-bottom: 32px;
  }
}

@media screen and (max-width: 739px) {
  .howto__item {
    padding: 0 12px 24px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.howto__icon {
  margin-bottom: 24px;
  width: 64px;
  height: 64px;
  font-size: 32px;
  background-color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .howto__icon {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 739px) {
  .howto__icon {
    margin-bottom: 16px;
  }
}

.howto__icon .fa-solid, .howto__icon .fa-brands {
  background-clip: text;
  text-fill-color: transparent;
  background-image: linear-gradient(90deg, #5abaed, #8e78fb, #f55484);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.howto__text {
  font-size: 18px;
  line-height: 1.4;
}

.howto__text a {
  color: #2c5b74;
}

@media screen and (min-width: 740px) and (max-width: 979px) {
  .howto__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 739px) {
  .howto__text {
    width: 100%;
    font-size: 14px;
    word-break: break-word;
  }
}

.howto__action {
  display: none;
}

@media screen and (max-width: 739px) {
  .howto__action {
    display: block;
    margin-top: 24px;
    width: 100%;
    text-align: center;
  }
}

.features {
  display: -webkit-flex;
  display: flex;
}

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

.features__left {
  padding-right: 48px;
  width: 50%;
}

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

.features__right {
  padding-top: 48px;
  width: 50%;
}

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

.features__item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 70px;
  font-size: 24px;
  line-height: 1.5;
}

.features__item:before {
  position: absolute;
  top: -6px;
  left: 0;
  content: attr(data-number);
  color: #5abaed;
  font-size: 32px;
  vertical-align: middle;
}

@media screen and (max-width: 739px) {
  .features__item {
    padding-left: 60px;
    margin-bottom: 24px;
    font-size: 20px;
  }
  .features__item:before {
    font-size: 28px;
  }
}

.contacts {
  position: relative;
  text-align: center;
}

.contacts__title {
  margin-bottom: 20px;
}

.contacts__text {
  margin-bottom: 24px;
  font-size: 18px;
  color: #565b73;
}

.contacts__text span {
  color: #f55484;
}

.contacts__spot {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -300px;
  margin-left: -365px;
  opacity: .8;
}

.footer {
  padding: 12px 0;
  font-size: 12px;
  color: #565b73;
}

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

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

main {
  overflow: hidden;
}
