/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.button_theme_alfa-on-color {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  border-style: solid;
  border-width: 1px; }

.button_theme_alfa-on-color.button_hovered {
  border-color: rgba(255, 255, 255, 0.9); }

.button_theme_alfa-on-color.button_focused {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px #ffffff; }

.button_theme_alfa-on-color.button_focused.button_hovered {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px #ffffff; }

.button_theme_alfa-on-color.button_pressed,
.button_theme_alfa-on-color:active {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.9); }

.button_theme_alfa-on-color.button_checked,
.button_theme_alfa-on-color.button_view_action {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5); }

.button_theme_alfa-on-color.button_checked.button_hovered, .button_theme_alfa-on-color.button_view_action.button_hovered {
  background: rgba(255, 255, 255, 0.3); }

.button_theme_alfa-on-color.button_checked.button_pressed,
.button_theme_alfa-on-color.button_checked:active,
.button_theme_alfa-on-color.button_view_action.button_pressed,
.button_theme_alfa-on-color.button_view_action:active {
  background: rgba(255, 255, 255, 0.15); }

.button_theme_alfa-on-color.button_checked.button_focused, .button_theme_alfa-on-color.button_view_action.button_focused {
  border-color: rgba(255, 255, 255, 0.9); }

.button_theme_alfa-on-color.button_view_extra,
.button_theme_alfa-on-color.button_view_rounded {
  background: rgba(240, 50, 38, 0.85);
  border-color: rgba(240, 50, 38, 0.85);
  color: white; }

.button_theme_alfa-on-color.button_view_extra.button_hovered, .button_theme_alfa-on-color.button_view_rounded.button_hovered {
  background: #f03226;
  border-color: #f03226; }

.button_theme_alfa-on-color.button_view_extra.button_focused, .button_theme_alfa-on-color.button_view_rounded.button_focused {
  border-color: #ffffff; }

.button_theme_alfa-on-color.button_view_extra.button_pressed,
.button_theme_alfa-on-color.button_view_extra:active,
.button_theme_alfa-on-color.button_view_rounded.button_pressed,
.button_theme_alfa-on-color.button_view_rounded:active {
  background: #9e0c00;
  border-color: #9e0c00; }

.button_theme_alfa-on-color.button_pseudo {
  border-style: dashed; }

.button_theme_alfa-on-color.button_pseudo.button_focused {
  border-style: solid;
  border-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9); }

.button_theme_alfa-on-color.button_pseudo.button_focused.button_hovered {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7); }

.button_theme_alfa-on-color.button_disabled {
  background: rgba(255, 255, 255, 0.08);
  border-color: transparent; }

.button_theme_alfa-on-color.button_disabled .button__text {
  color: rgba(255, 255, 255, 0.4); }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.button {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
  cursor: pointer;
  outline: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  text-align: center;
  white-space: nowrap;
  transition-duration: 200ms;
  transition-property: background, border-color, color, width;
  transition-timing-function: ease;
  border-radius: 4px; }

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

.button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.button + .button {
  margin-left: 12px; }

.button__addon {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center; }

.button__content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center; }

.button__text {
  font-weight: 400;
  line-height: normal;
  padding: 0 0 1px; }

.button__icon {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding-right: 10px; }

.button_width_available {
  display: flex;
  width: 100%; }

.button_type_link {
  text-decoration: none; }

.button_focused {
  z-index: 1; }

.button_disabled {
  cursor: default;
  pointer-events: none; }

.button_disabled .button__icon {
  opacity: .25; }

.button_view_action .button__text,
.button_view_extra .button__text,
.button_view_rounded .button__text {
  font-weight: 500; }

.button > :last-child {
  padding-right: 0; }

.button_size_s {
  height: 30px;
  padding: 0 15px;
  font-size: 13px; }

.button_size_s .button__icon {
  margin-left: -4px; }

.button_size_m {
  height: 40px;
  padding: 0 20px;
  font-size: 16px; }

.button_size_m .button__icon {
  margin-left: -8px; }

.button_size_l {
  height: 50px;
  padding: 0 25px;
  font-size: 18px; }

.button_size_l .button__icon {
  margin-left: -12px; }

.button_size_xl {
  height: 60px;
  padding: 0 30px;
  font-size: 22px; }

.button_size_xl .button__icon {
  margin-left: -16px; }

.button_view_rounded.button_size_s {
  height: 33px;
  padding: 0 22.5px;
  border-radius: 16.5px; }

.button_view_rounded.button_size_m {
  height: 44px;
  padding: 0 30px;
  border-radius: 22px; }

.button_view_rounded.button_size_l {
  height: 55px;
  padding: 0 37.5px;
  border-radius: 27.5px; }

.button_view_rounded.button_size_xl {
  height: 66px;
  padding: 0 45px;
  border-radius: 33px; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.button_theme_alfa-on-white {
  color: rgba(11, 31, 53, 0.95);
  background: transparent;
  border-color: rgba(11, 31, 53, 0.4);
  border-style: solid;
  border-width: 1px; }

.button_theme_alfa-on-white.button_hovered {
  border-color: rgba(11, 31, 53, 0.9); }

.button_theme_alfa-on-white.button_focused {
  border-color: rgba(11, 31, 53, 0.9);
  box-shadow: inset 0 0 0 1px rgba(11, 31, 53, 0.95); }

.button_theme_alfa-on-white.button_focused.button_hovered {
  border-color: rgba(11, 31, 53, 0.9);
  box-shadow: inset 0 0 0 1px rgba(11, 31, 53, 0.95); }

.button_theme_alfa-on-white.button_pressed,
.button_theme_alfa-on-white:active {
  background: rgba(11, 31, 53, 0.05);
  border-color: rgba(11, 31, 53, 0.9); }

.button_theme_alfa-on-white.button_checked,
.button_theme_alfa-on-white.button_view_action {
  color: rgba(11, 31, 53, 0.95);
  background: rgba(11, 31, 53, 0.15);
  border-color: rgba(11, 31, 53, 0.5); }

.button_theme_alfa-on-white.button_checked.button_hovered, .button_theme_alfa-on-white.button_view_action.button_hovered {
  background: rgba(11, 31, 53, 0.25); }

.button_theme_alfa-on-white.button_checked.button_pressed,
.button_theme_alfa-on-white.button_checked:active,
.button_theme_alfa-on-white.button_view_action.button_pressed,
.button_theme_alfa-on-white.button_view_action:active {
  background: rgba(11, 31, 53, 0.3); }

.button_theme_alfa-on-white.button_checked.button_focused, .button_theme_alfa-on-white.button_view_action.button_focused {
  border-color: rgba(11, 31, 53, 0.9); }

.button_theme_alfa-on-white.button_view_extra,
.button_theme_alfa-on-white.button_view_rounded {
  color: white;
  background: rgba(240, 50, 38, 0.85);
  border-color: rgba(240, 50, 38, 0.85); }

.button_theme_alfa-on-white.button_view_extra.button_hovered, .button_theme_alfa-on-white.button_view_rounded.button_hovered {
  background: #f03226;
  border-color: #f03226; }

.button_theme_alfa-on-white.button_view_extra.button_focused, .button_theme_alfa-on-white.button_view_rounded.button_focused {
  border-color: rgba(11, 31, 53, 0.95); }

.button_theme_alfa-on-white.button_view_extra.button_pressed,
.button_theme_alfa-on-white.button_view_extra:active,
.button_theme_alfa-on-white.button_view_rounded.button_pressed,
.button_theme_alfa-on-white.button_view_rounded:active {
  background: #9e0c00;
  border-color: #9e0c00; }

.button_theme_alfa-on-white.button_view_extra.button_disabled, .button_theme_alfa-on-white.button_view_rounded.button_disabled {
  border-color: transparent;
  background: rgba(240, 50, 38, 0.25); }

.button_theme_alfa-on-white.button_view_extra.button_disabled .button__text, .button_theme_alfa-on-white.button_view_rounded.button_disabled .button__text {
  color: white; }

.button_theme_alfa-on-white.button_pseudo {
  border-style: dashed; }

.button_theme_alfa-on-white.button_pseudo.button_focused {
  border-color: rgba(11, 31, 53, 0.95);
  border-style: solid;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.9); }

.button_theme_alfa-on-white.button_pseudo.button_focused.button_hovered {
  border-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.7); }

.button_theme_alfa-on-white.button_disabled {
  border-color: transparent;
  background: rgba(11, 31, 53, 0.08); }

.button_theme_alfa-on-white.button_disabled .button__text {
  color: rgba(11, 31, 53, 0.3); }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.icon {
  display: inline-block;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat; }

.icon_size_xs {
  width: 12px;
  height: 12px; }

.icon_size_s {
  width: 18px;
  height: 18px; }

.icon_size_m {
  width: 24px;
  height: 24px; }

.icon_size_l {
  width: 30px;
  height: 30px; }

.icon_size_xl {
  width: 36px;
  height: 36px; }

.icon_size_xxl {
  width: 48px;
  height: 48px; }

.icon_size_xxxl {
  width: 88px;
  height: 88px; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.icon-button {
  opacity: .9;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  border-radius: none;
  box-shadow: none;
  transition-duration: 250ms;
  transition-property: background, opacity;
  transition-timing-function: ease; }

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

.icon-button_hovered,
.icon-button_focused {
  opacity: 1; }

.icon-button_disabled {
  opacity: .25;
  cursor: default; }

.icon-button_size_s {
  width: 30px;
  height: 30px; }

.icon-button_size_m {
  width: 34px;
  height: 40px; }

.icon-button_size_l {
  width: 44px;
  height: 50px; }

.icon-button_size_xl {
  width: 52px;
  height: 60px; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.input_theme_alfa-on-color .input__box {
  border-bottom-color: rgba(255, 255, 255, 0.4);
  border-bottom-style: solid;
  border-bottom-width: 1px; }

.input_theme_alfa-on-color .input__control {
  color: #ffffff; }

.input_theme_alfa-on-color .input__control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7); }

.input_theme_alfa-on-color .input__control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7); }

.input_theme_alfa-on-color .input__control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7); }

.input_theme_alfa-on-color .input__control::placeholder {
  color: rgba(255, 255, 255, 0.7); }

.input_theme_alfa-on-color .input__control:-webkit-autofill,
.input_theme_alfa-on-color .input__control:-webkit-autofill:hover,
.input_theme_alfa-on-color .input__control:-webkit-autofill:focus,
.input_theme_alfa-on-color .input__control:-webkit-autofill:active {
  -webkit-text-fill-color: #ffffff;
  caret-color: #ffffff; }

.input_theme_alfa-on-color .input__top,
.input_theme_alfa-on-color .input__sub {
  color: rgba(255, 255, 255, 0.7); }

.input_theme_alfa-on-color.input_has-label .input__control::-webkit-input-placeholder {
  color: transparent; }

.input_theme_alfa-on-color.input_has-label .input__control::-moz-placeholder {
  color: transparent; }

.input_theme_alfa-on-color.input_has-label .input__control::-ms-input-placeholder {
  color: transparent; }

.input_theme_alfa-on-color.input_has-label .input__control::placeholder {
  color: transparent; }

.input_theme_alfa-on-color.input_has-label.input_focused .input__control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7); }

.input_theme_alfa-on-color.input_has-label.input_focused .input__control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7); }

.input_theme_alfa-on-color.input_has-label.input_focused .input__control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7); }

.input_theme_alfa-on-color.input_has-label.input_focused .input__control::placeholder {
  color: rgba(255, 255, 255, 0.7); }

.input_theme_alfa-on-color.input_has-icon .input__icon {
  color: #ffffff; }

.input_theme_alfa-on-color.input_focused .input__box {
  border-bottom-color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.9); }

.input_theme_alfa-on-color.input_disabled .input__box {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-bottom-style: dashed;
  box-shadow: none; }

.input_theme_alfa-on-color.input_disabled,
.input_theme_alfa-on-color.input_disabled .input__control {
  color: rgba(255, 255, 255, 0.4); }

.input_theme_alfa-on-color.input_disabled:-webkit-autofill,
.input_theme_alfa-on-color.input_disabled:-webkit-autofill:hover,
.input_theme_alfa-on-color.input_disabled:-webkit-autofill:focus,
.input_theme_alfa-on-color.input_disabled:-webkit-autofill:active,
.input_theme_alfa-on-color.input_disabled .input__control:-webkit-autofill,
.input_theme_alfa-on-color.input_disabled .input__control:-webkit-autofill:hover,
.input_theme_alfa-on-color.input_disabled .input__control:-webkit-autofill:focus,
.input_theme_alfa-on-color.input_disabled .input__control:-webkit-autofill:active {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.4); }

.input_theme_alfa-on-color.input_disabled .input__control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4); }

.input_theme_alfa-on-color.input_disabled .input__control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4); }

.input_theme_alfa-on-color.input_disabled .input__control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4); }

.input_theme_alfa-on-color.input_disabled .input__control::placeholder {
  color: rgba(255, 255, 255, 0.4); }

.input_theme_alfa-on-color.input_disabled .input__icon {
  opacity: .25; }

