@charset "UTF-8";
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/**
* Селекторы для таргетинга на конкретные браузеры без влияния на специфику или
* ограничение использования в медиа-запросах
*
* Плюсы:
* - Работает с медиа-запросами
*
* Минусы:
* - Не может использоваться с @extend, так как это приведет к недействительности других селекторов
*/
/**
* Целевой Internet Explorer, но не Edge
*
* @demo
*	div {
*		@include browser-ie () {
*			// ...
*		}
*	}
*/
/**
* Target IE-Edge
*/
/**
* Target Firefox
*/
/**
* Target Safari
*/
/**
* Target all WebKit browsers
*/
/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/
/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/
/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/
/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/
/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/
/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/
/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/
/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/
/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/
/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/
@font-face {
  src: url("../fonts/SFProDisplay/SFProDisplay-Medium.woff2") format("woff2"), url("../fonts/SFProDisplay/SFProDisplay-Medium.woff") format("woff");
  font-family: "SFProDisplay";
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  src: url("../fonts/SFProDisplay/SFProDisplay-Regular.woff2") format("woff2"), url("../fonts/SFProDisplay/SFProDisplay-Regular.woff") format("woff");
  font-family: "SFProDisplay";
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  padding: 0; }

:root {
  font-size: 16px; }

html {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "SFProDisplay", sans-serif; }
  html.has-cursor,
  html.has-cursor * {
    cursor: none !important; }
  html.is-lock-scroll,
  html.is-lock-scroll body {
    overflow: hidden; }

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background: #F8F9FA; }

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

p {
  margin: 0; }

a,
button {
  outline: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer; }

a {
  text-decoration: none;
  color: currentColor; }

svg {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  height: 100%;
  fill: currentColor; }

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0; }
  figure img,
  picture img {
    width: 100%; }

img {
  vertical-align: top;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

img[draggable="false"] {
  pointer-events: none;
  -webkit-user-drag: none; }

fieldset {
  margin: 0;
  border: 0;
  padding: 0; }

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0; }

video {
  outline: none;
  width: 100%;
  height: 100%; }

iframe {
  display: block; }

.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  max-width: 100%; }
  @media (max-width: 767px) {
    .container {
      padding: 0 15px; } }

.app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh; }
  .app_streamer {
    background: #FFFFFF; }

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .flex_center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

.main {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin-left: 72px;
  padding: 24px 0; }
  @media (max-width: 767px) {
    .main {
      margin-left: 0; } }
  .main_navbar-open {
    margin-left: 300px; }
    @media (max-width: 991px) {
      .main_navbar-open {
        margin-left: 0; } }
  .main_login {
    padding-top: 64px; }

h1,
h2 {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 120%;
  color: #000000;
  padding: 0;
  margin: 0 0 24px 0; }

h2 {
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  color: #212529; }

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .row-primary {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -12px; }
    @media (max-width: 549px) {
      .row-primary {
        margin: -5px; } }

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .flex-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .flex-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }

.is-hidden {
  display: none !important; }

.is-hide {
  opacity: 0; }

.clearfix {
  overflow: auto; }
  .clearfix::after {
    content: "";
    display: table;
    clear: both; }

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0); }

.mt_12 {
  margin-top: 12px; }

.button-blue {
  background: #007BFF;
  border-radius: 4px;
  height: 36px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 12px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFFFFF; }