.input_theme_alfa-on-color.input_invalid .input__sub {
  color: #ff5c5c; }

.input_theme_alfa-on-color.input_invalid .input__box {
  border-bottom-color: rgba(255, 92, 92, 0.85); }

.input_theme_alfa-on-color.input_invalid.input_focused .input__box {
  border-bottom-color: rgba(255, 92, 92, 0.85);
  box-shadow: inset 0 -1px 0 rgba(255, 92, 92, 0.85); }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.input_theme_alfa-on-white .input__box {
  border-bottom-color: rgba(11, 31, 53, 0.4);
  border-bottom-style: solid;
  border-bottom-width: 1px; }

.input_theme_alfa-on-white .input__control {
  color: rgba(11, 31, 53, 0.95); }

.input_theme_alfa-on-white .input__control::-webkit-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_theme_alfa-on-white .input__control::-moz-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_theme_alfa-on-white .input__control::-ms-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_theme_alfa-on-white .input__control::placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_theme_alfa-on-white .input__control:-webkit-autofill,
.input_theme_alfa-on-white .input__control:-webkit-autofill:hover,
.input_theme_alfa-on-white .input__control:-webkit-autofill:focus,
.input_theme_alfa-on-white .input__control:-webkit-autofill:active {
  -webkit-text-fill-color: rgba(11, 31, 53, 0.95);
  caret-color: rgba(11, 31, 53, 0.95); }

.input_theme_alfa-on-white .input__top,
.input_theme_alfa-on-white .input__sub {
  color: rgba(11, 31, 53, 0.6); }

.input_theme_alfa-on-white.input_has-label .input__control::-webkit-input-placeholder {
  color: transparent; }

.input_theme_alfa-on-white.input_has-label .input__control::-moz-placeholder {
  color: transparent; }

.input_theme_alfa-on-white.input_has-label .input__control::-ms-input-placeholder {
  color: transparent; }

.input_theme_alfa-on-white.input_has-label .input__control::placeholder {
  color: transparent; }

.input_theme_alfa-on-white.input_has-label.input_focused .input__control::-webkit-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_theme_alfa-on-white.input_has-label.input_focused .input__control::-moz-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_theme_alfa-on-white.input_has-label.input_focused .input__control::-ms-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_theme_alfa-on-white.input_has-label.input_focused .input__control::placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_theme_alfa-on-white.input_has-icon .input__icon {
  color: rgba(11, 31, 53, 0.95); }

.input_theme_alfa-on-white.input_focused .input__box {
  border-bottom-color: rgba(11, 31, 53, 0.9);
  box-shadow: inset 0 -1px 0 rgba(11, 31, 53, 0.9); }

.input_theme_alfa-on-white.input_disabled .input__box {
  border-bottom-color: rgba(11, 31, 53, 0.2);
  border-bottom-style: dashed;
  box-shadow: none; }

.input_theme_alfa-on-white.input_disabled,
.input_theme_alfa-on-white.input_disabled .input__control {
  color: rgba(11, 31, 53, 0.3); }

.input_theme_alfa-on-white.input_disabled:-webkit-autofill,
.input_theme_alfa-on-white.input_disabled:-webkit-autofill:hover,
.input_theme_alfa-on-white.input_disabled:-webkit-autofill:focus,
.input_theme_alfa-on-white.input_disabled:-webkit-autofill:active,
.input_theme_alfa-on-white.input_disabled .input__control:-webkit-autofill,
.input_theme_alfa-on-white.input_disabled .input__control:-webkit-autofill:hover,
.input_theme_alfa-on-white.input_disabled .input__control:-webkit-autofill:focus,
.input_theme_alfa-on-white.input_disabled .input__control:-webkit-autofill:active {
  -webkit-text-fill-color: rgba(11, 31, 53, 0.3); }

.input_theme_alfa-on-white.input_disabled .input__control::-webkit-input-placeholder {
  color: rgba(11, 31, 53, 0.3); }

.input_theme_alfa-on-white.input_disabled .input__control::-moz-placeholder {
  color: rgba(11, 31, 53, 0.3); }

.input_theme_alfa-on-white.input_disabled .input__control::-ms-input-placeholder {
  color: rgba(11, 31, 53, 0.3); }

.input_theme_alfa-on-white.input_disabled .input__control::placeholder {
  color: rgba(11, 31, 53, 0.3); }

.input_theme_alfa-on-white.input_disabled .input__icon {
  opacity: .25; }

.input_theme_alfa-on-white.input_invalid .input__sub {
  color: #ff5c5c; }

.input_theme_alfa-on-white.input_invalid .input__box {
  border-bottom-color: rgba(255, 92, 92, 0.85); }

.input_theme_alfa-on-white.input_invalid.input_focused .input__box {
  border-bottom-color: rgba(255, 92, 92, 0.85);
  box-shadow: inset 0 -1px 0 rgba(255, 92, 92, 0.85); }
@charset "UTF-8";
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.input {
  display: inline-block;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  font-weight: 400; }

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

.input__inner {
  display: inline-table;
  position: relative;
  width: 100%; }

.input__box {
  overflow: hidden;
  display: table-cell;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition-duration: 250ms;
  transition-property: border-bottom-color, box-shadow, width, background-color;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* TODO @teryaew: add custom easings to styles */
  -webkit-touch-callout: none; }

.input__top {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  transition-duration: 200ms;
  transition-property: color, font-size, -webkit-transform;
  transition-property: color, transform, font-size;
  transition-property: color, transform, font-size, -webkit-transform;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1); }

.input__sub {
  display: table-caption;
  caption-side: bottom;
  padding-top: 5px;
  padding-right: 12px;
  white-space: normal; }

.input__control {
  display: inline-block;
  position: relative;
  width: 100%;
  /** Если использовать `height: 100%` поле схлопывается в Safari v10.1.2. **/
  min-height: 100%;
  margin: 0;
  padding: 0;
  outline: none;
  font: inherit;
  font-weight: 400;
  line-height: inherit;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.input__control:invalid {
  box-shadow: none; }

.input__control::-webkit-search-decoration {
  -webkit-appearance: none; }

.input__control::-webkit-search-cancel-button {
  display: none; }

.input__control::-webkit-input-placeholder {
  text-indent: 0; }

.input__control::-moz-placeholder {
  opacity: 1; }

.input__control::-ms-clear {
  display: none; }

.input__control[placeholder],
.input__control::-webkit-input-placeholder {
  text-overflow: ellipsis;
  transition: opacity .2s ease-in-out, color .2s ease-in-out; }

.input__control[placeholder],
.input__control::-moz-placeholder {
  text-overflow: ellipsis;
  transition: opacity .2s ease-in-out, color .2s ease-in-out; }

.input__control[placeholder],
.input__control::-ms-input-placeholder {
  text-overflow: ellipsis;
  transition: opacity .2s ease-in-out, color .2s ease-in-out; }

.input__control[placeholder],
.input__control::placeholder {
  text-overflow: ellipsis;
  transition: opacity .2s ease-in-out, color .2s ease-in-out; }

.input__control:-webkit-autofill,
.input__control:-webkit-autofill:hover,
.input__control:-webkit-autofill:focus,
.input__control:-webkit-autofill:active {
  /* Hack from http://stackoverflow.com/a/29350537 */
  transition: background-color 999999s ease-in-out 0s; }

.input_has-label .input__control::-webkit-input-placeholder {
  opacity: 0; }

.input_has-label .input__control::-moz-placeholder {
  opacity: 0; }

.input_has-label .input__control::-ms-input-placeholder {
  opacity: 0; }

.input_has-label .input__control::placeholder {
  opacity: 0; }

.input_has-label.input_focused .input__control::-webkit-input-placeholder {
  opacity: 1; }

.input_has-label.input_focused .input__control::-moz-placeholder {
  opacity: 1; }

.input_has-label.input_focused .input__control::-ms-input-placeholder {
  opacity: 1; }

.input_has-label.input_focused .input__control::placeholder {
  opacity: 1; }

.input_has-clear .input__control {
  padding-right: 0;
  text-overflow: ellipsis; }

.input__clear {
  opacity: .6;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: inherit;
  font: inherit;
  background: none;
  background-position: center center;
  background-repeat: no-repeat;
  border: none;
  transition: opacity 0.1s ease-out; }

.input__clear:hover {
  opacity: 1; }

.input_has-icon .input__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  transition: all 200ms ease; }

.input_has-icon .input__control {
  padding-right: 2px;
  text-overflow: ellipsis; }

.input_width_available {
  width: 100%; }

/* Override table styles by flex */
.input.input_has-addons .input__box {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content: space-between;
  width: 100%;
  height: 100%; }

.input.input_has-addons .input__control {
  padding-right: 12px; }

.input.input_has-addons .input__addons_left + .input__control {
  padding-right: 0;
  padding-left: 12px; }

/* If has left & right addons */
.input.input_has-addons .input__control:nth-child(2):nth-last-child(2) {
  padding-right: 12px; }

.input__addons {
  display: flex;
  flex-shrink: 0;
  /* Avoid overflow cutting of addons in IE11 */
  align-items: center; }

.input_type_hidden {
  display: none !important; }

/* reset for ios */
.input__control:disabled {
  opacity: 1; }

.input_focused {
  z-index: 1; }

.input_disabled:before,
.input_disabled .input__clear {
  display: none; }

.input_disabled .input_has-value::-webkit-input-placeholder {
  opacity: .6; }

.input_disabled .input_has-value::-moz-placeholder {
  opacity: .6; }

.input_disabled .input_has-value::-ms-input-placeholder {
  opacity: .6; }

.input_disabled .input_has-value::placeholder {
  opacity: .6; }

.input_disabled .input__box,
.input_disabled .input__control {
  cursor: default; }

.input_type_password .input__control {
  text-overflow: clip; }

.input_size_s.input_has-label {
  padding-top: 9px; }

.input_size_s .input__top {
  line-height: 30px; }

.input_size_s.input_focused .input__top, .input_size_s.input_has-value .input__top {
  -webkit-transform: scale(0.92308) translateY(-22px);
  transform: scale(0.92308) translateY(-22px);
  width: 107.692%; }

.input_size_s .input__top,
.input_size_s .input__box {
  font-size: 13px; }

.input_size_s .input__box {
  height: 30px; }

.input_size_s .input__sub {
  font-size: 12px; }

.input_size_s .input__control {
  padding: 7px 0; }

.input_size_s.input_has-clear .input__box,
.input_size_s.input_has-icon .input__box {
  padding-right: 30px; }

.input_size_s.input_has-icon .input__icon {
  width: 30px;
  height: 30px;
  line-height: 28px; }

.input_size_m.input_has-label {
  padding-top: 6px; }

.input_size_m .input__top {
  line-height: 40px; }

.input_size_m.input_focused .input__top, .input_size_m.input_has-value .input__top {
  -webkit-transform: scale(0.8125) translateY(-30px);
  transform: scale(0.8125) translateY(-30px);
  width: 118.75%; }

.input_size_m .input__top,
.input_size_m .input__box {
  font-size: 16px; }

.input_size_m .input__box {
  height: 40px; }

.input_size_m .input__sub {
  font-size: 13px; }

.input_size_m .input__control {
  padding: 10px 0; }

.input_size_m.input_has-clear .input__box,
.input_size_m.input_has-icon .input__box {
  padding-right: 34px; }

.input_size_m.input_has-icon .input__icon {
  width: 34px;
  height: 40px;
  line-height: 38px; }

.input_size_l.input_has-label {
  padding-top: 14px; }

.input_size_l .input__top {
  line-height: 50px; }

.input_size_l.input_focused .input__top, .input_size_l.input_has-value .input__top {
  -webkit-transform: scale(0.88889) translateY(-40px);
  transform: scale(0.88889) translateY(-40px);
  width: 111.111%; }

.input_size_l .input__top,
.input_size_l .input__box {
  font-size: 18px; }

.input_size_l .input__box {
  height: 50px; }

.input_size_l .input__sub {
  font-size: 16px; }

.input_size_l .input__control {
  padding: 14px 0; }

.input_size_l.input_has-clear .input__box,
.input_size_l.input_has-icon .input__box {
  padding-right: 44px; }

.input_size_l.input_has-icon .input__icon {
  width: 44px;
  height: 50px;
  line-height: 48px; }

.input_size_xl.input_has-label {
  padding-top: 13px; }

.input_size_xl .input__top {
  line-height: 60px; }

.input_size_xl.input_focused .input__top, .input_size_xl.input_has-value .input__top {
  -webkit-transform: scale(0.81818) translateY(-50px);
  transform: scale(0.81818) translateY(-50px);
  width: 118.182%; }

.input_size_xl .input__top,
.input_size_xl .input__box {
  font-size: 22px; }

.input_size_xl .input__box {
  height: 60px; }

.input_size_xl .input__sub {
  font-size: 18px; }

.input_size_xl .input__control {
  padding: 17px 0; }

.input_size_xl.input_has-clear .input__box,
.input_size_xl.input_has-icon .input__box {
  padding-right: 52px; }

.input_size_xl.input_has-icon .input__icon {
  width: 52px;
  height: 60px;
  line-height: 58px; }

/* IE fix for input with label and placeholder */
.input_has-label .input__control:-ms-input-placeholder {
  opacity: 0; }

.input_view_filled.input_size_s .input__top {
  line-height: 43px;
  padding: 0 8px; }

.input_view_filled.input_size_s .input__box {
  height: 42px;
  padding: 0 8px; }

.input_view_filled.input_size_s .input__control {
  height: 42px; }

.input_view_filled.input_size_s .input__top,
.input_view_filled.input_size_s .input__box {
  font-size: 13px; }

.input_view_filled.input_size_s.input_has-label .input__control {
  padding-top: 21px;
  padding-bottom: 7px; }

.input_view_filled.input_size_s.input_focused .input__top, .input_view_filled.input_size_s.input_has-value .input__top {
  font-size: 12px;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px); }

.input_view_filled.input_size_s.input_has-icon .input__icon,
.input_view_filled.input_size_s.input_has-icon .input__clear,
.input_view_filled.input_size_s.input_has-clear .input__icon,
.input_view_filled.input_size_s.input_has-clear .input__clear {
  top: 50%;
  width: 40px;
  height: 42px;
  margin-top: -21px; }

.input_view_filled.input_size_s.input_has-icon .input__box, .input_view_filled.input_size_s.input_has-clear .input__box {
  padding-right: 40px; }

.input_view_filled.input_size_s.input_has-addons .input__box {
  height: 43px; }

.input_view_filled.input_size_s.input_has-left-addons .input__top {
  padding-left: 38px; }

.input_view_filled.input_size_m .input__top {
  line-height: 56px;
  padding: 0 12px; }

.input_view_filled.input_size_m .input__box {
  height: 56px;
  padding: 0 12px; }

.input_view_filled.input_size_m .input__control {
  min-height: 56px; }

.input_view_filled.input_size_m .input__top,
.input_view_filled.input_size_m .input__box {
  font-size: 16px; }

.input_view_filled.input_size_m.input_has-label .input__control {
  padding-top: 26px;
  padding-bottom: 8px; }

.input_view_filled.input_size_m.input_focused .input__top, .input_view_filled.input_size_m.input_has-value .input__top {
  font-size: 13px;
  -webkit-transform: translateY(-12px);
  transform: translateY(-12px); }

.input_view_filled.input_size_m.input_has-icon .input__icon,
.input_view_filled.input_size_m.input_has-icon .input__clear,
.input_view_filled.input_size_m.input_has-clear .input__icon,
.input_view_filled.input_size_m.input_has-clear .input__clear {
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px; }

.input_view_filled.input_size_m.input_has-icon .input__box, .input_view_filled.input_size_m.input_has-clear .input__box {
  padding-right: 48px; }

.input_view_filled.input_size_m.input_has-addons .input__box {
  height: 56px; }

.input_view_filled.input_size_m.input_has-left-addons .input__top {
  padding-left: 48px; }

.input_view_filled .input__top {
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%; }

.input_view_filled .input__box {
  border-bottom-color: rgba(11, 31, 53, 0.15);
  background-color: rgba(11, 31, 53, 0.05);
  border-radius: 4px 4px 0 0; }

.input_view_filled .input__box:hover {
  background-color: rgba(11, 31, 53, 0.1);
  border-color: rgba(11, 31, 53, 0.6); }

.input_view_filled__sub {
  padding-top: 4px;
  padding-right: 12px;
  font-size: 13px;
  line-height: 1.2; }

.input_view_filled .input__top,
.input_view_filled .input__sub {
  color: rgba(11, 31, 53, 0.6); }

.input_view_filled .input__control {
  padding: 8px 0;
  color: #0b1f35;
  /*
        &:-webkit-autofill,
        &:-webkit-autofill:hover,
        &:-webkit-autofill:focus,
        &:-webkit-autofill:active {
            -webkit-text-fill-color: var(--color-content-alfa-on-white) !important;
        }
        */ }

.input_view_filled .input__control::-webkit-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_view_filled .input__control::-moz-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_view_filled .input__control::-ms-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_view_filled .input__control::placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_view_filled.input_focused .input__box {
  border-bottom-color: #0b1f35;
  box-shadow: inset 0 -1px 0 #0b1f35; }

.input_view_filled.input_has-label {
  padding-top: 0; }

.input_view_filled.input_has-label .input__control::-webkit-input-placeholder {
  color: transparent; }

.input_view_filled.input_has-label .input__control::-moz-placeholder {
  color: transparent; }

.input_view_filled.input_has-label .input__control::-ms-input-placeholder {
  color: transparent; }

.input_view_filled.input_has-label .input__control::placeholder {
  color: transparent; }

.input_view_filled.input_has-label.input_focused .input__control::-webkit-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_view_filled.input_has-label.input_focused .input__control::-moz-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_view_filled.input_has-label.input_focused .input__control::-ms-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_view_filled.input_has-label.input_focused .input__control::placeholder {
  color: rgba(11, 31, 53, 0.6); }

.input_view_filled.input_focused .input__top, .input_view_filled.input_has-value .input__top {
  width: auto; }

.input_view_filled.input_has-addons .input__addons_left + .input__control {
  padding-right: 12px; }

.input_view_filled.input_has-addons .input__control {
  padding-left: 12px;
  padding-right: 12px; }

.input_view_filled.input_has-addons .input__control:first-child {
  padding-left: 0; }

.input_view_filled.input_has-addons .input__control:last-child {
  padding-right: 0; }

.input_view_filled.input_disabled .input__box {
  background-color: rgba(11, 31, 53, 0.1);
  border-bottom-color: rgba(11, 31, 53, 0.15);
  border-bottom-style: dashed;
  box-shadow: none; }

.input_view_filled.input_disabled .input__control {
  color: rgba(11, 31, 53, 0.6); }

.input_view_filled.input_disabled .input__top, .input_view_filled.input_disabled .input__control::-webkit-input-placeholder {
  color: rgba(11, 31, 53, 0.3); }

.input_view_filled.input_disabled .input__top, .input_view_filled.input_disabled .input__control::-moz-placeholder {
  color: rgba(11, 31, 53, 0.3); }

.input_view_filled.input_disabled .input__top, .input_view_filled.input_disabled .input__control::-ms-input-placeholder {
  color: rgba(11, 31, 53, 0.3); }

.input_view_filled.input_disabled .input__top, .input_view_filled.input_disabled .input__control::placeholder {
  color: rgba(11, 31, 53, 0.3); }

.input_view_filled.input_invalid .input__sub {
  color: #ff5c5c; }

.input_view_filled.input_invalid .input__box {
  border-bottom-color: #ff5c5c;
  box-shadow: inset 0 -1px 0 #ff5c5c; }

.input_view_filled.input_invalid.input_focused .input__box {
  border-bottom-color: #ff5c5c;
  box-shadow: inset 0 -1px 0 #ff5c5c; }
.heading {
  margin: 0;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  font-weight: 700; }

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

.heading_size_xl {
  font-size: 30px;
  line-height: 1.2; }

@media (min-width: 600px) {
  .heading_size_xl {
    font-size: 40px; } }

@media (min-width: 1024px) {
  .heading_size_xl {
    font-size: 48px;
    line-height: 1.1; } }

.heading_margins_xl {
  margin: 0 0 24px; }

.heading_size_l {
  font-size: 22px;
  line-height: 1.2; }

@media (min-width: 600px) {
  .heading_size_l {
    font-size: 30px; } }

@media (min-width: 1024px) {
  .heading_size_l {
    font-size: 40px; } }

.heading_margins_l {
  margin: 40px 0 16px; }

@media (min-width: 600px) {
  .heading_margins_l {
    margin: 48px 0 24px; } }

.heading_size_m {
  font-size: 18px;
  line-height: 1.3; }

@media (min-width: 600px) {
  .heading_size_m {
    font-size: 22px;
    line-height: 1.2; } }

@media (min-width: 1024px) {
  .heading_size_m {
    font-size: 30px; } }

.heading_margins_m {
  margin: 40px 0 16px; }

@media (min-width: 1024px) {
  .heading_margins_m {
    margin: 48px 0 24px; } }

.heading_size_s {
  font-size: 18px;
  line-height: 1.3; }

@media (min-width: 600px) {
  .heading_size_s {
    font-size: 22px;
    line-height: 1.2; } }

.heading_margins_s {
  margin: 40px 0 16px; }

.heading_size_xs {
  font-size: 18px;
  line-height: 1.3; }

.heading_margins_xs {
  margin: 40px 0 16px; }

.heading + .heading {
  margin-top: 0; }

.heading_theme_alfa-on-color {
  color: #ffffff; }

.heading_theme_alfa-on-white {
  color: rgba(11, 31, 53, 0.95); }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.label {
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  font-weight: 400; }

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

.label__inner {
  display: inline-block;
  max-width: 100%; }

.label_no-wrap .label__inner {
  display: inline;
  white-space: nowrap; }

.label_size_s {
  font-size: 13px;
  line-height: 1.4; }

.label_size_m {
  font-size: 16px;
  line-height: 1.4; }

.label_size_l {
  font-size: 18px;
  line-height: 1.3; }

.label_size_xl {
  font-size: 22px;
  line-height: 1.2; }

.label_size_2xl {
  font-size: 30px;
  line-height: 1.2; }

.label_size_3xl {
  font-size: 40px;
  line-height: 1.2; }

.label_size_4xl {
  font-size: 48px;
  line-height: 1.1; }

.label_theme_alfa-on-color {
  color: #ffffff; }

.label_theme_alfa-on-color.label_disabled {
  color: rgba(255, 255, 255, 0.4); }

.label_theme_alfa-on-white {
  color: rgba(11, 31, 53, 0.95); }

.label_theme_alfa-on-white.label_disabled {
  color: rgba(11, 31, 53, 0.3); }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.amount {
  display: inline-block;
  white-space: nowrap; }

.amount__minor-container {
  display: inline-block; }

.amount__currency {
  display: inline-block;
  text-align: right; }

.amount_bold .amount__major {
  font-weight: 700; }

.amount__separator,
.amount__minor,
.amount__currency {
  opacity: .6; }

.amount_bold .amount__separator, .amount_bold .amount__minor, .amount_bold .amount__currency {
  font-weight: 700; }

.amount .heading {
  margin: 0; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.money-input {
  display: inline-block;
  position: relative; }

.money-input__currency {
  display: none;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: inherit;
  line-height: inherit;
  pointer-events: none; }

.input_size_s .money-input__currency {
  top: 7px; }

.input_size_m .money-input__currency {
  top: 10px; }

.input_size_l .money-input__currency {
  top: 14px; }

.input_size_xl .money-input__currency {
  top: 17px; }

.input_has-value .money-input__currency, .input_focused .money-input__currency {
  display: block; }

.input_view_filled.input_size_s .money-input__currency {
  left: 8px;
  top: 0;
  line-height: 42px; }

.input_view_filled.input_has-label.input_size_s .money-input__currency {
  top: 20px;
  line-height: inherit; }

.input_view_filled.input_size_m .money-input__currency {
  left: 12px;
  top: 0;
  line-height: 56px; }

.input_view_filled.input_has-label.input_size_m .money-input__currency {
  top: 28px;
  line-height: inherit; }

.money-input__value {
  margin-right: 0.25em;
  color: transparent;
  font-weight: 400; }

.money-input_currency .input .input__addons_left {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap; }

.money-input_currency .input .input__addons_left + .input__control {
  padding-left: 0; }

.money-input_currency .input_view_filled.input_size_s .input__top {
  padding-left: 8px; }

.money-input_currency .input_view_filled.input_size_m .input__top {
  padding-left: 12px; }

.money-input_bold .input__control, .money-input_bold .money-input__value {
  font-weight: 700; }

.money-input_width_available {
  width: 100%; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.textarea {
  display: inline-block;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  font-weight: 400; }

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

.textarea__inner {
  display: inline-table;
  position: relative;
  width: 100%; }

.textarea__top {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  transition-duration: 200ms;
  transition-property: color, font-size, -webkit-transform;
  transition-property: color, transform, font-size;
  transition-property: color, transform, font-size, -webkit-transform;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1); }

.textarea__sub {
  display: table-caption;
  caption-side: bottom;
  padding-top: 5px;
  padding-right: 12px;
  white-space: normal; }

.textarea__control {
  overflow-y: auto;
  display: table-cell;
  vertical-align: top;
  position: relative;
  width: 100%;
  min-width: 150px;
  margin: 0;
  padding: 0;
  outline: none;
  font: inherit;
  background: none;
  border: none;
  border-radius: 0;
  transition-duration: 250ms;
  transition-property: border-bottom-color, box-shadow, width, background-color;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.textarea__control::-webkit-input-placeholder {
  text-indent: 0; }

.textarea__control::-moz-placeholder {
  opacity: 1; }

.textarea__control::-ms-input-placeholder {
  transition: opacity .2s ease-in-out; }

.textarea__control::placeholder {
  transition: opacity .2s ease-in-out; }

.textarea_has-label .textarea__control::-webkit-input-placeholder {
  opacity: 0; }

.textarea_has-label .textarea__control::-moz-placeholder {
  opacity: 0; }

.textarea_has-label .textarea__control::-ms-input-placeholder {
  opacity: 0; }

.textarea_has-label .textarea__control::placeholder {
  opacity: 0; }

.textarea_has-label.textarea_focused .textarea__control::-webkit-input-placeholder {
  opacity: 1; }

.textarea_has-label.textarea_focused .textarea__control::-moz-placeholder {
  opacity: 1; }

.textarea_has-label.textarea_focused .textarea__control::-ms-input-placeholder {
  opacity: 1; }

.textarea_has-label.textarea_focused .textarea__control::placeholder {
  opacity: 1; }

.textarea_focused {
  z-index: 1; }

.textarea_disabled {
  cursor: default; }

.textarea_disabled .textarea__control {
  resize: none; }

.textarea_width_available {
  width: 100%;
  min-width: 0; }

.textarea_resize_none .textarea__control {
  resize: none; }

.textarea_resize_both .textarea__control {
  resize: both; }

.textarea_resize_horizontal .textarea__control {
  resize: horizontal; }

.textarea_resize_vertical .textarea__control {
  resize: vertical; }

.textarea_autosize .textarea__control {
  overflow-x: hidden; }

.textarea_size_s.textarea_has-label {
  padding-top: 9px; }

.textarea_size_s .textarea__top {
  line-height: 30px; }

.textarea_size_s .textarea__top,
.textarea_size_s .textarea__control {
  font-size: 13px; }

.textarea_size_s .textarea__control {
  min-height: 22px;
  margin-top: 8px;
  padding-bottom: 8px; }

.textarea_size_s .textarea__sub {
  font-size: 12px; }

.textarea_size_s.textarea_focused .textarea__top, .textarea_size_s.textarea_has-value .textarea__top {
  -webkit-transform: scale(0.92308) translateY(-22px);
  transform: scale(0.92308) translateY(-22px);
  width: 107.692%; }

.textarea_size_m.textarea_has-label {
  padding-top: 6px; }

.textarea_size_m .textarea__top {
  line-height: 40px; }

.textarea_size_m .textarea__top,
.textarea_size_m .textarea__control {
  font-size: 16px; }

.textarea_size_m .textarea__control {
  min-height: 30px;
  margin-top: 10px;
  padding-bottom: 10px; }

.textarea_size_m .textarea__sub {
  font-size: 13px; }

.textarea_size_m.textarea_focused .textarea__top, .textarea_size_m.textarea_has-value .textarea__top {
  -webkit-transform: scale(0.8125) translateY(-30px);
  transform: scale(0.8125) translateY(-30px);
  width: 118.75%; }

.textarea_size_l.textarea_has-label {
  padding-top: 14px; }

.textarea_size_l .textarea__top {
  line-height: 50px; }

.textarea_size_l .textarea__top,
.textarea_size_l .textarea__control {
  font-size: 18px; }

.textarea_size_l .textarea__control {
  min-height: 38px;
  margin-top: 12px;
  padding-bottom: 12px; }

.textarea_size_l .textarea__sub {
  font-size: 16px; }

.textarea_size_l.textarea_focused .textarea__top, .textarea_size_l.textarea_has-value .textarea__top {
  -webkit-transform: scale(0.88889) translateY(-40px);
  transform: scale(0.88889) translateY(-40px);
  width: 111.111%; }

.textarea_size_xl.textarea_has-label {
  padding-top: 13px; }

.textarea_size_xl .textarea__top {
  line-height: 60px; }

.textarea_size_xl .textarea__top,
.textarea_size_xl .textarea__control {
  font-size: 22px; }

.textarea_size_xl .textarea__control {
  min-height: 46px;
  margin-top: 14px;
  padding-bottom: 14px; }

.textarea_size_xl .textarea__sub {
  font-size: 18px; }

.textarea_size_xl.textarea_focused .textarea__top, .textarea_size_xl.textarea_has-value .textarea__top {
  -webkit-transform: scale(0.81818) translateY(-50px);
  transform: scale(0.81818) translateY(-50px);
  width: 118.182%; }

.textarea_view_filled.textarea_size_s .textarea__top {
  padding: 0 8px;
  line-height: 43px; }

.textarea_view_filled.textarea_size_s .textarea__control {
  min-height: 43px;
  padding: 14px 8px 6px; }

.textarea_view_filled.textarea_size_s .textarea__top,
.textarea_view_filled.textarea_size_s .textarea__control {
  font-size: 13px; }

.textarea_view_filled.textarea_size_s .textarea__sub {
  padding-top: 4px;
  padding-right: 8px;
  font-size: 12px; }

.textarea_view_filled.textarea_size_s.textarea_has-label .textarea__control {
  padding-top: 21px; }

.textarea_view_filled.textarea_size_s.textarea_focused .textarea__top, .textarea_view_filled.textarea_size_s.textarea_has-value .textarea__top {
  font-size: 12px;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px); }

.textarea_view_filled.textarea_size_m .textarea__top {
  padding: 0 12px;
  line-height: 56px; }

.textarea_view_filled.textarea_size_m .textarea__control {
  min-height: 56px;
  padding: 18px 12px 8px; }

.textarea_view_filled.textarea_size_m .textarea__top,
.textarea_view_filled.textarea_size_m .textarea__control {
  font-size: 16px; }

.textarea_view_filled.textarea_size_m .textarea__sub {
  padding-top: 4px;
  padding-right: 12px;
  font-size: 13px; }

.textarea_view_filled.textarea_size_m.textarea_has-label .textarea__control {
  padding-top: 28px; }

.textarea_view_filled.textarea_size_m.textarea_focused .textarea__top, .textarea_view_filled.textarea_size_m.textarea_has-value .textarea__top {
  font-size: 13px;
  -webkit-transform: translateY(-12px);
  transform: translateY(-12px); }

.textarea_view_filled .textarea__top {
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  will-change: transform; }

.textarea_view_filled .textarea__control {
  margin: 0;
  color: #0b1f35;
  border-bottom-color: rgba(11, 31, 53, 0.15);
  background-color: rgba(11, 31, 53, 0.05);
  border-radius: 4px 4px 0 0; }

.textarea_view_filled .textarea__control:hover {
  background-color: rgba(11, 31, 53, 0.1);
  border-color: rgba(11, 31, 53, 0.6); }

.textarea_view_filled .textarea__control::-webkit-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.textarea_view_filled .textarea__control::-moz-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.textarea_view_filled .textarea__control::-ms-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.textarea_view_filled .textarea__control::placeholder {
  color: rgba(11, 31, 53, 0.6); }

.textarea_view_filled:not(.textarea_autosize) .textarea__control {
  min-height: 110px; }

.textarea_view_filled__sub {
  line-height: 1.2; }

.textarea_view_filled .textarea__top,
.textarea_view_filled .textarea__sub {
  color: rgba(11, 31, 53, 0.6); }

.textarea_view_filled.textarea_focused .textarea__control {
  border-bottom-color: #0b1f35;
  box-shadow: inset 0 -1px 0 #0b1f35; }

.textarea_view_filled.textarea_has-label {
  padding-top: 0; }

.textarea_view_filled.textarea_has-label .textarea__control::-webkit-input-placeholder {
  color: transparent; }

.textarea_view_filled.textarea_has-label .textarea__control::-moz-placeholder {
  color: transparent; }

.textarea_view_filled.textarea_has-label .textarea__control::-ms-input-placeholder {
  color: transparent; }

.textarea_view_filled.textarea_has-label .textarea__control::placeholder {
  color: transparent; }

.textarea_view_filled.textarea_has-label.textarea_focused .textarea__control::-webkit-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.textarea_view_filled.textarea_has-label.textarea_focused .textarea__control::-moz-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.textarea_view_filled.textarea_has-label.textarea_focused .textarea__control::-ms-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.textarea_view_filled.textarea_has-label.textarea_focused .textarea__control::placeholder {
  color: rgba(11, 31, 53, 0.6); }

.textarea_view_filled.textarea_focused .textarea__top, .textarea_view_filled.textarea_has-value .textarea__top {
  width: auto; }

.textarea_view_filled.textarea_invalid .textarea__sub {
  color: #ff5c5c; }

.textarea_view_filled.textarea_invalid .textarea__control {
  border-bottom-color: #ff5c5c;
  box-shadow: inset 0 -1px 0 #ff5c5c; }

.textarea_view_filled.textarea_invalid.textarea_focused .textarea__control {
  border-bottom-color: #ff5c5c;
  box-shadow: inset 0 -1px 0 #ff5c5c; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.textarea_theme_alfa-on-color .textarea__control {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4); }

.textarea_theme_alfa-on-color .textarea__control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7); }

.textarea_theme_alfa-on-color .textarea__control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7); }

.textarea_theme_alfa-on-color .textarea__control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7); }

.textarea_theme_alfa-on-color .textarea__control::placeholder {
  color: rgba(255, 255, 255, 0.7); }

.textarea_theme_alfa-on-color .textarea__top,
.textarea_theme_alfa-on-color .textarea__sub {
  color: rgba(255, 255, 255, 0.7); }

.textarea_theme_alfa-on-color.textarea_focused .textarea__control {
  border-bottom-color: rgba(255, 255, 255, 0.9); }

.textarea_theme_alfa-on-color.textarea_focused .textarea__control {
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.9); }

.textarea_theme_alfa-on-color.textarea_disabled,
.textarea_theme_alfa-on-color.textarea_disabled .textarea__control {
  color: rgba(255, 255, 255, 0.4); }

.textarea_theme_alfa-on-color.textarea_disabled .textarea__control {
  border-bottom-style: dashed; }

.textarea_theme_alfa-on-color.textarea_disabled .textarea__control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4); }

.textarea_theme_alfa-on-color.textarea_disabled .textarea__control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4); }