.button-hide {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 36px;
  border: 0;
  background: #F8F9FA;
  border-radius: 4px;
  padding: 0 12px;
  outline: none;
  font-size: 16px;
  color: #212529; }
  .button-hide svg {
    width: 24px;
    height: 24px;
    margin-right: 4px; }
  .button-hide.is-show {
    background: none;
    padding: 0; }
    .button-hide.is-show span {
      display: none; }
    .button-hide.is-show svg {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }

.header {
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075); }
  .header_gray {
    background: #F8F9FA;
    -webkit-box-shadow: none;
            box-shadow: none; }
  .header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 88px; }
  .header__logo {
    display: none; }
    @media (max-width: 767px) {
      .header__logo {
        display: block; } }
    .header__logo img {
      width: 45px; }
  .header__links {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .header__links a {
      width: 36px;
      height: 36px; }
  .header__notification {
    position: relative; }
    .header__notification svg {
      width: 21px;
      height: 24px; }
    .header__notification i {
      position: absolute;
      right: -4px;
      top: -4px;
      background: #DC3545;
      height: 18px;
      font-style: normal;
      font-weight: 500;
      font-size: 12px;
      line-height: 18px;
      min-width: 15px;
      text-align: center;
      color: #FFFFFF;
      border-radius: 9px; }
  .header__user {
    margin-left: 6px;
    border-radius: 50%;
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    overflow: hidden; }
  .header__burger {
    width: 54px;
    height: 38px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-right: 8px; }
    .header__burger svg {
      width: 30px;
      height: 30px; }

.nav-bar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  width: 72px;
  overflow: hidden;
  z-index: 15; }
  @media (max-width: 991px) {
    .nav-bar {
      -webkit-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
              transform: translateX(-100%);
      width: 300px; } }
  .nav-bar_open {
    width: 300px; }
    @media (max-width: 991px) {
      .nav-bar_open {
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0); } }
  .nav-bar__logo {
    margin-bottom: 24px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .nav-bar__logo img {
      width: 45px;
      height: 32px;
      min-width: 45px; }
    .nav-bar__logo_hide {
      opacity: 0; }
  .nav-bar__menu {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-left: -24px;
    margin-right: -24px; }
    .nav-bar__menu li a {
      height: 60px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border-right: 6px solid #FFFFFF;
      font-weight: 500;
      font-size: 1.5rem;
      line-height: 1.2;
      padding: 0 24px;
      color: #212529; }
      .nav-bar__menu li a span {
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
      .nav-bar__menu li a svg {
        width: 24px;
        height: 24px;
        margin-right: 12px; }
      .nav-bar__menu li a.is-active {
        border-right: 6px solid #007BFF; }
    .nav-bar__menu_small li a span {
      opacity: 0; }
    .nav-bar__menu_small li a.is-active {
      border-right: 6px solid #FFFFFF; }
  .nav-bar__theme {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .nav-bar__theme_hide {
      opacity: 0; }
  .nav-bar__copyr {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #6C757D;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    white-space: nowrap; }
    .nav-bar__copyr_hide {
      opacity: 0; }

.info {
  margin: -12px; }
  @media (max-width: 549px) {
    .info {
      margin: -5px; } }
  .info__card {
    width: calc(33.3% - 24px);
    margin: 12px;
    height: 204px;
    background: #007BFF;
    border-radius: 20px;
    color: #FFFFFF;
    padding: 16px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (max-width: 991px) {
      .info__card {
        width: calc(50% - 24px); } }
    @media (max-width: 767px) {
      .info__card {
        height: 150px; } }
    @media (max-width: 549px) {
      .info__card {
        width: calc(100% - 10px);
        margin: 5px; } }
    .info__card_gray {
      background: #CED4DA; }
  .info__label {
    font-size: 1rem;
    line-height: 1.5; }
  .info__value {
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 1.2;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

.campaign-card {
  width: calc(33.3% - 24px);
  margin: 12px;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .campaign-card {
      width: calc(50% - 24px); } }
  @media (max-width: 549px) {
    .campaign-card {
      width: calc(100% - 10px);
      margin: 5px; } }
  .campaign-card__head {
    background: #E9ECEF;
    height: 48px;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529; }
  .campaign-card__body {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .campaign-card__logo {
    width: 100px;
    height: 100px;
    margin-bottom: 12px; }
  .campaign-card__title {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 6px;
    color: #212529; }
  .campaign-card__info {
    color: #6C757D;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 12px; }
  .campaign-card__desc {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 12px; }
  .campaign-card__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -2px; }
    .campaign-card__tags span {
      margin: 2px;
      border-radius: 4px;
      padding: 3px 4px;
      font-weight: 500;
      font-size: 0.75rem;
      line-height: 1;
      color: #FFFFFF; }
      .campaign-card__tags span.is-blue {
        background: #80BDFF; }
      .campaign-card__tags span.is-yellow {
        background: #FFC107; }
      .campaign-card__tags span.is-green {
        background: #28A745; }
      .campaign-card__tags span.is-red {
        background: #DC3545; }

.client-card {
  background: #FFFFFF;
  border-radius: 20px;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  width: calc(33.3% - 24px);
  margin: 12px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  color: #6C757D; }
  .client-card__logo {
    margin-bottom: 12px;
    width: 100px;
    height: 100px; }
  .client-card__title {
    font-size: 1.25rem;
    color: #212529;
    margin-bottom: 6px; }
  .client-card__button {
    margin-top: 12px; }

.table {
  background: #FFFFFF;
  border-radius: 20px;
  overflow-x: auto; }
  .table table {
    width: 100%;
    border: 0;
    border-collapse: collapse;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #212529;
    min-width: 800px; }
    .table table th {
      background: #E9ECEF;
      padding: 18px 20px;
      font-weight: 700;
      text-align: left; }
      .table table th:first-child {
        border-radius: 20px 0 0 0; }
      .table table th:last-child {
        border-radius: 0 20px 0 0; }
    .table table td {
      padding: 12px 20px;
      border-top: 1px solid #DFDFDF; }
    .table table tr {
      border: 0; }
      .table table tr:nth-child(2) td {
        border: 0; }
  .table__charts {
    width: 24px;
    height: 24px; }
  .table__arw {
    width: 12px;
    height: 13px;
    margin-left: 14px; }
  .table__user {
    position: relative;
    width: 36px;
    height: 36px; }
    .table__user em {
      position: absolute;
      right: -4px;
      top: -4px;
      background: #DC3545;
      height: 18px;
      font-style: normal;
      font-weight: 500;
      font-size: 12px;
      line-height: 18px;
      min-width: 15px;
      text-align: center;
      color: #FFFFFF;
      border-radius: 9px; }
  .table__points {
    width: 24px;
    height: 24px; }
  .table__link {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    .table__link a {
      margin-left: 20px; }

.new-campaign {
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
  border-radius: 20px;
  max-width: 906px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 93px; }

.select-language {
  position: relative; }
  .select-language:before, .select-language:after {
    content: '';
    width: 24px;
    height: 30px;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    background-repeat: no-repeat;
    background-size: contain; }
  .select-language:before {
    background-image: url(../images/lang.svg);
    left: 16px; }
  .select-language:after {
    background-image: url(../images/arrow.svg);
    right: 16px; }
  .select-language select {
    height: 46px;
    border-radius: 5px;
    border: 1px solid #CED4DA;
    display: block;
    width: 100%;
    font-size: 1.25rem;
    color: #6C757D;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 0 0 0 48px; }

.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center; }
  .login__logo {
    margin-top: 80px;
    margin-bottom: 24px; }
    .login__logo img {
      width: 90px;
      height: 64px; }
  .login__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    color: #212529;
    margin-bottom: 24px; }
  .login__button {
    padding: 0 45px;
    height: 46px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px; }
    .login__button svg {
      width: 30px;
      height: 30px;
      margin-right: 4px; }
  .login__info {
    margin-top: 24px;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 19px;
    text-align: center;
    color: #6C757D; }

.notify {
  margin-right: -5px;
  margin-left: -5px; }
  .notify__card {
    width: calc(50% - 10px);
    margin: 8px 5px;
    height: 122px;
    border-radius: 20px;
    color: #FFFFFF;
    padding: 16px 20px;
    padding-right: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .notify__card_red {
      background: #DC3545; }
    .notify__card_green {
      background: #28A745; }
    .notify__card_yellow {
      background: #FFC107; }
    .notify__card_gray {
      background: #17A2B8; }
    .notify__card_blue {
      background: #007BFF; }
  .notify__label {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px; }
  .notify__value {
    font-weight: 500;
    font-size: 28px;
    line-height: 34px; }

.tasks {
  background: #F8F9FA;
  border-radius: 20px;
  padding: 24px;
  padding-top: 16px;
  margin: 8px 0; }
  .tasks h2 {
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
    margin: 0;
    margin-bottom: 12px;
    padding: 0; }
  .tasks .btn {
    margin-top: 12px; }

.profile {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: 20;
  padding: 24px;
  padding-top: 96px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  .profile_show {
    opacity: 1;
    visibility: visible; }
  .profile__logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100px;
    height: 100px;
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    border-radius: 50%;
    margin-bottom: 24px; }
  .profile__name {
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 16px; }
  .profile__close {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 24px;
    height: 24px; }

.campaign-head {
  height: 88px;
  background: #F8F9FA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 24px; }
  .campaign-head__prev {
    width: 30px;
    height: 30px; }
  .campaign-head__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .campaign-head__link {
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    margin-left: 6px; }
    .campaign-head__link svg {
      width: 24px;
      height: 24px; }
    .campaign-head__link i {
      height: 18px;
      right: -4px;
      top: -4px;
      position: absolute;
      background: #DC3545;
      border-radius: 40px;
      color: #FFFFFF;
      font-weight: 500;
      font-size: 12px;
      line-height: 18px;
      font-style: normal;
      padding: 0 4px; }

.campaign-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #212529;
  padding: 24px; }
  .campaign-body h1,
  .campaign-body h2 {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    color: #000000;
    padding: 0;
    margin: 0 0 16px 0; }
  .campaign-body h2 {
    font-size: 24px;
    line-height: 29px; }
  .campaign-body p {
    margin-bottom: 16px; }

/*# sourceMappingURL=main.css.map */