.textarea_theme_alfa-on-color.textarea_disabled .textarea__control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4); }

.textarea_theme_alfa-on-color.textarea_disabled .textarea__control::placeholder {
  color: rgba(255, 255, 255, 0.4); }

.textarea_theme_alfa-on-color.textarea_disabled .textarea__control:disabled {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.4) !important; }

.textarea_theme_alfa-on-color.textarea_invalid .textarea__sub {
  color: #ff5c5c; }

.textarea_theme_alfa-on-color.textarea_invalid .textarea__control {
  border-bottom-color: rgba(255, 92, 92, 0.85); }

.textarea_theme_alfa-on-color.textarea_invalid.textarea_focused .textarea__control {
  border-bottom-color: rgba(255, 92, 92, 0.85);
  box-shadow: inset 0 -1px 0 rgba(255, 92, 92, 0.85); }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.textarea_theme_alfa-on-white .textarea__control {
  color: rgba(11, 31, 53, 0.95);
  border-bottom: 1px solid rgba(11, 31, 53, 0.4); }

.textarea_theme_alfa-on-white .textarea__control::-webkit-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.textarea_theme_alfa-on-white .textarea__control::-moz-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.textarea_theme_alfa-on-white .textarea__control::-ms-input-placeholder {
  color: rgba(11, 31, 53, 0.6); }

.textarea_theme_alfa-on-white .textarea__control::placeholder {
  color: rgba(11, 31, 53, 0.6); }

.textarea_theme_alfa-on-white .textarea__top,
.textarea_theme_alfa-on-white .textarea__sub {
  color: rgba(11, 31, 53, 0.6); }

.textarea_theme_alfa-on-white.textarea_focused .textarea__control {
  border-bottom-color: rgba(11, 31, 53, 0.9); }

.textarea_theme_alfa-on-white.textarea_focused .textarea__control {
  box-shadow: inset 0 -1px 0 rgba(11, 31, 53, 0.9); }

.textarea_theme_alfa-on-white.textarea_disabled,
.textarea_theme_alfa-on-white.textarea_disabled .textarea__control {
  color: rgba(11, 31, 53, 0.3); }

.textarea_theme_alfa-on-white.textarea_disabled .textarea__control {
  border-bottom-style: dashed; }

.textarea_theme_alfa-on-white.textarea_disabled .textarea__control::-webkit-input-placeholder {
  color: rgba(11, 31, 53, 0.3); }

.textarea_theme_alfa-on-white.textarea_disabled .textarea__control::-moz-placeholder {
  color: rgba(11, 31, 53, 0.3); }

.textarea_theme_alfa-on-white.textarea_disabled .textarea__control::-ms-input-placeholder {
  color: rgba(11, 31, 53, 0.3); }

.textarea_theme_alfa-on-white.textarea_disabled .textarea__control::placeholder {
  color: rgba(11, 31, 53, 0.3); }

.textarea_theme_alfa-on-white.textarea_disabled .textarea__control:disabled {
  -webkit-text-fill-color: rgba(11, 31, 53, 0.3) !important; }

.textarea_theme_alfa-on-white.textarea_invalid .textarea__sub {
  color: #ff5c5c; }

.textarea_theme_alfa-on-white.textarea_invalid .textarea__control {
  border-bottom-color: rgba(255, 92, 92, 0.85); }

.textarea_theme_alfa-on-white.textarea_invalid.textarea_focused .textarea__control {
  border-bottom-color: rgba(255, 92, 92, 0.85);
  box-shadow: inset 0 -1px 0 rgba(255, 92, 92, 0.85); }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.link {
  cursor: pointer;
  outline: none;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: color 100ms ease-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); }

.link_flex {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start; }

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

.link__text-container {
  flex: 1 1 auto; }

.link__text {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  transition: border-color 100ms ease-out; }

.link__icon {
  display: inline-block;
  vertical-align: middle;
  line-height: 0; }

.link__icon + .link__text-container,
.link__text-container + .link__icon {
  margin-left: 6px; }

.link__icon_left {
  flex: 0 0 auto; }

.link_size_xs {
  font-size: 12px;
  line-height: 1.4; }

.link_size_s {
  font-size: 13px;
  line-height: 1.4; }

.link_size_m {
  font-size: 16px;
  line-height: 1.4; }

.link_size_l {
  font-size: 22px;
  line-height: 1.2; }

.link_size_xl {
  font-size: 30px;
  line-height: 1.2; }

.link_pseudo .link__text {
  border-bottom-style: dashed; }

.link_disabled,
.link_checked {
  cursor: default; }

.link_disabled .link__icon,
.link_checked .link__icon {
  opacity: .25; }

.link_theme_alfa-on-color {
  color: #ffffff; }

.link_theme_alfa-on-color .link__text {
  border-color: rgba(255, 255, 255, 0.4); }

.link_theme_alfa-on-color:hover,
.link_theme_alfa-on-color:focus {
  color: white; }

.link_theme_alfa-on-color:hover .link__text, .link_theme_alfa-on-color:focus .link__text {
  border-color: rgba(255, 255, 255, 0.7); }

.link_theme_alfa-on-color.link_disabled {
  color: rgba(255, 255, 255, 0.4); }

.link_theme_alfa-on-white {
  color: rgba(11, 31, 53, 0.95); }

.link_theme_alfa-on-white .link__text {
  border-color: rgba(11, 31, 53, 0.3); }

.link_theme_alfa-on-white:hover,
.link_theme_alfa-on-white:focus {
  color: #0b1f35; }

.link_theme_alfa-on-white:hover .link__text, .link_theme_alfa-on-white:focus .link__text {
  border-color: rgba(11, 31, 53, 0.6); }

.link_theme_alfa-on-white.link_view_blue {
  color: #0f62fe; }

.link_theme_alfa-on-white.link_view_blue .link__text {
  border-color: #0f62fe; }

.link_theme_alfa-on-white.link_view_blue:hover,
.link_theme_alfa-on-white.link_view_blue:focus {
  color: #0f62fe; }

.link_theme_alfa-on-white.link_view_blue:hover .link__text, .link_theme_alfa-on-white.link_view_blue:focus .link__text {
  border-color: transparent; }

.link_theme_alfa-on-white.link_disabled {
  color: rgba(11, 31, 53, 0.3); }

.link_theme_alfa-on-color.link_disabled .link__text, .link_theme_alfa-on-color.link_checked .link__text, .link_theme_alfa-on-white.link_disabled .link__text, .link_theme_alfa-on-white.link_checked .link__text {
  border-color: transparent; }

.link_theme_alfa-on-color.link_checked, .link_theme_alfa-on-white.link_checked {
  font-weight: 500; }
@charset "UTF-8";
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.popup {
  visibility: hidden;
  position: absolute;
  width: auto;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  /* Чтобы IE9 не рисовал лишний скролл */
  clip: rect(0, 0, 0, 0);
  /* Чтобы попап не прокликивался и браузер не рисовал лишний скролл */
  -webkit-transform: translate(-9999px, -9999px);
  transform: translate(-9999px, -9999px);
  z-index: 9999; }

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

.popup__container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  z-index: 2; }

.popup_size_s {
  font-size: 13px; }

.popup_size_m {
  font-size: 16px; }

.popup_size_l {
  font-size: 18px; }

.popup_size_xl {
  font-size: 22px; }

.popup_visible {
  visibility: visible;
  clip: auto;
  -webkit-transform: none;
  transform: none; }

.popup_height_available {
  opacity: 0;
  position: fixed;
  top: 0 !important;
  bottom: 0;
  width: 300px;
  border-radius: 0;
  transition: opacity 400ms ease; }

.popup_height_available .popup__content {
  padding: 12px 24px; }

.popup_height_available.popup_visible {
  opacity: 1;
  margin: 0 0 0 -35px; }

.popup_height_adaptive .popup__gradient,
.popup_target_screen .popup__gradient {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  transition: height 200ms ease-in-out;
  z-index: 3;
  border-radius: 4px; }

.popup_height_adaptive .popup__gradient_top, .popup_target_screen .popup__gradient_top {
  top: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.popup_height_adaptive .popup__gradient_bottom, .popup_target_screen .popup__gradient_bottom {
  bottom: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.popup_height_adaptive.popup_size_s .popup__gradient,
.popup_target_screen.popup_size_s .popup__gradient {
  height: 31px; }

.popup_height_adaptive.popup_size_m .popup__gradient,
.popup_target_screen.popup_size_m .popup__gradient {
  height: 40px; }

.popup_height_adaptive.popup_size_l .popup__gradient,
.popup_target_screen.popup_size_l .popup__gradient {
  height: 50px; }

.popup_height_adaptive.popup_size_xl .popup__gradient,
.popup_target_screen.popup_size_xl .popup__gradient {
  height: 58px; }

.popup_height_adaptive .popup__inner,
.popup_target_screen .popup__inner {
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%; }

.popup__content {
  /* Для resize-sensor */
  position: relative; }

.popup_padded:not(.popup_height_available).popup_size_s .popup__content {
  padding: 7px 12px 8px; }

.popup_padded:not(.popup_height_available).popup_size_m .popup__content {
  padding: 10px 14px 11px; }

.popup_padded:not(.popup_height_available).popup_size_l .popup__content {
  padding: 14px 18px 15px; }

.popup_padded:not(.popup_height_available).popup_size_xl .popup__content {
  padding: 17px 22px; }

.popup_target_screen {
  position: fixed;
  border-radius: 0;
  box-shadow: none; }

.popup_target_screen .popup__container {
  display: flex;
  flex-direction: column;
  border-radius: 0; }

.popup_target_screen .popup__content {
  /* чтобы контент с position:relative в UIWebView не исчезал при быстром скролле */
  -webkit-transform: translateZ(0);
  transform: translateZ(0); }

.popup_overflow {
  overflow-y: scroll; }

.popup_type_tooltip:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  margin: -7px;
  border-style: solid;
  border-width: 7px;
  -webkit-filter: drop-shadow(0 0 2px rgba(11, 31, 53, 0.25));
  filter: drop-shadow(0 0 2px rgba(11, 31, 53, 0.25));
  z-index: 1; }

/* top */
.popup_type_tooltip.popup_direction_top-left:before {
  bottom: -7px; }

.popup_type_tooltip.popup_direction_top-center:before {
  bottom: -7px;
  left: 50%; }

.popup_type_tooltip.popup_direction_top-right:before {
  bottom: -7px; }

.popup_type_tooltip.popup_size_s.popup_direction_top-left:before {
  left: 15px; }

.popup_type_tooltip.popup_size_s.popup_direction_top-right:before {
  right: 15px; }

.popup_type_tooltip.popup_size_m.popup_direction_top-left:before {
  left: 20px; }

.popup_type_tooltip.popup_size_m.popup_direction_top-right:before {
  right: 20px; }

.popup_type_tooltip.popup_size_l.popup_direction_top-left:before {
  left: 25px; }

.popup_type_tooltip.popup_size_l.popup_direction_top-right:before {
  right: 25px; }

.popup_type_tooltip.popup_size_xl.popup_direction_top-left:before {
  left: 30px; }

.popup_type_tooltip.popup_size_xl.popup_direction_top-right:before {
  right: 30px; }

/* left */
.popup_type_tooltip.popup_direction_left-top:before {
  right: -7px; }

.popup_type_tooltip.popup_direction_left-center:before {
  top: 50%;
  right: -7px; }

.popup_type_tooltip.popup_direction_left-bottom:before {
  right: -7px; }

.popup_type_tooltip.popup_size_s.popup_direction_left-top:before {
  top: 15px; }

.popup_type_tooltip.popup_size_s.popup_direction_left-bottom:before {
  bottom: 15px; }

.popup_type_tooltip.popup_size_m.popup_direction_left-top:before {
  top: 20px; }

.popup_type_tooltip.popup_size_m.popup_direction_left-bottom:before {
  bottom: 20px; }

.popup_type_tooltip.popup_size_l.popup_direction_left-top:before {
  top: 25px; }

.popup_type_tooltip.popup_size_l.popup_direction_left-bottom:before {
  bottom: 25px; }

.popup_type_tooltip.popup_size_xl.popup_direction_left-top:before {
  top: 30px; }

.popup_type_tooltip.popup_size_xl.popup_direction_left-bottom:before {
  bottom: 30px; }

/* right */
.popup_type_tooltip.popup_direction_right-top:before {
  left: -7px; }

.popup_type_tooltip.popup_direction_right-center:before {
  top: 50%;
  left: -7px; }

.popup_type_tooltip.popup_direction_right-bottom:before {
  left: -7px; }

.popup_type_tooltip.popup_size_s.popup_direction_right-top:before {
  top: 15px; }

.popup_type_tooltip.popup_size_s.popup_direction_right-bottom:before {
  bottom: 15px; }

.popup_type_tooltip.popup_size_m.popup_direction_right-top:before {
  top: 20px; }

.popup_type_tooltip.popup_size_m.popup_direction_right-bottom:before {
  bottom: 20px; }

.popup_type_tooltip.popup_size_l.popup_direction_right-top:before {
  top: 25px; }

.popup_type_tooltip.popup_size_l.popup_direction_right-bottom:before {
  bottom: 25px; }

.popup_type_tooltip.popup_size_xl.popup_direction_right-top:before {
  top: 30px; }

.popup_type_tooltip.popup_size_xl.popup_direction_right-bottom:before {
  bottom: 30px; }

/* bottom */
.popup_type_tooltip.popup_direction_bottom-left:before {
  top: -7px; }

.popup_type_tooltip.popup_direction_bottom-center:before {
  top: -7px;
  left: 50%; }

.popup_type_tooltip.popup_direction_bottom-right:before {
  top: -7px; }

.popup_type_tooltip.popup_size_s.popup_direction_bottom-left:before {
  left: 15px; }

.popup_type_tooltip.popup_size_s.popup_direction_bottom-right:before {
  right: 15px; }

.popup_type_tooltip.popup_size_m.popup_direction_bottom-left:before {
  left: 20px; }

.popup_type_tooltip.popup_size_m.popup_direction_bottom-right:before {
  right: 20px; }

.popup_type_tooltip.popup_size_l.popup_direction_bottom-left:before {
  left: 25px; }

.popup_type_tooltip.popup_size_l.popup_direction_bottom-right:before {
  right: 25px; }

.popup_type_tooltip.popup_size_xl.popup_direction_bottom-left:before {
  left: 30px; }

.popup_type_tooltip.popup_size_xl.popup_direction_bottom-right:before {
  right: 30px; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.popup_theme_alfa-on-white {
  color: rgba(11, 31, 53, 0.95);
  box-shadow: 0 1px 5px 0 rgba(11, 31, 53, 0.25); }

.popup_theme_alfa-on-white .popup__container {
  background-color: white; }

.popup_theme_alfa-on-white.popup_height_adaptive .popup__gradient_top, .popup_theme_alfa-on-white.popup_target_screen .popup__gradient_top {
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.9) 75%, white 100%); }

.popup_theme_alfa-on-white.popup_height_adaptive .popup__gradient_bottom, .popup_theme_alfa-on-white.popup_target_screen .popup__gradient_bottom {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.9) 75%, white 100%); }

.popup_theme_alfa-on-white.popup_type_tooltip:before {
  border-color: white; }

.popup_theme_alfa-on-white.popup_type_tooltip.popup_direction_top-left:before,
.popup_theme_alfa-on-white.popup_type_tooltip.popup_direction_top-center:before,
.popup_theme_alfa-on-white.popup_type_tooltip.popup_direction_top-right:before {
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent; }

.popup_theme_alfa-on-white.popup_type_tooltip.popup_direction_left-top:before,
.popup_theme_alfa-on-white.popup_type_tooltip.popup_direction_left-center:before,
.popup_theme_alfa-on-white.popup_type_tooltip.popup_direction_left-bottom:before {
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent; }

.popup_theme_alfa-on-white.popup_type_tooltip.popup_direction_right-top:before,
.popup_theme_alfa-on-white.popup_type_tooltip.popup_direction_right-center:before,
.popup_theme_alfa-on-white.popup_type_tooltip.popup_direction_right-bottom:before {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent; }

.popup_theme_alfa-on-white.popup_type_tooltip.popup_direction_bottom-left:before,
.popup_theme_alfa-on-white.popup_type_tooltip.popup_direction_bottom-center:before,
.popup_theme_alfa-on-white.popup_type_tooltip.popup_direction_bottom-right:before {
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.popup_theme_alfa-on-color {
  color: #ffffff;
  box-shadow: 0 1px 5px 0 rgba(11, 31, 53, 0.25); }

.popup_theme_alfa-on-color .popup__container {
  background-color: #0b1f35; }

.popup_theme_alfa-on-color.popup_height_adaptive .popup__gradient_top, .popup_theme_alfa-on-color.popup_target_screen .popup__gradient_top {
  background: linear-gradient(to top, rgba(11, 31, 53, 0) 0%, rgba(11, 31, 53, 0.4) 40%, rgba(11, 31, 53, 0.9) 75%, #0b1f35 100%); }

.popup_theme_alfa-on-color.popup_height_adaptive .popup__gradient_bottom, .popup_theme_alfa-on-color.popup_target_screen .popup__gradient_bottom {
  background: linear-gradient(to bottom, rgba(11, 31, 53, 0) 0%, rgba(11, 31, 53, 0.4) 40%, rgba(11, 31, 53, 0.9) 75%, #0b1f35 100%); }

.popup_theme_alfa-on-color.popup_type_tooltip:before {
  border-color: #0b1f35; }

.popup_theme_alfa-on-color.popup_type_tooltip.popup_direction_top-left:before,
.popup_theme_alfa-on-color.popup_type_tooltip.popup_direction_top-center:before,
.popup_theme_alfa-on-color.popup_type_tooltip.popup_direction_top-right:before {
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent; }

.popup_theme_alfa-on-color.popup_type_tooltip.popup_direction_left-top:before,
.popup_theme_alfa-on-color.popup_type_tooltip.popup_direction_left-center:before,
.popup_theme_alfa-on-color.popup_type_tooltip.popup_direction_left-bottom:before {
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent; }

.popup_theme_alfa-on-color.popup_type_tooltip.popup_direction_right-top:before,
.popup_theme_alfa-on-color.popup_type_tooltip.popup_direction_right-center:before,
.popup_theme_alfa-on-color.popup_type_tooltip.popup_direction_right-bottom:before {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent; }

.popup_theme_alfa-on-color.popup_type_tooltip.popup_direction_bottom-left:before,
.popup_theme_alfa-on-color.popup_type_tooltip.popup_direction_bottom-center:before,
.popup_theme_alfa-on-color.popup_type_tooltip.popup_direction_bottom-right:before {
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.menu-item {
  position: relative;
  cursor: pointer;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  line-height: 1.4;
  transition: background 200ms ease; }

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

.menu-item_disabled {
  cursor: default; }

.menu-item_checked {
  cursor: default; }

.menu-item_hidden {
  display: none; }

.menu-item_type_link {
  cursor: default; }

.menu-item_type_link .menu-item__link {
  outline: none; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.menu {
  outline: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif; }

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

.menu_view_horizontal .menu-item {
  display: inline-block;
  vertical-align: top; }

.menu_view_horizontal .menu-item.menu-item_type_link:first-child {
  padding-left: 0; }

.menu_view_horizontal .menu-item.menu-item_type_link:last-child {
  padding-right: 0; }

.menu_view_horizontal .menu-item:first-child {
  border-radius: 4px 0 0 4px; }

.menu_view_horizontal .menu-item:last-child {
  border-radius: 0 4px 4px 0; }

.menu_mode_check .menu-item_checked .icon {
  position: absolute; }

.menu_mode_radio .menu-item_checked:before, .menu_mode_radio-check .menu-item_checked:before {
  content: '';
  display: inline-block;
  position: absolute;
  border-radius: 50%; }

.menu_size_s .menu__group-title {
  padding: 10px 12px;
  font-size: 13px; }

.menu_size_s .menu-item {
  padding: 6px 10px;
  font-size: 13px; }

.menu_size_s.menu_mode_check .menu-item_checked .icon {
  top: 7px;
  left: 4px; }

.menu_size_s.menu_mode_radio .menu-item_checked:before, .menu_size_s.menu_mode_radio-check .menu-item_checked:before {
  top: 12px;
  width: 5px;
  height: 5px;
  margin-left: -14px; }

.menu_size_s.menu_mode_check .menu-item,
.menu_size_s.menu_mode_check .menu__group-title,
.menu_size_s.menu_mode_radio .menu-item,
.menu_size_s.menu_mode_radio .menu__group-title,
.menu_size_s.menu_mode_radio-check .menu-item,
.menu_size_s.menu_mode_radio-check .menu__group-title {
  padding-left: 24px; }

.menu_size_s .menu__group .menu-item {
  padding-left: 36px; }

.menu_size_m .menu__group-title {
  padding: 8px 12px;
  font-size: 16px; }

.menu_size_m .menu-item {
  padding: 9px 12px;
  font-size: 16px; }

.menu_size_m.menu_mode_check .menu-item_checked .icon {
  top: 12px;
  left: 8px; }

.menu_size_m.menu_mode_radio .menu-item_checked:before, .menu_size_m.menu_mode_radio-check .menu-item_checked:before {
  top: 17px;
  width: 6px;
  height: 6px;
  margin-left: -14px; }

.menu_size_m.menu_mode_check .menu-item,
.menu_size_m.menu_mode_check .menu__group-title,
.menu_size_m.menu_mode_radio .menu-item,
.menu_size_m.menu_mode_radio .menu__group-title,
.menu_size_m.menu_mode_radio-check .menu-item,
.menu_size_m.menu_mode_radio-check .menu__group-title {
  padding-left: 30px; }

.menu_size_m .menu__group .menu-item {
  padding-left: 48px; }

.menu_size_l .menu__group-title {
  padding: 10px 17px;
  font-size: 18px; }

.menu_size_l .menu-item {
  padding: 12px 15px 13px;
  font-size: 18px; }

.menu_size_l.menu_mode_check .menu-item_checked .icon {
  top: 14px;
  left: 8px; }

.menu_size_l.menu_mode_radio .menu-item_checked:before, .menu_size_l.menu_mode_radio-check .menu-item_checked:before {
  top: 21px;
  width: 8px;
  height: 8px;
  margin-left: -21px; }

.menu_size_l.menu_mode_check .menu-item,
.menu_size_l.menu_mode_check .menu__group-title,
.menu_size_l.menu_mode_radio .menu-item,
.menu_size_l.menu_mode_radio .menu__group-title,
.menu_size_l.menu_mode_radio-check .menu-item,
.menu_size_l.menu_mode_radio-check .menu__group-title {
  padding-left: 36px; }

.menu_size_l .menu__group .menu-item {
  padding-left: 56px; }

.menu_size_xl .menu__group-title {
  padding: 12px 19px;
  font-size: 22px; }

.menu_size_xl .menu-item {
  padding: 11px 15px;
  font-size: 22px; }

.menu_size_xl.menu_mode_check .menu-item_checked .icon {
  top: 16px;
  left: 10px; }

.menu_size_xl.menu_mode_radio .menu-item_checked:before, .menu_size_xl.menu_mode_radio-check .menu-item_checked:before {
  top: 21px;
  width: 10px;
  height: 10px;
  margin-left: -22px; }

.menu_size_xl.menu_mode_check .menu-item,
.menu_size_xl.menu_mode_check .menu__group-title,
.menu_size_xl.menu_mode_radio .menu-item,
.menu_size_xl.menu_mode_radio .menu__group-title,
.menu_size_xl.menu_mode_radio-check .menu-item,
.menu_size_xl.menu_mode_radio-check .menu__group-title {
  padding-left: 40px; }

.menu_size_xl .menu__group .menu-item {
  padding-left: 50px; }

.menu__group-title {
  font-weight: 500; }

.menu__group + .menu__group {
  border-top: 0; }

.menu__group:last-child {
  padding-bottom: 0;
  border-bottom: 0; }

.menu__group:first-child {
  padding-top: 0;
  border-top: 0; }

.menu_group-view_line .menu__group {
  position: relative; }

.menu_group-view_line .menu__group-title {
  position: absolute;
  line-height: 1.4; }

.menu_group-view_line.menu_size_s .menu__group-title {
  padding: 6px 3px; }

.menu_group-view_line.menu_size_m .menu__group-title {
  padding: 9px 12px; }

.menu_group-view_line.menu_size_l .menu__group-title {
  padding: 12px 7px; }

.menu_group-view_line.menu_size_xl .menu__group-title {
  padding: 11px 1px; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.menu_theme_alfa-on-white .menu-item {
  color: rgba(11, 31, 53, 0.95); }

.menu_theme_alfa-on-white .menu-item_hovered:not(.menu-item_disabled) {
  background-color: rgba(11, 31, 53, 0.08); }

.menu_theme_alfa-on-white .menu-item_hovered:not(.menu-item_disabled).menu-item_type_link, .menu_theme_alfa-on-white .menu-item_hovered:not(.menu-item_disabled).menu-item_type_dropdown {
  background-color: transparent; }

.menu_theme_alfa-on-white .menu-item_disabled {
  color: rgba(11, 31, 53, 0.3); }

.menu_theme_alfa-on-white .menu-item_disabled .icon {
  opacity: .25; }

.menu_theme_alfa-on-white.menu_mode_radio .menu-item_checked:before, .menu_theme_alfa-on-white.menu_mode_radio-check .menu-item_checked:before {
  background-color: rgba(11, 31, 53, 0.95); }

.menu_theme_alfa-on-white.menu_mode_check .menu-item_disabled.menu-item_checked:before, .menu_theme_alfa-on-white.menu_mode_radio .menu-item_disabled.menu-item_checked:before, .menu_theme_alfa-on-white.menu_mode_radio-check .menu-item_disabled.menu-item_checked:before {
  opacity: .25; }

.menu_theme_alfa-on-white .menu__group-title {
  color: rgba(11, 31, 53, 0.6); }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.menu_theme_alfa-on-color .menu-item {
  color: #ffffff; }

.menu_theme_alfa-on-color .menu-item_hovered:not(.menu-item_disabled) {
  background-color: rgba(255, 255, 255, 0.1); }

.menu_theme_alfa-on-color .menu-item_hovered:not(.menu-item_disabled).menu-item_type_link, .menu_theme_alfa-on-color .menu-item_hovered:not(.menu-item_disabled).menu-item_type_dropdown {
  background-color: transparent; }

.menu_theme_alfa-on-color .menu-item_disabled {
  color: rgba(255, 255, 255, 0.4); }

.menu_theme_alfa-on-color .menu-item_disabled .icon {
  opacity: .25; }

.menu_theme_alfa-on-color.menu_mode_radio .menu-item_checked:before, .menu_theme_alfa-on-color.menu_mode_radio-check .menu-item_checked:before {
  background-color: #ffffff; }

.menu_theme_alfa-on-color.menu_mode_check .menu-item_disabled.menu-item_checked:before, .menu_theme_alfa-on-color.menu_mode_radio .menu-item_disabled.menu-item_checked:before, .menu_theme_alfa-on-color.menu_mode_radio-check .menu-item_disabled.menu-item_checked:before {
  opacity: .25; }

.menu_theme_alfa-on-color .menu__group-title {
  color: rgba(255, 255, 255, 0.7); }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.popup-header {
  position: relative;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif; }

.popup-header__title {
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center; }

.popup-header__closer {
  position: absolute;
  top: 0;
  left: 0; }

.popup-header_size_s {
  padding: 6px 48px;
  font-size: 13px; }

.popup-header_size_m {
  padding: 9px 48px;
  font-size: 16px; }

.popup-header_size_l {
  padding: 12px 48px;
  font-size: 18px; }

.popup-header_size_xl {
  padding: 11px 48px;
  font-size: 22px; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.select {
  display: inline-block;
  max-width: 100%;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  font-weight: 400; }

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

.select__inner {
  position: relative;
  display: inline-table;
  vertical-align: top;
  width: 100%; }

.select_width_available .select__inner {
  table-layout: fixed; }

.select__top {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  transition-duration: 200ms;
  transition-property: color, font-size, -webkit-transform;
  transition-property: color, transform, font-size;
  transition-property: color, transform, font-size, -webkit-transform;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1); }

.select__sub-wrapper {
  display: table;
  width: 100%; }

.select__sub {
  display: table-caption;
  caption-side: bottom;
  padding-top: 5px;
  padding-right: 12px;
  white-space: normal; }

.select_size_s .select__sub {
  font-size: 12px; }

.select_size_m .select__sub {
  font-size: 13px; }

.select_size_l .select__sub {
  font-size: 16px; }

.select_size_xl .select__sub {
  font-size: 18px; }

.select .select-button,
.select__native-control {
  display: table-cell; }

.select .select-button {
  overflow: hidden;
  display: inline-block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  outline: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: transparent;
  border: none;
  border-radius: 0;
  transition-duration: 250ms;
  transition-property: border-bottom-color, box-shadow, color, width, background-color;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); }

/* TODO @teryaew: add custom easings to styles */
.select .select-button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.select .select-button_size_s {
  min-height: 30px;
  padding-right: 30px;
  font-size: 13px;
  line-height: 28px; }

.select .select-button_size_m {
  min-height: 40px;
  padding-right: 34px;
  font-size: 16px;
  line-height: 38px; }

.select .select-button_size_l {
  min-height: 50px;
  padding-right: 44px;
  font-size: 18px;
  line-height: 48px; }

.select .select-button_size_xl {
  min-height: 60px;
  padding-right: 52px;
  font-size: 22px;
  line-height: 58px; }

.select .select-button_disabled {
  cursor: default; }

.select .select-button .icon-button_size_s {
  width: 24px; }

.select .select-button .icon-button_size_m {
  width: 30px; }

.select .select-button .icon-button_size_l {
  width: 34px; }

.select .select-button .icon-button_size_xl {
  width: 34px; }

.select__tick {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%; }

.select_disabled .select__tick {
  opacity: .25; }

.select_opened .select__tick,
.select-button_hovered .select__tick {
  opacity: 1; }

.select_width_available {
  width: 100%;
  min-width: 0; }

.select.select_no-tick .select__top,
.select.select_no-tick .select-button {
  padding-right: 0; }

.select__native-control {
  opacity: 0;
  overflow-x: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%; }

.select__placeholder {
  opacity: 0;
  transition: opacity 200ms cubic-bezier(0.25, 0.1, 0.25, 1); }

.select:not(.select_has-label) .select__placeholder,
.select.select_has-label.select_has-placeholder .select__placeholder {
  opacity: 1; }

.select_size_s.select_has-label {
  padding-top: 9px; }

.select_size_s .select__top {
  font-size: 13px;
  line-height: 30px;
  padding-right: 30px; }

.select_size_s.select_has-placeholder .select__top, .select_size_s.select_has-value .select__top {
  -webkit-transform: scale(0.92308) translateY(-22px);
  transform: scale(0.92308) translateY(-22px);
  width: 107.692%;
  padding-right: 0; }

.select_size_m.select_has-label {
  padding-top: 6px; }

.select_size_m .select__top {
  font-size: 16px;
  line-height: 40px;
  padding-right: 34px; }

.select_size_m.select_has-placeholder .select__top, .select_size_m.select_has-value .select__top {
  -webkit-transform: scale(0.8125) translateY(-30px);
  transform: scale(0.8125) translateY(-30px);
  width: 118.75%;
  padding-right: 0; }

.select_size_l.select_has-label {
  padding-top: 14px; }

.select_size_l .select__top {
  font-size: 18px;
  line-height: 50px;
  padding-right: 44px; }

.select_size_l.select_has-placeholder .select__top, .select_size_l.select_has-value .select__top {
  -webkit-transform: scale(0.88889) translateY(-40px);
  transform: scale(0.88889) translateY(-40px);
  width: 111.111%;
  padding-right: 0; }

.select_size_xl.select_has-label {
  padding-top: 13px; }

.select_size_xl .select__top {
  font-size: 22px;
  line-height: 60px;
  padding-right: 52px; }

.select_size_xl.select_has-placeholder .select__top, .select_size_xl.select_has-value .select__top {
  -webkit-transform: scale(0.81818) translateY(-50px);
  transform: scale(0.81818) translateY(-50px);
  width: 118.182%;
  padding-right: 0; }

.select.select_view_filled.select_size_s .select__top {
  padding: 0 8px;
  line-height: 42px; }

.select.select_view_filled.select_size_s .select-button {
  height: 42px;
  padding: 0 8px; }

.select.select_view_filled.select_size_s .select-button__content {
  padding-right: 14px; }

.select.select_view_filled.select_size_s .select-button .icon-button_size_s {
  margin-right: 8px; }

.select.select_view_filled.select_size_s .select__top,
.select.select_view_filled.select_size_s .select-button {
  font-size: 13px; }

.select.select_view_filled.select_size_s__sub {
  padding-top: 4px;
  padding-right: 8px;
  font-size: 12px; }

.select.select_view_filled.select_size_s.select_has-label .select-button__content {
  padding-top: 11px; }

.select.select_view_filled.select_size_s.select_has-value .select__top, .select.select_view_filled.select_size_s.select_has-placeholder .select__top {
  font-size: 12px;
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  width: auto; }

.select.select_view_filled.select_size_m .select__top {
  padding: 0 12px;
  line-height: 56px; }

.select.select_view_filled.select_size_m .select-button {
  height: 56px;
  padding: 0 12px; }

.select.select_view_filled.select_size_m .select-button__content {
  padding-right: 18px; }

.select.select_view_filled.select_size_m .select-button .icon-button_size_m {
  margin-right: 4px; }

.select.select_view_filled.select_size_m .select__top,
.select.select_view_filled.select_size_m .select-button {
  font-size: 16px; }

.select.select_view_filled.select_size_m__sub {
  padding-top: 4px;
  padding-right: 12px;
  font-size: 13px; }

.select.select_view_filled.select_size_m.select_has-label .select-button__content {
  padding-top: 17px; }

.select.select_view_filled.select_size_m.select_has-value .select__top, .select.select_view_filled.select_size_m.select_has-placeholder .select__top {
  font-size: 13px;
  -webkit-transform: translateY(-12px);
  transform: translateY(-12px);
  width: auto; }

.select.select_view_filled .select__top {
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%; }

.select.select_view_filled .select-button {
  color: #0b1f35;
  border-bottom-color: rgba(11, 31, 53, 0.15);
  background-color: rgba(11, 31, 53, 0.05);
  border-radius: 4px 4px 0 0; }

.select.select_view_filled .select-button.select-button_hovered {
  background-color: rgba(11, 31, 53, 0.1);
  border-color: rgba(11, 31, 53, 0.6); }

.select.select_view_filled .select-button__content {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis; }

.select.select_view_filled.select_no-tick .select-button__text {
  padding-right: 0; }

.select.select_view_filled__sub {
  line-height: 1.2; }

.select.select_view_filled .select__top,
.select.select_view_filled .select__sub {
  color: rgba(11, 31, 53, 0.6); }

.select.select_view_filled .select__placeholder {
  color: rgba(11, 31, 53, 0.6); }

.select.select_view_filled.select_focused .select-button {
  border-bottom-color: #0b1f35;
  box-shadow: inset 0 -1px 0 #0b1f35; }

.select.select_view_filled.select_has-label {
  padding-top: 0; }

.select.select_view_filled.select_disabled .select-button {
  color: rgba(11, 31, 53, 0.6);
  background-color: rgba(11, 31, 53, 0.1);
  border-bottom-color: rgba(11, 31, 53, 0.15);
  border-bottom-style: dashed; }

.select.select_view_filled.select_disabled .select__top, .select.select_view_filled.select_disabled .select__placeholder {
  color: rgba(11, 31, 53, 0.3); }

.select.select_view_filled.select_invalid .select__sub {
  color: #ff5c5c; }

.select.select_view_filled.select_invalid .select-button {
  border-bottom-color: #ff5c5c;
  box-shadow: inset 0 -1px 0 #ff5c5c; }

.select.select_view_filled.select_invalid .select-button.select-button_hovered, .select.select_view_filled.select_invalid .select-button.select-button_pressed {
  border-bottom-color: #ff5c5c;
  box-shadow: inset 0 -1px 0 #ff5c5c; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.select_theme_alfa-on-color .select__top,
.select_theme_alfa-on-color .select__sub,
.select_theme_alfa-on-color .select__placeholder {
  color: rgba(255, 255, 255, 0.7); }

.select_theme_alfa-on-color .select-button {
  color: #ffffff;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.4);
  border-bottom-style: solid;
  border-bottom-width: 1px; }

.select_theme_alfa-on-color .select-button_hovered {
  border-bottom-color: rgba(255, 255, 255, 0.9); }

.select_theme_alfa-on-color .select-button:focus,
.select_theme_alfa-on-color .select-button_focused {
  border-bottom-color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.9); }

.select_theme_alfa-on-color .select-button:focus.select-button_hovered, .select_theme_alfa-on-color .select-button_focused.select-button_hovered {
  border-bottom-color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.9); }

.select_theme_alfa-on-color .select-button_pressed {
  border-bottom-color: rgba(255, 255, 255, 0.9); }

.select_theme_alfa-on-color .select-button_disabled {
  color: rgba(255, 255, 255, 0.4);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-bottom-style: dashed; }

.select_theme_alfa-on-color.select_opened .select-button {
  border-bottom-color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.9); }

.select_theme_alfa-on-color.select_invalid .select__sub {
  color: #ff5c5c; }

.select_theme_alfa-on-color.select_invalid .select-button {
  border-bottom-color: rgba(255, 92, 92, 0.85); }

.select_theme_alfa-on-color.select_invalid .select-button_hovered {
  border-bottom-color: rgba(255, 92, 92, 0.85); }

.select_theme_alfa-on-color.select_invalid .select-button:focus,
.select_theme_alfa-on-color.select_invalid .select-button_focused {
  border-bottom-color: rgba(255, 92, 92, 0.85);
  box-shadow: inset 0 -1px 0 rgba(255, 92, 92, 0.85); }

.select_theme_alfa-on-color.select_invalid .select-button:focus.select-button_hovered, .select_theme_alfa-on-color.select_invalid .select-button_focused.select-button_hovered {
  border-bottom-color: rgba(255, 92, 92, 0.85);
  box-shadow: inset 0 -1px 0 rgba(255, 92, 92, 0.85); }

.select_theme_alfa-on-color.select_invalid.select_opened .select-button {
  border-bottom-color: rgba(255, 92, 92, 0.85);
  box-shadow: inset 0 -1px 0 rgba(255, 92, 92, 0.85); }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.select_theme_alfa-on-white .select__top,
.select_theme_alfa-on-white .select__sub,
.select_theme_alfa-on-white .select__placeholder {
  color: rgba(11, 31, 53, 0.6); }

.select_theme_alfa-on-white .select-button {
  color: rgba(11, 31, 53, 0.95);
  background: transparent;
  border-bottom-color: rgba(11, 31, 53, 0.4);
  border-bottom-style: solid;
  border-bottom-width: 1px; }

.select_theme_alfa-on-white .select-button_hovered {
  border-bottom-color: rgba(11, 31, 53, 0.9); }

.select_theme_alfa-on-white .select-button:focus,
.select_theme_alfa-on-white .select-button_focused {
  border-bottom-color: rgba(11, 31, 53, 0.9);
  box-shadow: inset 0 -1px 0 rgba(11, 31, 53, 0.9); }

.select_theme_alfa-on-white .select-button:focus.select-button_hovered, .select_theme_alfa-on-white .select-button_focused.select-button_hovered {
  border-bottom-color: rgba(11, 31, 53, 0.9);
  box-shadow: inset 0 -1px 0 rgba(11, 31, 53, 0.9); }

.select_theme_alfa-on-white .select-button_pressed {
  border-bottom-color: rgba(11, 31, 53, 0.9); }

.select_theme_alfa-on-white .select-button_disabled {
  color: rgba(11, 31, 53, 0.3);
  border-bottom-color: rgba(11, 31, 53, 0.2);
  border-bottom-style: dashed; }

.select_theme_alfa-on-white.select_opened .select-button {
  border-bottom-color: rgba(11, 31, 53, 0.9);
  box-shadow: inset 0 -1px 0 rgba(11, 31, 53, 0.9); }

.select_theme_alfa-on-white.select_invalid .select__sub {
  color: #ff5c5c; }

.select_theme_alfa-on-white.select_invalid .select-button {
  border-bottom-color: rgba(255, 92, 92, 0.85); }

.select_theme_alfa-on-white.select_invalid .select-button_hovered {
  border-bottom-color: rgba(255, 92, 92, 0.85); }

.select_theme_alfa-on-white.select_invalid .select-button:focus,
.select_theme_alfa-on-white.select_invalid .select-button_focused {
  border-bottom-color: rgba(255, 92, 92, 0.85);
  box-shadow: inset 0 -1px 0 rgba(255, 92, 92, 0.85); }

.select_theme_alfa-on-white.select_invalid .select-button:focus.select-button_hovered, .select_theme_alfa-on-white.select_invalid .select-button_focused.select-button_hovered {
  border-bottom-color: rgba(255, 92, 92, 0.85);
  box-shadow: inset 0 -1px 0 rgba(255, 92, 92, 0.85); }

.select_theme_alfa-on-white.select_invalid.select_opened .select-button {
  border-bottom-color: rgba(255, 92, 92, 0.85);
  box-shadow: inset 0 -1px 0 rgba(255, 92, 92, 0.85); }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.paragraph {
  margin: 0 0 16px;
  padding: 0;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4; }

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

.paragraph_view_lead {
  font-size: 22px; }

.paragraph_view_small {
  font-size: 13px; }

.paragraph_theme_alfa-on-color {
  color: white; }

.paragraph_theme_alfa-on-white {
  color: #0b1f35; }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.spin {
  display: none;
  -webkit-animation: spin_animation .8s infinite linear;
  animation: spin_animation .8s infinite linear;
  background-repeat: no-repeat;
  background-size: 100%; }

.spin_visible {
  display: inline-block;
  vertical-align: middle; }

.spin_size_s {
  width: 16px;
  height: 16px; }

.spin_size_m {
  width: 20px;
  height: 20px; }

.spin_size_l {
  width: 26px;
  height: 26px; }

.spin_size_xl {
  width: 30px;
  height: 30px; }

.spin_theme_alfa-on-color.spin_size_s {
  background-image: url(node_modules/arui-feather/spin/images/c_s.png); }

.spin_theme_alfa-on-color.spin_size_m {
  background-image: url(node_modules/arui-feather/spin/images/c_m.png); }

.spin_theme_alfa-on-color.spin_size_l {
  background-image: url(node_modules/arui-feather/spin/images/c_l.png); }

.spin_theme_alfa-on-color.spin_size_xl {
  background-image: url(node_modules/arui-feather/spin/images/c_xl.png); }

.spin_theme_alfa-on-white.spin_size_s {
  background-image: url(node_modules/arui-feather/spin/images/w_s.png); }

.spin_theme_alfa-on-white.spin_size_m {
  background-image: url(node_modules/arui-feather/spin/images/w_m.png); }

.spin_theme_alfa-on-white.spin_size_l {
  background-image: url(node_modules/arui-feather/spin/images/w_l.png); }

.spin_theme_alfa-on-white.spin_size_xl {
  background-image: url(node_modules/arui-feather/spin/images/w_xl.png); }

@-webkit-keyframes spin_animation {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin_animation {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.notification {
  visibility: hidden;
  position: fixed;
  width: 350px;
  min-height: 56px;
  padding: 16px;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  border-radius: 8px;
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #ffffff;
  background: #0b1f35;
  box-shadow: 0 4px 16px rgba(11, 31, 53, 0.12), 0 1px 2px rgba(11, 31, 53, 0.24); }

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

.notification_stick-to_left {
  left: 12px;
  -webkit-transform: translate(-350px, 0);
  transform: translate(-350px, 0); }

.notification_stick-to_right {
  right: 12px;
  -webkit-transform: translate(350px, 0);
  transform: translate(350px, 0); }

.notification_theme_alfa-on-color {
  color: rgba(11, 31, 53, 0.95);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.12), 0 1px 2px rgba(255, 255, 255, 0.24); }

.notification_has-closer {
  padding-right: 50px; }

.notification__title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700; }

.notification__content {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400; }

.notification__title + .notification__content {
  margin-top: 8px; }

.notification__icon,
.notification__closer {
  position: absolute; }

.notification__icon {
  display: none;
  top: 16px;
  left: 16px; }

.notification__closer {
  opacity: .6;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  transition: opacity 200ms; }

.notification__closer:hover {
  opacity: 1; }

.notification_status_ok,
.notification_status_error,
.notification_status_fail {
  padding-left: 52px; }

.notification_status_ok .notification__icon,
.notification_status_error .notification__icon,
.notification_status_fail .notification__icon {
  display: block; }

.notification_visible {
  visibility: visible;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0); }

@media (max-width: 599px) {
  .notification {
    width: calc(100% - 24px);
    min-height: 48px;
    padding: 12px;
    -webkit-transform: translate(0, -500px);
    transform: translate(0, -500px); }
  .notification_visible {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  .notification_has-closer {
    padding-right: 46px; }
  .notification__icon {
    top: 12px;
    left: 12px; }
  .notification__closer {
    top: 4px;
    right: 4px; }
  .notification_status_ok,
  .notification_status_error,
  .notification_status_fail {
    padding-left: 56px; } }
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.icon_size_l.icon_name_close.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/close/icon_close_l_black.svg); }

.icon_size_l.icon_name_close.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/close/icon_close_l_white.svg); }

.icon_size_m.icon_name_close.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/close/icon_close_m_black.svg); }

.icon_size_m.icon_name_close.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/close/icon_close_m_white.svg); }

.icon_size_s.icon_name_close.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/close/icon_close_s_black.svg); }

.icon_size_s.icon_name_close.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/close/icon_close_s_white.svg); }

.icon_size_xl.icon_name_close.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/close/icon_close_xl_black.svg); }

.icon_size_xl.icon_name_close.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/close/icon_close_xl_white.svg); }

.icon_size_xs.icon_name_close.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/close/icon_close_xs_black.svg); }

.icon_size_xs.icon_name_close.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/close/icon_close_xs_white.svg); }
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.icon_size_l.icon_name_arrow-down.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-down/icon_arrow-down_l_black.svg); }

.icon_size_l.icon_name_arrow-down.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-down/icon_arrow-down_l_white.svg); }

.icon_size_m.icon_name_arrow-down.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-down/icon_arrow-down_m_black.svg); }

.icon_size_m.icon_name_arrow-down.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-down/icon_arrow-down_m_white.svg); }

.icon_size_s.icon_name_arrow-down.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-down/icon_arrow-down_s_black.svg); }

.icon_size_s.icon_name_arrow-down.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-down/icon_arrow-down_s_white.svg); }

.icon_size_xl.icon_name_arrow-down.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-down/icon_arrow-down_xl_black.svg); }

.icon_size_xl.icon_name_arrow-down.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-down/icon_arrow-down_xl_white.svg); }

.icon_size_xxl.icon_name_arrow-down.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-down/icon_arrow-down_xxl_black.svg); }

.icon_size_xxl.icon_name_arrow-down.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-down/icon_arrow-down_xxl_white.svg); }
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.icon_size_l.icon_name_arrow-up.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-up/icon_arrow-up_l_black.svg); }

.icon_size_l.icon_name_arrow-up.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-up/icon_arrow-up_l_white.svg); }

.icon_size_m.icon_name_arrow-up.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-up/icon_arrow-up_m_black.svg); }

.icon_size_m.icon_name_arrow-up.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-up/icon_arrow-up_m_white.svg); }

.icon_size_s.icon_name_arrow-up.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-up/icon_arrow-up_s_black.svg); }

.icon_size_s.icon_name_arrow-up.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-up/icon_arrow-up_s_white.svg); }

.icon_size_xl.icon_name_arrow-up.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-up/icon_arrow-up_xl_black.svg); }

.icon_size_xl.icon_name_arrow-up.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-up/icon_arrow-up_xl_white.svg); }

.icon_size_xxl.icon_name_arrow-up.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-up/icon_arrow-up_xxl_black.svg); }

.icon_size_xxl.icon_name_arrow-up.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/arrow-up/icon_arrow-up_xxl_white.svg); }
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.icon_size_l.icon_name_check.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/check/icon_check_l_black.svg); }

.icon_size_l.icon_name_check.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/check/icon_check_l_white.svg); }

.icon_size_m.icon_name_check.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/check/icon_check_m_black.svg); }

.icon_size_m.icon_name_check.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/check/icon_check_m_white.svg); }

.icon_size_s.icon_name_check.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/check/icon_check_s_black.svg); }

.icon_size_s.icon_name_check.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/check/icon_check_s_white.svg); }

.icon_size_xl.icon_name_check.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/check/icon_check_xl_black.svg); }

.icon_size_xl.icon_name_check.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/check/icon_check_xl_white.svg); }

.icon_size_xxl.icon_name_check.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/check/icon_check_xxl_black.svg); }

.icon_size_xxl.icon_name_check.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/check/icon_check_xxl_white.svg); }
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.icon_size_l.icon_name_tick.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/tick/icon_tick_l_black.svg); }

.icon_size_l.icon_name_tick.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/tick/icon_tick_l_white.svg); }

.icon_size_m.icon_name_tick.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/tick/icon_tick_m_black.svg); }

.icon_size_m.icon_name_tick.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/tick/icon_tick_m_white.svg); }

.icon_size_s.icon_name_tick.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/tick/icon_tick_s_black.svg); }

.icon_size_s.icon_name_tick.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/tick/icon_tick_s_white.svg); }

.icon_size_xl.icon_name_tick.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/tick/icon_tick_xl_black.svg); }

.icon_size_xl.icon_name_tick.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/tick/icon_tick_xl_white.svg); }

.icon_size_xs.icon_name_tick.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/tick/icon_tick_xs_black.svg); }

.icon_size_xs.icon_name_tick.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/tick/icon_tick_xs_white.svg); }

.icon_size_xxl.icon_name_tick.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/tick/icon_tick_xxl_black.svg); }

.icon_size_xxl.icon_name_tick.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/tick/icon_tick_xxl_white.svg); }
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.icon_size_l.icon_name_error.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_l_black.svg); }

.icon_size_l.icon_name_error.icon_colored.icon_theme_alfa-on-color, .icon_size_l.icon_name_error.icon_colored.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_l_color.svg); }

.icon_size_l.icon_name_error.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_l_white.svg); }

.icon_size_m.icon_name_error.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_m_black.svg); }

.icon_size_m.icon_name_error.icon_colored.icon_theme_alfa-on-color, .icon_size_m.icon_name_error.icon_colored.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_m_color.svg); }

.icon_size_m.icon_name_error.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_m_white.svg); }

.icon_size_s.icon_name_error.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_s_black.svg); }

.icon_size_s.icon_name_error.icon_colored.icon_theme_alfa-on-color, .icon_size_s.icon_name_error.icon_colored.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_s_color.svg); }

.icon_size_s.icon_name_error.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_s_white.svg); }

.icon_size_xl.icon_name_error.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_xl_black.svg); }

.icon_size_xl.icon_name_error.icon_colored.icon_theme_alfa-on-color, .icon_size_xl.icon_name_error.icon_colored.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_xl_color.svg); }

.icon_size_xl.icon_name_error.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_xl_white.svg); }

.icon_size_xxl.icon_name_error.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_xxl_black.svg); }

.icon_size_xxl.icon_name_error.icon_colored.icon_theme_alfa-on-color, .icon_size_xxl.icon_name_error.icon_colored.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_xxl_color.svg); }

.icon_size_xxl.icon_name_error.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/error/icon_error_xxl_white.svg); }
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.icon_size_l.icon_name_fail.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/fail/icon_fail_l_black.svg); }

.icon_size_l.icon_name_fail.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/fail/icon_fail_l_white.svg); }

.icon_size_m.icon_name_fail.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/fail/icon_fail_m_black.svg); }

.icon_size_m.icon_name_fail.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/fail/icon_fail_m_white.svg); }

.icon_size_s.icon_name_fail.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/fail/icon_fail_s_black.svg); }

.icon_size_s.icon_name_fail.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/fail/icon_fail_s_white.svg); }

.icon_size_xl.icon_name_fail.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/fail/icon_fail_xl_black.svg); }

.icon_size_xl.icon_name_fail.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/fail/icon_fail_xl_white.svg); }

.icon_size_xxl.icon_name_fail.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/fail/icon_fail_xxl_black.svg); }

.icon_size_xxl.icon_name_fail.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/fail/icon_fail_xxl_white.svg); }
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.icon_size_l.icon_name_ok.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_l_black.svg); }

.icon_size_l.icon_name_ok.icon_colored.icon_theme_alfa-on-color, .icon_size_l.icon_name_ok.icon_colored.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_l_color.svg); }

.icon_size_l.icon_name_ok.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_l_white.svg); }

.icon_size_m.icon_name_ok.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_m_black.svg); }

.icon_size_m.icon_name_ok.icon_colored.icon_theme_alfa-on-color, .icon_size_m.icon_name_ok.icon_colored.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_m_color.svg); }

.icon_size_m.icon_name_ok.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_m_white.svg); }

.icon_size_s.icon_name_ok.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_s_black.svg); }

.icon_size_s.icon_name_ok.icon_colored.icon_theme_alfa-on-color, .icon_size_s.icon_name_ok.icon_colored.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_s_color.svg); }

.icon_size_s.icon_name_ok.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_s_white.svg); }

.icon_size_xl.icon_name_ok.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_xl_black.svg); }

.icon_size_xl.icon_name_ok.icon_colored.icon_theme_alfa-on-color, .icon_size_xl.icon_name_ok.icon_colored.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_xl_color.svg); }

.icon_size_xl.icon_name_ok.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_xl_white.svg); }

.icon_size_xxl.icon_name_ok.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_xxl_black.svg); }

.icon_size_xxl.icon_name_ok.icon_colored.icon_theme_alfa-on-color, .icon_size_xxl.icon_name_ok.icon_colored.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_xxl_color.svg); }

.icon_size_xxl.icon_name_ok.icon_theme_alfa-on-color {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_xxl_white.svg); }

.icon_size_xxxl.icon_name_ok.icon_colored.icon_theme_alfa-on-color, .icon_size_xxxl.icon_name_ok.icon_colored.icon_theme_alfa-on-white {
  background-image: url(node_modules/arui-feather/icon/ui/ok/icon_ok_xxxl_color.svg); }
.constructor-header {
  border-bottom: 1px solid #e5e5e5; }
  .constructor-header .logo-bank {
    margin: 8px 0 7px 0; }

.row_info {
  margin-bottom: 20px; }

.select_with_input {
  margin-top: 6px; }

.prepay-container {
  width: 100%;
  max-width: 360px;
  padding: 15px;
  margin: 0 auto; }

.h_tooltip .h__text,
.h_tooltip .dropdown {
  display: inline-block; }

.h_tooltip .dropdown {
  margin-left: 5px; }

h6 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: .5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit; }
.basicField_amount .amount__currency {
  display: none; }

.basicField_amount .basicField_currency:before {
  content: ' '; }

.basicField_amount .basicField_currency {
  color: rgba(11, 31, 53, 0.95);
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  opacity: 0.6; }
.select__tick[type=button] {
  -webkit-appearance: none; }

.lang {
  margin-top: 10px;
  float: right; }
.container {
  box-sizing: border-box;
  padding-right: 20px;
  padding-left: 20px; }

.container_center {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px; }

@media (min-width: 768px) {
  .container_center {
    width: 750px; } }

@media (min-width: 992px) {
  .container_center {
    width: 970px; } }

@media (min-width: 1200px) {
  .container_center {
    width: 1170px; } }

.container-fluid {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px; }

.container-fluid_no-padding {
  padding-right: 0;
  padding-left: 0; }

.row {
  margin-right: -20px;
  margin-left: -20px; }

.row.row_margin0 {
  margin: 0; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  box-sizing: border-box;
  min-height: 1px;
  padding-right: 20px;
  padding-left: 20px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

.col-xs-9 {
  width: 75%; }

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

.col-xs-6 {
  width: 50%; }

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

.col-xs-3 {
  width: 25%; }

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-pull-11 {
  right: 91.66666667%; }

.col-xs-pull-10 {
  right: 83.33333333%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-8 {
  right: 66.66666667%; }

.col-xs-pull-7 {
  right: 58.33333333%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-5 {
  right: 41.66666667%; }

.col-xs-pull-4 {
  right: 33.33333333%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-2 {
  right: 16.66666667%; }

.col-xs-pull-1 {
  right: 8.33333333%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-push-11 {
  left: 91.66666667%; }

.col-xs-push-10 {
  left: 83.33333333%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-8 {
  left: 66.66666667%; }

.col-xs-push-7 {
  left: 58.33333333%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-5 {
  left: 41.66666667%; }

.col-xs-push-4 {
  left: 33.33333333%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-2 {
  left: 16.66666667%; }

.col-xs-push-1 {
  left: 8.33333333%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-12 {
  margin-left: 100%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-0 {
  margin-left: 0; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-11 {
    width: 91.66666667%; }
  .col-sm-10 {
    width: 83.33333333%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-8 {
    width: 66.66666667%; }
  .col-sm-7 {
    width: 58.33333333%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-5 {
    width: 41.66666667%; }
  .col-sm-4 {
    width: 33.33333333%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-2 {
    width: 16.66666667%; }
  .col-sm-1 {
    width: 8.33333333%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-pull-11 {
    right: 91.66666667%; }
  .col-sm-pull-10 {
    right: 83.33333333%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-8 {
    right: 66.66666667%; }
  .col-sm-pull-7 {
    right: 58.33333333%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-5 {
    right: 41.66666667%; }
  .col-sm-pull-4 {
    right: 33.33333333%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-2 {
    right: 16.66666667%; }
  .col-sm-pull-1 {
    right: 8.33333333%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-push-11 {
    left: 91.66666667%; }
  .col-sm-push-10 {
    left: 83.33333333%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-8 {
    left: 66.66666667%; }
  .col-sm-push-7 {
    left: 58.33333333%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-5 {
    left: 41.66666667%; }
  .col-sm-push-4 {
    left: 33.33333333%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-2 {
    left: 16.66666667%; }
  .col-sm-push-1 {
    left: 8.33333333%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-0 {
    margin-left: 0; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-12 {
    width: 100%; }
  .col-md-11 {
    width: 91.66666667%; }
  .col-md-10 {
    width: 83.33333333%; }
  .col-md-9 {
    width: 75%; }
  .col-md-8 {
    width: 66.66666667%; }
  .col-md-7 {
    width: 58.33333333%; }
  .col-md-6 {
    width: 50%; }
  .col-md-5 {
    width: 41.66666667%; }
  .col-md-4 {
    width: 33.33333333%; }
  .col-md-3 {
    width: 25%; }
  .col-md-2 {
    width: 16.66666667%; }
  .col-md-1 {
    width: 8.33333333%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-pull-11 {
    right: 91.66666667%; }
  .col-md-pull-10 {
    right: 83.33333333%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-8 {
    right: 66.66666667%; }
  .col-md-pull-7 {
    right: 58.33333333%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-5 {
    right: 41.66666667%; }
  .col-md-pull-4 {
    right: 33.33333333%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-2 {
    right: 16.66666667%; }
  .col-md-pull-1 {
    right: 8.33333333%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-push-11 {
    left: 91.66666667%; }
  .col-md-push-10 {
    left: 83.33333333%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-8 {
    left: 66.66666667%; }
  .col-md-push-7 {
    left: 58.33333333%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-5 {
    left: 41.66666667%; }
  .col-md-push-4 {
    left: 33.33333333%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-2 {
    left: 16.66666667%; }
  .col-md-push-1 {
    left: 8.33333333%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-0 {
    margin-left: 0; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-11 {
    width: 91.66666667%; }
  .col-lg-10 {
    width: 83.33333333%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-8 {
    width: 66.66666667%; }
  .col-lg-7 {
    width: 58.33333333%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-5 {
    width: 41.66666667%; }
  .col-lg-4 {
    width: 33.33333333%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-2 {
    width: 16.66666667%; }
  .col-lg-1 {
    width: 8.33333333%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-pull-11 {
    right: 91.66666667%; }
  .col-lg-pull-10 {
    right: 83.33333333%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-8 {
    right: 66.66666667%; }
  .col-lg-pull-7 {
    right: 58.33333333%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-5 {
    right: 41.66666667%; }
  .col-lg-pull-4 {
    right: 33.33333333%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-2 {
    right: 16.66666667%; }
  .col-lg-pull-1 {
    right: 8.33333333%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-push-11 {
    left: 91.66666667%; }
  .col-lg-push-10 {
    left: 83.33333333%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-8 {
    left: 66.66666667%; }
  .col-lg-push-7 {
    left: 58.33333333%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-5 {
    left: 41.66666667%; }
  .col-lg-push-4 {
    left: 33.33333333%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-2 {
    left: 16.66666667%; }
  .col-lg-push-1 {
    left: 8.33333333%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-0 {
    margin-left: 0; } }

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: ' ';
  display: table; }

.clearfix:after,
.container_center:after,
.container-fluid:after,
.row:after {
  clear: both; }

.center-block, .page-preloader.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.m-0 {
  margin: 0 !important; }

.mt-0,
.my-0 {
  margin-top: 0 !important; }

.mr-0,
.mx-0 {
  margin-right: 0 !important; }

.mb-0,
.my-0 {
  margin-bottom: 0 !important; }

.ml-0,
.mx-0 {
  margin-left: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1,
.my-1 {
  margin-top: 0.25rem !important; }

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important; }

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important; }

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2,
.my-2 {
  margin-top: 0.5rem !important; }

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important; }

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.mt-3,
.my-3 {
  margin-top: 1rem !important; }

.mr-3,
.mx-3 {
  margin-right: 1rem !important; }

.mb-3,
.my-3 {
  margin-bottom: 1rem !important; }

.ml-3,
.mx-3 {
  margin-left: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.mt-4,
.my-4 {
  margin-top: 1.5rem !important; }

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important; }

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important; }

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.mt-5,
.my-5 {
  margin-top: 3rem !important; }

.mr-5,
.mx-5 {
  margin-right: 3rem !important; }

.mb-5,
.my-5 {
  margin-bottom: 3rem !important; }

.ml-5,
.mx-5 {
  margin-left: 3rem !important; }

.p-0 {
  padding: 0 !important; }

.pt-0,
.py-0 {
  padding-top: 0 !important; }

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

.pb-0,
.py-0 {
  padding-bottom: 0 !important; }

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

.p-1 {
  padding: 0.25rem !important; }

.pt-1,
.py-1 {
  padding-top: 0.25rem !important; }

.pr-1,
.px-1 {
  padding-right: 0.25rem !important; }

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1,
.px-1 {
  padding-left: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

.pr-2,
.px-2 {
  padding-right: 0.5rem !important; }

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

.pl-2,
.px-2 {
  padding-left: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.pt-3,
.py-3 {
  padding-top: 1rem !important; }

.pr-3,
.px-3 {
  padding-right: 1rem !important; }

.pb-3,
.py-3 {
  padding-bottom: 1rem !important; }

.pl-3,
.px-3 {
  padding-left: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4,
.py-4 {
  padding-top: 1.5rem !important; }

.pr-4,
.px-4 {
  padding-right: 1.5rem !important; }

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important; }

.pl-4,
.px-4 {
  padding-left: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5,
.py-5 {
  padding-top: 3rem !important; }

.pr-5,
.px-5 {
  padding-right: 3rem !important; }

.pb-5,
.py-5 {
  padding-bottom: 3rem !important; }

.base-loader {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100; }

.base-loader__img {
  background-image: url(source/img/mini_logo.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -29px;
  margin-top: -30px;
  font-size: 8px;
  position: absolute; }

.base-loader__circle {
  opacity: 1;
  width: 70px;
  height: 70px;
  margin-left: -39px;
  margin-top: -39px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  font-size: 8px;
  position: absolute;
  text-indent: -9999em;
  border-top: 4px solid rgba(11, 31, 53, 0.1);
  border-right: 4px solid rgba(11, 31, 53, 0.1);
  border-bottom: 4px solid rgba(11, 31, 53, 0.1);
  border-left: 4px solid #0b1f35;
  transform: translateZ(0);
  -webkit-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

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

html,
body {
  height: 100%;
  margin: 0; }
