@charset "UTF-8";
/* smartphones, touchscreens */
/* stylus-based screens */
/* Nintendo Wii controller, Microsoft Kinect */
/* mouse, touch pad */
video::-webkit-media-controls {
    display:none !important;
}

[data-whatintent='touch'] *:focus,
[data-whatintent='mouse'] *:focus {
  outline: none; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

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

html {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  scrollbar-color: #999 #ccc;
  scrollbar-width: thin; }
  html::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #ccc; }
  html::-webkit-scrollbar-track {
    background-color: #ccc; }
  html::-webkit-scrollbar-thumb:vertical {
    background-color: #999; }
  html::-webkit-scrollbar-thumb:horizontal {
    background-color: #999; }

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Inters", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  overflow-x: hidden;
  cursor: default;
  background: #F0F0F0; }
  @media (max-width: 767px) {
    body {
      font-size: 14px; } }

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0; }

ul, ol {
  margin: 0; }
  ul.no-style, ol.no-style {
    padding: 0;
    list-style: none; }

button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  cursor: pointer; }

img {
  border: none; }

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

[contenteditable=true]:empty:before {
  content: attr(data-placeholder);
  color: #131313;
  font-size: inherit;
  display: block;
  /* For Firefox */ }

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  select::-ms-expand {
    display: none; }

input[type=submit] {
  width: auto; }

input[type='number'] {
  -moz-appearance: textfield; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none; }

input[type="search"] {
  -webkit-appearance: textfield; }

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

blockquote {
  margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-weight: bold; }

h1 {
  font-size: 42px;
  line-height: 51px;
  font-weight: 800; }

h2 {
  font-size: 42px;
  line-height: 51px;
  font-weight: 800; }

h3 {
  font-size: 28px;
  line-height: 34px; }

h4 {
  font-size: 22px; }

.container {
  width: 100%;
  margin: auto;
  padding: 0 16px; }

.simple-select {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 328px;
  height: 32px;
  background: #ffffff; }
  .simple-select.is-active .simple-select__main svg {
    -webkit-transform: scaleY(-1);
        -ms-transform: scaleY(-1);
            transform: scaleY(-1); }
  .simple-select.is-active .simple-select__drop {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    visibility: visible;
    opacity: 1; }
  .simple-select.error .simple-select__main {
    border-color: #E60000; }
  .simple-select__main {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 12px;
    color: #000;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    cursor: pointer;
    -webkit-transition: border-color .15s linear;
    transition: border-color .15s linear; }
    .simple-select__main svg {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 12px;
      height: 6px;
      -webkit-transition: .15s linear;
      transition: .15s linear;
      -webkit-transition-property: -webkit-transform;
      transition-property: -webkit-transform;
      transition-property: transform;
      transition-property: transform, -webkit-transform;
      margin-left: 15px;
      fill: black; }
  .simple-select__selected {
    white-space: nowrap;
    overflow: hidden;
    width: calc(100% - 26px);
    text-overflow: ellipsis;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: left; }
    .simple-select__selected:empty::before {
      content: attr(data-placeholder);
      font-size: inherit;
      font-family: inherit;
      line-height: inherit;
      color: #333;
      font-weight: inherit; }
  .simple-select__drop {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    -webkit-transform: scale(0.85);
        -ms-transform: scale(0.85);
            transform: scale(0.85);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .1s linear;
    transition: .1s linear;
    -webkit-transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, -webkit-transform;
    transition-property: transform, opacity, visibility;
    transition-property: transform, opacity, visibility, -webkit-transform;
    -webkit-transform-origin: top center;
        -ms-transform-origin: top center;
            transform-origin: top center;
    font-size: 14px;
    line-height: 20px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: #fff;
    z-index: 2;
    margin-bottom: 0; }
  .simple-select__drop-inner {
    max-height: 305px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    -webkit-overflow-scrolling: touch;
    overflow: hidden auto;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    scrollbar-color: #999 #ccc;
    scrollbar-width: thin; }
    .simple-select__drop-inner::-webkit-scrollbar {
      width: 2px;
      height: 2px;
      background-color: #ccc; }
    .simple-select__drop-inner::-webkit-scrollbar-track {
      background-color: #ccc; }
    .simple-select__drop-inner::-webkit-scrollbar-thumb:vertical {
      background-color: #999; }
    .simple-select__drop-inner::-webkit-scrollbar-thumb:horizontal {
      background-color: #999; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .simple-select__drop-inner {
        overflow: auto; } }
  .simple-select__list {
    list-style: none;
    padding: 14px 10px; }
  .simple-select__item {
    padding: 6px 20px;
    -webkit-transition: .15s linear;
    transition: .15s linear;
    -webkit-transition-property: background-color;
    transition-property: background-color;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 2px; }
    .simple-select__item:last-child {
      margin-bottom: 0; }
    .simple-select__item.is-active {
      background-color: #E6F7FF;
      color: #1890FF; }
    .simple-select__item:hover {
      background-color: #E6F7FF;
      color: #1890FF; }
  .simple-select--list {
    height: auto;
    width: auto; }
    .simple-select--list .simple-select__main {
      display: none; }
    .simple-select--list .simple-select__drop {
      position: relative;
      top: 0;
      opacity: 1;
      visibility: visible;
      -webkit-box-shadow: none;
              box-shadow: none;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
    .simple-select--list .simple-select__drop-inner {
      max-height: none; }
    .simple-select--list .simple-select__list {
      padding: 0; }
    .simple-select--list .simple-select__item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: baseline;
          -ms-flex-align: baseline;
              align-items: baseline;
      margin-bottom: 13px;
      color: rgba(128, 128, 128, 0.5);
      padding: 0;
      background: none;
      -webkit-transition: 0.15s linear;
      transition: 0.15s linear;
      -webkit-transition-property: color;
      transition-property: color; }
      .simple-select--list .simple-select__item:hover, .simple-select--list .simple-select__item:focus {
        color: gray; }
      .simple-select--list .simple-select__item.is-active {
        color: red; }
  .simple-select--inline {
    height: auto;
    width: auto; }
    .simple-select--inline .simple-select__main {
      height: auto;
      width: auto;
      border: none;
      border-radius: 0;
      padding: 0;
      background: none; }
      .simple-select--inline .simple-select__main svg {
        width: 11px;
        height: 9px;
        margin-left: 12px; }
    .simple-select--inline .simple-select__selected {
      width: auto; }
    .simple-select--inline .simple-select__drop {
      width: 200px;
      left: auto;
      right: 0; }
  .simple-select--text-atr {
    width: auto;
    height: auto;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5; }
    .simple-select--text-atr .simple-select__main {
      border: none;
      border-radius: 0;
      background: none;
      padding: 0 5px; }
      .simple-select--text-atr .simple-select__main svg {
        margin-left: 5px; }
    .simple-select--text-atr .simple-select__selected {
      width: calc(100% - 16px); }
      .simple-select--text-atr .simple-select__selected::after {
        content: "";
        position: absolute;
        left: 5px;
        right: 21px;
        bottom: 1px;
        height: 1px;
        background-color: red; }
    .simple-select--text-atr .simple-select__drop {
      width: auto;
      white-space: nowrap; }

@media (max-width: 900px) {
  .simple-select--list {
    font-size: 18px;
    line-height: 24px;
    max-width: 300px;
    width: 100%;
    height: 50px; }
    .simple-select--list .simple-select__main {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .simple-select--list .simple-select__drop {
      position: absolute;
      top: 100%;
      background-color: #fff;
      -webkit-transform: scale(0.85);
          -ms-transform: scale(0.85);
              transform: scale(0.85);
      visibility: hidden;
      opacity: 0; }
    .simple-select--list .simple-select__list {
      padding: 14px 20px; } }

@media (max-width: 575px) {
  .simple-select--list {
    font-size: 16px; } }

@media (max-width: 420px) {
  .simple-select--list {
    max-width: none; } }

.default-checkbox {
  display: block;
  font-size: 10px;
  line-height: 1.5; }
  @media (max-width: 767px) {
    .default-checkbox {
      font-size: 14px;
      line-height: 24px; } }
  .default-checkbox--error .default-checkbox__custom {
    border-color: #E60000; }
  .default-checkbox__label {
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .default-checkbox__custom {
    position: relative;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
    -webkit-transition-property: border-color, backgroud-color;
    transition-property: border-color, backgroud-color; }
    .default-checkbox__custom svg {
      fill: #fff;
      -webkit-transform: scale(0);
          -ms-transform: scale(0);
              transform: scale(0);
      -webkit-transition: all 0.15s cubic-bezier(0.18, 0.89, 0.32, 1.28);
      transition: all 0.15s cubic-bezier(0.18, 0.89, 0.32, 1.28); }
  .default-checkbox__text {
    text-align: left;
    -webkit-transition: all 0.15s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transition: all 0.15s cubic-bezier(0.18, 0.89, 0.32, 1.28); }
  .default-checkbox input {
    display: none; }
    .default-checkbox input:checked ~ .default-checkbox__custom {
      border-color: #1890FF;
      background-color: #1890FF; }
      .default-checkbox input:checked ~ .default-checkbox__custom svg {
        -webkit-transform: scale(1);
            -ms-transform: scale(1);
                transform: scale(1); }
    .default-checkbox input.disabled ~ .default-checkbox__custom, .default-checkbox input:disabled ~ .default-checkbox__custom {
      border-color: #D9D9D9;
      background-color: #D9D9D9;
      opacity: .4; }
      .default-checkbox input.disabled ~ .default-checkbox__custom svg, .default-checkbox input:disabled ~ .default-checkbox__custom svg {
        -webkit-transform: scale(1);
            -ms-transform: scale(1);
                transform: scale(1); }
    .default-checkbox input.error ~ .default-checkbox__custom {
      border-color: #E60000; }
  .default-checkbox label.error {
    display: none !important; }

.default-radio {
  display: block;
  font-size: 16px;
  line-height: 1.5; }
  @media (max-width: 767px) {
    .default-radio {
      font-size: 14px;
      line-height: 24px; } }
  .default-radio--error .default-radio__custom {
    border-color: #FF4D4F; }
  .default-radio__label {
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .default-radio__custom {
    position: relative;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 16px;
    margin-top: 2px;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
    -webkit-transition-property: border-color, border-width;
    transition-property: border-color, border-width; }
    .default-radio__custom::after {
      position: absolute;
      content: '';
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      width: 8px;
      height: 8px;
      background: #1890FF;
      opacity: 0;
      -webkit-transition: 0.25s;
      transition: 0.25s;
      border-radius: 50%; }
  .default-radio__text {
    text-align: left;
    -webkit-transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); }
  .default-radio input {
    display: none; }
    .default-radio input:checked ~ .default-radio__custom {
      border-color: #1890FF; }
      .default-radio input:checked ~ .default-radio__custom::after {
        opacity: 1; }
    .default-radio input.disabled ~ .default-radio__custom, .default-radio input:disabled ~ .default-radio__custom {
      border-color: cornflowerblue;
      border-width: 6px;
      opacity: .4; }
    .default-radio input.error ~ .default-radio__custom {
      border-color: #FF0000; }
  .default-radio label.error {
    display: none !important; }

.collapsible-row__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.15s;
  transition: 0.15s;
  cursor: pointer;
  position: relative; }
  .collapsible-row__header:hover {
    border-color: #000; }

.collapsible-row__arrow {
  -webkit-transition: 0.15s;
  transition: 0.15s; }

.collapsible-row__chevron {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }

.collapsible-row__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 0; }

.collapsible-row__dropdown {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.15s ease-in-out;
  transition: height 0.15s ease-in-out; }
  .collapsible-row__dropdown .collapsible-row__header {
    border-color: rgba(0, 0, 0, 0.1); }
  .collapsible-row__dropdown .collapsible-row__header .collapsible-row__item:first-child {
    padding-left: 48px; }

.collapsible-row.is-open .collapsible-row__arrow {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }

.collapsible-row.is-open .collapsible-row__dropdown {
  height: auto; }

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  color: #000;
  padding: 0 0 16px 0;
  margin: 0;
  opacity: 0.5; }
  .breadcrumbs__back {
    font-size: 12px;
    line-height: 15px;
    display: none; }
    .breadcrumbs__back a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .breadcrumbs__back svg {
      width: 8px;
      height: 5px;
      fill: #727F8C;
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg);
      margin-right: 12px; }
  .breadcrumbs span {
    color: #000; }
  .breadcrumbs__link {
    text-decoration: underline; }
  .breadcrumbs__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .breadcrumbs__item::after {
      content: "/";
      position: relative;
      width: 0px;
      height: 18px;
      display: block;
      margin: 0 8px; }

.subscriber-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  position: relative;
  z-index: 1; }
  .subscriber-row__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding: 12px 0; }
  .subscriber-row.is-active {
    z-index: 2; }
    .subscriber-row.is-active .subscriber-row-menu__drop {
      display: block; }

.subscriber-row-menu {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer; }
  .subscriber-row-menu:hover svg {
    opacity: 0.7; }
  .subscriber-row-menu svg {
    -webkit-transition: 0.15s;
    transition: 0.15s;
    position: absolute;
    top: 0;
    right: 0; }
  .subscriber-row-menu__drop {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    position: absolute;
    -webkit-box-shadow: 0px 9px 28px 8px #0000000D;
            box-shadow: 0px 9px 28px 8px #0000000D;
    background: white;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
    width: 230px;
    display: none;
    border-radius: 2px; }
    .subscriber-row-menu__drop-item {
      padding: 5px 12px;
      -webkit-transition: 0.15s;
      transition: 0.15s;
      cursor: pointer; }
      .subscriber-row-menu__drop-item:hover {
        opacity: 0.7; }
    .subscriber-row-menu__drop .dell {
      color: #FF4D4F; }

.reelsCard {
  width: 100%;
  max-width: 275px;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  position: relative; }
  .reelsCard__time {
    font-weight: 400;
    font-size: 12px;
    line-height: 125%;
    letter-spacing: 0;
    background: #00000059;
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
    border-radius: 4px;
    color: #ffffff;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    padding: 2px 6px; }
  .reelsCard__main {
    width: 100%;
    background: #fff;
    border-radius: 9px 9px 0 0;
    line-height: 0;
    position: relative;
    padding: 8px;
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 160%; }
  .reelsCard__videoPlay {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
    -webkit-transition: 0.15s;
    transition: 0.15s;
    cursor: pointer;
    pointer-events: none; }
    .reelsCard__videoPlay svg {
      fill: #fff; }
  .reelsCard__mainTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    z-index: 3;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    top: 8px;
    left: 8px;
    right: 8px; }
  .reelsCard__mainBottom {
    position: relative;
    z-index: 2;
    background: #00000059;
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
    padding: 8px;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .reelsCard__bottomEl {
    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;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    gap: 6px;
    padding: 0 3px;
    color: #fff; }
    .reelsCard__bottomEl svg {
      fill: #fff;
      width: 15px;
      height: 15px; }
  .reelsCard__info {
    background: #00000059;
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
    padding: 8px;
    border-radius: 8px; }
  .reelsCard__link {
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
    color: #fff;
    margin-bottom: 2px; }
  .reelsCard__subscrs {
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: #fff;
    opacity: 0.5; }
  .reelsCard__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px; }
  .reelsCard__button {
    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;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #00000059;
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
    border: none;
    -webkit-transition: 0.15s;
    transition: 0.15s; }
    .reelsCard__button svg {
      fill: #fff; }
    @media (hover: hover) {
      .reelsCard__button:hover {
        opacity: 0.7; } }
  .reelsCard__iconWp {
    position: relative; }
  .reelsCard__popup {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.15s;
    transition: 0.15s;
    background: #fff; }
    .reelsCard__popup.isOpen {
      visibility: visible;
      opacity: 1; }
    .reelsCard__popup.toLeft {
      left: auto;
      right: 0; }
  .reelsCard__popupList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    max-height: 378px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    scrollbar-color: #999 #ccc;
    scrollbar-width: thin; }
    .reelsCard__popupList::-webkit-scrollbar {
      width: 2px;
      height: 2px;
      background-color: #ccc; }
    .reelsCard__popupList::-webkit-scrollbar-track {
      background-color: #ccc; }
    .reelsCard__popupList::-webkit-scrollbar-thumb:vertical {
      background-color: #999; }
    .reelsCard__popupList::-webkit-scrollbar-thumb:horizontal {
      background-color: #999; }
  .reelsCard .default-checkbox {
    font-size: 14px;
    line-height: 22px; }
    .reelsCard .default-checkbox__text {
      margin-left: 12px;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
    .reelsCard .default-checkbox__label {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
  .reelsCard__popupListAppend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    height: 22px;
    background: transparent;
    border: none;
    padding: 0;
    color: #00000073;
    -webkit-transition: 0.15s;
    transition: 0.15s; }
    .reelsCard__popupListAppend svg {
      fill: #00000073; }
    @media (hover: hover) {
      .reelsCard__popupListAppend:hover {
        opacity: 0.7; } }
  .reelsCard__popupBtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
  .reelsCard__popupFavor {
    padding: 16px 12px;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    min-width: 258px; }
  .reelsCard__popupMore {
    padding: 4px 0;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-width: 295px; }
  .reelsCard__popupMoreBtn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 32px;
    padding: 0 0 0 12px;
    gap: 8px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    background: transparent;
    border: none;
    -webkit-transition: 0.15s;
    transition: 0.15s; }
    @media (hover: hover) {
      .reelsCard__popupMoreBtn:hover {
        background: #f0efef; } }
    .reelsCard__popupMoreBtn svg {
      fill: #000; }
  .reelsCard__popupTitle {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; }
  .reelsCard__img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 8px 8px 0 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    background: #000; }
    @media (hover: hover) {
      .reelsCard__img:hover + .reelsCard__videoPlay {
        -webkit-transform: translate(-50%, -50%) scale(1.1);
            -ms-transform: translate(-50%, -50%) scale(1.1);
                transform: translate(-50%, -50%) scale(1.1); } }
  .reelsCard__footer {
    width: 100%;
    min-height: 73px;
    padding: 16px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    display: block; }
  .reelsCard__name {
    font-size: 14px;
    font-weight: 500;
    line-height: 18.9px;
    margin-bottom: 4px; }
  .reelsCard__descr {
    word-break: break-word;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Ограничение на 2 строки */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative; }
    .reelsCard__descr-more {
      position: absolute;
      bottom: 0;
      right: 0;
      background: white;
      font-size: 400;
      line-height: 18px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 5px;
      padding-left: 5px; }
      .reelsCard__descr-more-txt {
        color: #a9a9a9; }
  .reelsCard .video-played + .reelsCard__videoPlay {
    display: none; }

.tarifs-card {
  background: white;
  border: 1px solid #0000001A;
  border-radius: 8px;
  width: 100%;
  text-align: left; }
  .tarifs-card__section {
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px; }
    .tarifs-card__section--includes {
      border-top: 1px solid #0000001A;
      border-bottom: 1px solid #0000001A; }
      .tarifs-card__section--includes.not-top-border {
        border-top: none; }
  .tarifs-card__section-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px; }
    .tarifs-card__section-info-title {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 4px; }
  .tarifs-card__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0; }
  .tarifs-card__subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    letter-spacing: 0; }
  .tarifs-card__price {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0; }
    .tarifs-card__price-descr {
      color: #00000080;
      font-size: 14px;
      line-height: 135%; }
  .tarifs-card__includes-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px; }
    .tarifs-card__includes-list-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 12px;
      font-weight: 400;
      font-size: 14px;
      line-height: 135%;
      letter-spacing: 0; }
      .tarifs-card__includes-list-item path {
        stroke: #1890FF; }

.accord-item {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px; }
  .accord-item a {
    -webkit-transition: 0.15s;
    transition: 0.15s; }
    .accord-item a:hover {
      color: #1890FF; }
  .accord-item__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer; }
    .accord-item__header:hover {
      color: #1890FF; }
    .accord-item__header p {
      -webkit-transition: 0.15s;
      transition: 0.15s; }
    .accord-item__header svg {
      -webkit-transition: 0.15s;
      transition: 0.15s; }
  .accord-item__drop {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    -webkit-transition: max-height 0.2s ease-out, opacity 0.2s ease-out;
    transition: max-height 0.2s ease-out, opacity 0.2s ease-out; }
    .accord-item__drop .accord-item__arrow {
      display: none; }
  .accord-item__count {
    color: #a9a9a9;
    margin-left: auto; }
  .accord-item__arrow {
    width: 10px;
    height: 9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .accord-item.is-active .accord-item__header {
    color: #1890FF; }
    .accord-item.is-active .accord-item__header .accord-item__count {
      color: #1890FF; }
    .accord-item.is-active .accord-item__header svg {
      fill: #1890FF;
      -webkit-transform: rotateX(-180deg);
              transform: rotateX(-180deg); }

.accord-item-el {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-bottom: 1px solid #F0F0F0;
  padding-left: 24px; }

.fav-item {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-bottom: 1px solid #F0F0F0;
  position: relative;
  z-index: 1; }
  .fav-item.is-active {
    background: #E6F7FF;
    color: #1890FF; }
  .fav-item__title {
    width: 100%;
    max-width: 196px;
    margin-right: auto; }
  .fav-item__count {
    color: #a9a9a9;
    margin-left: auto; }
  .fav-item__icon {
    width: 14px;
    height: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    position: relative; }
    .fav-item__icon svg {
      -webkit-transition: 0.15s;
      transition: 0.15s; }
      .fav-item__icon svg.mobile {
        display: none; }
    .fav-item__icon:hover svg {
      fill: #1890FF; }
  .fav-item__point {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1890FF; }
  .fav-item__drop {
    -webkit-box-shadow: 0px 9px 28px 8px #0000000D;
            box-shadow: 0px 9px 28px 8px #0000000D;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    background: #ffffff;
    width: 130px;
    position: absolute;
    left: 8px;
    top: calc(100% + 21px);
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    display: none; }
    .fav-item__drop p {
        color:#000;
      padding: 5px 12px; }
    .fav-item__drop p:hover {
        color:#1890FF;
      padding: 5px 12px; }
      .fav-item__drop p.dell {
        color: #FF4D4F; }
  .fav-item.is-open {
    z-index: 2; }
    .fav-item.is-open .fav-item__drop {
      display: block; }

@media (max-width: 991px) {
  .fav-item__icon svg.desktop {
    display: none; }
  .fav-item__icon svg.mobile {
    display: block;
    fill: #868E96; } }

.default-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px; }
  .default-toggle__text {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px; }
  .default-toggle__label {
    position: relative;
    cursor: pointer;
    width: 44px;
    height: 22px;
    display: block; }
    .default-toggle__label:hover input:checked ~ .default-toggle__main::before {
      opacity: 0; }
    .default-toggle__label:hover input:checked ~ .default-toggle__main::after {
      opacity: 1; }
  .default-toggle__main {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background-color: #D9D9D9;
    display: block;
    -webkit-transition: .25s linear;
    transition: .25s linear;
    -webkit-transition-property: border, background-color;
    transition-property: border, background-color;
    position: relative; }
    .default-toggle__main::before, .default-toggle__main::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      border-radius: inherit;
      opacity: 0;
      -webkit-transition: .25s linear;
      transition: .25s linear;
      -webkit-transition-property: opacity;
      transition-property: opacity; }
    .default-toggle__main::before {
      -webkit-box-shadow: inset 0px 0px 25px #1890FF;
              box-shadow: inset 0px 0px 25px #1890FF; }
    .default-toggle__main::after {
      -webkit-box-shadow: inset 0px 0px 25px #1890FF;
              box-shadow: inset 0px 0px 25px #1890FF; }
  .default-toggle__custom {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: .15s ease;
    transition: .15s ease;
    -webkit-transition-property: left,right;
    transition-property: left,right; }
  .default-toggle input {
    display: none; }
    .default-toggle input:checked ~ .default-toggle__main {
      background-color: #1890FF;
      border-color: #1890FF; }
      .default-toggle input:checked ~ .default-toggle__main::after {
        opacity: 0; }
      .default-toggle input:checked ~ .default-toggle__main::before {
        opacity: 1; }
    .default-toggle input:checked ~ .default-toggle__custom {
      left: 24px; }

.btn {
  position: relative;
  display: inline-block;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 1px solid #D9D9D9;
  border-radius: 2px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: #000;
  background-color: #ffffff;
  z-index: 1;
  -webkit-transition: .15s linear;
  transition: .15s linear;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color; }
  .btn__inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    padding: 4px 15px; }
  .btn__svg {
    -webkit-transition: .15s linear;
    transition: .15s linear;
    margin-right: 10px; }
    .btn__svg path {
      -webkit-transition: .15s linear;
      transition: .15s linear; }
  .btn:hover {
    background: #F0F0F0; }
  .btn--blue {
    background: #1890FF;
    border-color: #1890FF;
    color: white; }
    .btn--blue:hover {
      background: #1070ff;
      border-color: #1070ff; }
  .btn--red {
    background: #FF4D4F;
    border-color: #FF4D4F;
    color: white; }
    .btn--red:hover {
      color: #FF4D4F;
      background: white;
      border-color: #FF4D4F; }
  .btn--red2 {
    background: white;
    border-color: #FF4D4F;
    color: #FF4D4F; }
    .btn--red2:hover {
      color: white;
      background: #FF4D4F; }
  .btn[disabled] {
    opacity: 0.25;
    pointer-events: none;
    background: #D9D9D9; }

input, textarea {
  font-family: inherit;
  color: #000;
  background-color: #ffffff;
  outline: none;
  border-radius: 0;
  -webkit-transition: border-color .15s linear;
  transition: border-color .15s linear; }

textarea {
  height: 112px;
  resize: none;
  border-radius: 0; }

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25); }

:-moz-placeholder {
  color: rgba(0, 0, 0, 0.25); }

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25); }

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25); }

.file-drop-area {
  position: relative;
  width: 100%;
  padding: 32px;
  border-radius: 15px;
  border: 1px dashed #C4C4C4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
  -webkit-transition-property: background;
  transition-property: background; }
  .file-drop-area__title {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px; }
  .file-drop-area__txt {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    opacity: 0.5; }
  .file-drop-area svg {
    margin-bottom: 12px; }
  .file-drop-area.hide {
    display: none; }
  .file-drop-area input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0; }
    .file-drop-area input:focus {
      outline: none; }

.radio-group {
  max-height: 194px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  scrollbar-color: #999 #ccc;
  scrollbar-width: thin; }
  .radio-group::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #ccc; }
  .radio-group::-webkit-scrollbar-track {
    background-color: #ccc; }
  .radio-group::-webkit-scrollbar-thumb:vertical {
    background-color: #999; }
  .radio-group::-webkit-scrollbar-thumb:horizontal {
    background-color: #999; }

.input-group {
  position: relative;
  z-index: 1; }
  .input-group__icon {
    position: absolute;
    width: 28px;
    top: 1px;
    bottom: 1px;
    right: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #ffffff;
    cursor: pointer;
    -webkit-transition: 0.15s;
    transition: 0.15s; }
    .input-group__icon:hover {
      opacity: 0.7; }
  .input-group::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    -webkit-transition: .15s linear;
    transition: .15s linear;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    z-index: -1; }
  .input-group__label {
    display: none; }
  .input-group input,
  .input-group textarea {
    border-radius: 2px;
    background-color: #fff;
    border: 1px solid #D9D9D9;
    padding: 5px 12px;
    min-height: 32px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    width: 100%; }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .input-group input,
      .input-group textarea {
        padding: 5px 20px; } }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .input-group input:focus ~ .input-group__label, .input-group input:active ~ .input-group__label,
      .input-group textarea:focus ~ .input-group__label,
      .input-group textarea:active ~ .input-group__label {
        display: none; } }
    .input-group input.error,
    .input-group textarea.error {
      border: 1px solid #FF0000; }
      .input-group input.error ~ .input-group__label,
      .input-group textarea.error ~ .input-group__label {
        color: #ff0000; }
  .input-group label.error {
    display: none !important; }
  .input-group.label input {
    padding-left: 33px; }
  .input-group.label .input-group__label {
    display: block;
    position: absolute;
    top: 50%;
    left: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    pointer-events: none;
    -webkit-transition: all .15s linear;
    transition: all .15s linear;
    margin-bottom: 4px;
    width: 21px;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.25);
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  .input-group.input-group-textarea {
    min-height: 56px;
    height: 112px; }
    .input-group.input-group-textarea textarea {
      height: 100%;
      padding: 22px 20px 6px; }
      @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
        .input-group.input-group-textarea textarea {
          padding: 12px 20px 6px; } }

.file-upload-val {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
  margin-top: 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5); }
  .file-upload-val.is-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .file-upload-val__del {
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer; }
    .file-upload-val__del::before, .file-upload-val__del::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      width: 55%;
      height: 1px;
      background-color: #4d4d4d;
      border-radius: 5px;
      -webkit-transition: .15s linear;
      transition: .15s linear;
      -webkit-transition-property: background;
      transition-property: background; }
    .file-upload-val__del::before {
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
          -ms-transform: translate(-50%, -50%) rotate(45deg);
              transform: translate(-50%, -50%) rotate(45deg); }
    .file-upload-val__del::after {
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          -ms-transform: translate(-50%, -50%) rotate(-45deg);
              transform: translate(-50%, -50%) rotate(-45deg); }

.input-group-wrp__label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  margin-bottom: 4px; }

.range-dates-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #D9D9D9;
  border-radius: 2px;
  padding: 5px 12px;
  /* Для браузеров на основе WebKit (Chrome, Edge, Safari) */
  /* Для Firefox */ }
  .range-dates-inputs input {
    border: none;
    outline: none;
    position: relative;
    width: 100%; }
  .range-dates-inputs input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    width: calc(100% - 30px);
    height: 100%;
    position: absolute;
    right: -40px; }
  .range-dates-inputs input[type="date"]::-moz-calendar-picker-indicator {
    opacity: 0;
    width: calc(100% - 30px);
    height: 100%;
    position: absolute;
    right: -40px; }
  .range-dates-inputs__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }

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

.filters-section {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  z-index: 4; }
  @media (max-width: 767px) {
    .filters-section {
      padding-top: 16px; } }

.reels-found {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px; }
  .reels-found__results {
    color: #1890FF; }

.service-name-mob {
  display: none;
  position: relative;
  background: white; }
  .service-name-mob__link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    .service-name-mob__link svg {
      width: 20px; }
  .service-name-mob img {
    display: block; }
  @media (max-width: 1199px) {
    .service-name-mob {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      gap: 10px;
      padding: 16px 0;
      font-family: "Roboto", sans-serif;
      font-size: 24px;
      font-weight: 500;
      row-gap: 0;
      left: 0;
      width: 100%;
      z-index: 50;
      font-weight: 400;
      font-size: 10px;
      line-height: 125%;
      letter-spacing: 0%;
      text-align: right;
      color: #00000073; } }

.apple-fix {
  width: 100%;
  position: fixed; }

.no-scroll {
  overflow: hidden; }

input,
textarea {
  font-size: 16px !important; }

.title-and-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.page-not-found {
  padding: 40px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: 24px; }
  .page-not-found__txt {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center; }

.clearfix::after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.wrapper {
  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;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  background: #F0F0F0; }
  .wrapper--padding-top {
    padding-top: 48px; }
    .wrapper--padding-top .admin-inner {
      min-height: unset;
      height: calc(100vh - 48px); }
      @media (max-width: 767px) {
        .wrapper--padding-top .admin-inner {
          height: calc(100vh - 129px); } }
    @media (max-width: 1199px) {
      .wrapper--padding-top {
        padding-top: 0;
        padding-bottom: 70px; } }
  .wrapper.sticky {
    overflow: unset; }
  .wrapper .header {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
  .wrapper main {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }
  .wrapper .footer {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }

.admin-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  overflow: hidden;
  position: relative; }
  .admin-inner--padding-top {
    padding-top: 48px; }
    @media (max-width: 767px) {
      .admin-inner--padding-top {
        padding-top: 0; } }

.auth-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  background: #F4F6FA; }
  @media (max-width: 991px) {
    .auth-layout {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .auth-layout .auth-layout__item {
        width: 100%; }
      .auth-layout .auth-layout__info {
        padding: 40px 24px; }
      .auth-layout .auth-layout__form {
        border-radius: 0 0 32px 32px; }
        .auth-layout .auth-layout__form .modal-form-grid {
          max-width: 345px; }
      .auth-layout .auth-layout__info-title {
        font-size: 20px;
        line-height: 25px; }
      .auth-layout .auth-layout__info-txt {
        font-size: 16px;
        line-height: 21px; } }
  .auth-layout__item {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .auth-layout__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px;
    background: #ffffff; }
    .auth-layout__form-title {
      font-size: 24px;
      font-weight: 500;
      line-height: 32.4px;
      text-align: center; }
    .auth-layout__form .modal-form-grid {
      width: 100%;
      max-width: 264px; }
  .auth-layout__info {
    padding: 117px 77px; }
    .auth-layout__info-title {
      font-family: "Roboto", sans-serif;
      font-size: 24px;
      font-weight: 500;
      line-height: 30px;
      margin-bottom: 16px;
      max-width: 388px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 2; }
    .auth-layout__info-txt {
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 21.6px;
      margin-bottom: 63px;
      color: #a9a9a9;
      position: relative;
      z-index: 2; }
    .auth-layout__info-decor {
      width: 100%;
      height: 100px;
      position: relative; }
      .auth-layout__info-decor img {
        height: 71vh;
        position: absolute;
        top: -5px;
        left: -12px;
        z-index: 1;
        border-radius: 26px; }

.w-500 {
  -ms-flex-preferred-size: 500px;
      flex-basis: 500px; }

.w-200 {
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px; }

.w-284 {
  -ms-flex-preferred-size: 284px;
      flex-basis: 284px; }

.w-168 {
  -ms-flex-preferred-size: 168px;
      flex-basis: 168px; }

.w-84 {
  -ms-flex-preferred-size: 84px;
      flex-basis: 84px; }

.w-16 {
  -ms-flex-preferred-size: 16px;
      flex-basis: 16px; }

.w-242 {
  -ms-flex-preferred-size: 242px;
      flex-basis: 242px; }


.sidebar {
  overflow: scroll;
  width: 100%;
  max-width: 270px;
  background: #ffffff;
  -ms-overflow-style: none;
    scrollbar-width: none;
}

.sidebar::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.fav-aside-top {
  padding: 16px 16px 0 16px;
  border-bottom: 1px solid #F0F0F0; }
  .fav-aside-top__mob-title {
    display: none; }
  .fav-aside-top .btn {
    width: 100%; }
    .fav-aside-top .btn svg {
      margin-right: 10px;
      fill: #000;
      opacity: 1; }
      .fav-aside-top .btn svg path {
        fill-opacity: 1 !important; }
  .fav-aside-top__txt {
    margin-top: 16px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding: 9px 0; }

@media (max-width: 767px) {
  .fav-aside-top {
    padding: 24px 16px;
    background: #F0F0F0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px; }
    .fav-aside-top__txt {
      display: none; }
    .fav-aside-top__mob-title {
      display: block;
      font-size: 24px;
      font-weight: 700;
      line-height: 32px;
      text-align: left; }
    .fav-aside-top .btn {
      width: 32px;
      height: 32px;
      padding: 0; }
      .fav-aside-top .btn__inner {
        padding: 0; }
      .fav-aside-top .btn svg {
        margin-right: 0; }
      .fav-aside-top .btn span {
        display: none; }
    .fav-aside-top__mob-title {
      display: block; } }

.flex-gap-24 {
  gap: 24px; }

.agree-block {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  padding: 15px 10px;
  color: #a9a9a9;
  max-width: 300px;
  margin: 0 auto; }
  .agree-block a {
    text-decoration: underline; }
    .agree-block a:hover {
      text-decoration: none; }

.inputs-grid {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px; }
  .inputs-grid__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px; }
    .inputs-grid__item-link {
      -webkit-transition: 0.15s;
      transition: 0.15s;
      font-family: "Roboto", sans-serif;
      font-size: 12px;
      font-weight: 400;
      line-height: 20px;
      color: #a9a9a9; }
      .inputs-grid__item-link:hover {
        color: #1890FF; }

.btns-row-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px; }

.skeleton-wrapper {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .skeleton-wrapper__top {
    background: #e0e0e0;
    border-radius: 8px;
    -webkit-animation: shimmer 1s infinite linear;
            animation: shimmer 1s infinite linear;
    width: 153px;
    height: 64px;
    margin-bottom: auto;
    margin-bottom: 433px; }
  .skeleton-wrapper__bottom {
    background: #e0e0e0;
    border-radius: 4px;
    -webkit-animation: shimmer 1s infinite linear;
            animation: shimmer 1s infinite linear;
    width: 100%;
    height: 48px;
    border-radius: 8px; }

@-webkit-keyframes shimmer {
  0% {
    background-position: 100%; }
  100% {
    background-position: -100%; } }

@keyframes shimmer {
  0% {
    background-position: 100%; }
  100% {
    background-position: -100%; } }

.skeleton-wrapper__top,
.skeleton-wrapper__bottom {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #e0e0e0), color-stop(50%, #f5f5f5), color-stop(75%, #e0e0e0));
  background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background-size: 200% 100%; }

.tablet-visible {
  display: none; }

@media (max-width: 991px) {
  .tablet-full {
    max-width: 100%; }
  .tablet-hidden {
    display: none; }
  .tablet-visible {
    display: block; } }

.default-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.15);
  overflow: auto;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-overflow-scrolling: touch; }
  .default-modal.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1001; }
    .default-modal.is-active .default-modal__content {
      -webkit-transform: translateY(0) scale(1);
          -ms-transform: translateY(0) scale(1);
              transform: translateY(0) scale(1);
      opacity: 1; }
  .default-modal__close {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0px 4px;
    cursor: pointer;
    z-index: 2;
    -webkit-transition: 0.25s;
    transition: 0.25s; }
    .default-modal__close:hover {
      background-color: #D5D5D5; }
  .default-modal__content {
    width: 100%;
    max-width: 376px;
    height: 100%;
    width: 100%;
    -webkit-transform: translateX(120%);
        -ms-transform: translateX(120%);
            transform: translateX(120%);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 4px;
    background-color: #fff;
    position: relative;
    padding: 24px;
    margin-left: auto;
    -webkit-box-shadow: 0px 9px 28px 8px #0000000D;
            box-shadow: 0px 9px 28px 8px #0000000D;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    scrollbar-color: #999 #ccc;
    scrollbar-width: thin; }
    .default-modal__content::-webkit-scrollbar {
      width: 2px;
      height: 2px;
      background-color: #ccc; }
    .default-modal__content::-webkit-scrollbar-track {
      background-color: #ccc; }
    .default-modal__content::-webkit-scrollbar-thumb:vertical {
      background-color: #999; }
    .default-modal__content::-webkit-scrollbar-thumb:horizontal {
      background-color: #999; }
    .default-modal__content.wide {
      max-width: 640px; }
    .default-modal__content.center {
      height: auto;
      margin: auto;
      opacity: 0;
      -webkit-transform: translateY(-20%) scale(0.8);
          -ms-transform: translateY(-20%) scale(0.8);
              transform: translateY(-20%) scale(0.8);
      padding-top: 16px;
      max-width: 400px; }
      .default-modal__content.center .default-modal__close {
        right: 8px;
        top: 3px; }
    .default-modal__content.w-460 {
      max-width: 460px; }
  .default-modal__title {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    text-align: left;
    margin-bottom: 16px;
    padding-right: 20px; }
  .default-modal__title2 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    padding-bottom: 16px;
    padding-right: 50px;
    margin-bottom: 22px;
    position: relative; }
    .default-modal__title2::before {
      position: absolute;
      content: '';
      width: calc(100% + 48px);
      left: -24px;
      bottom: 0;
      background: #D9D9D9;
      height: 1px; }

.modal-form-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px; }

.modal-filters-inputs-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px; }

.modal-filters-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }
  .modal-filters-inputs .input-group-wrp {
    width: 100%; }

.modal-buttons-group {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-top: 5px; }

.modal-buttons-group-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px; }
  .modal-buttons-group-row button {
    width: 100%; }

.modal-add-profile .simple-select {
  max-width: 100%; }

.modal-gray-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  opacity: #a9a9a9;
  margin-bottom: 24px; }

.selected-users-list {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  opacity: #a9a9a9;
  margin-bottom: 24px; }

.modal-buy-subscription {
  text-align: center; }
  .modal-buy-subscription__title {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 12px; }
  .modal-buy-subscription__txt {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 23px; }
  .modal-buy-subscription__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-bottom: 24px; }
    .modal-buy-subscription__btns .btn {
      height: 38px; }
  .modal-buy-subscription__gray {
    color: #a9a9a9;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.5px;
    text-align: center; }
    .modal-buy-subscription__gray a {
      text-decoration: underline;
      -webkit-transition: 0.15s;
      transition: 0.15s; }
      .modal-buy-subscription__gray a:hover {
        color: #1890FF; }

.modal-reels .reelsCard__time {
  bottom: 8px;
  left: 8px; }

.modal-reels .default-modal__content {
  max-width: initial;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-transform: translateY(-20%) scale(0.8);
      -ms-transform: translateY(-20%) scale(0.8);
          transform: translateY(-20%) scale(0.8); }

.modal-reels__close {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.modal-reels__left {
  width: 100%;
  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;
  z-index: 1; }
  .modal-reels__left .reelsCard {
    max-width: 479px;
    border-radius: 10px;
    overflow: hidden; }
    .modal-reels__left .reelsCard__main {
      border-radius: 11px; }

.modal-reels__right {
  max-width: 560px;
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 1;
  overflow-y: auto; }

.modal-reels__buttons {
  padding: 0 24px;
  margin-bottom: 22px; }

.modal-reels__topBlock {
  padding: 24px;
  border-bottom: 1px solid #0000000F;
  margin-bottom: 24px; }

.modal-reels__userName {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #000000D9;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px; }

.modal-reels__mainCounts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 12px; }
  @media (max-width: 991px) {
    .modal-reels__mainCounts {
      display: grid;
      grid-template-columns: 50% 50%;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

.modal-reels__countItem {
  min-width: 89px; }
  .modal-reels__countItem span {
    font-size: 14px;
    font-weight: 400;
    line-height: 17.5px;
    color: #00000073;
    display: block;
    margin-bottom: 2px; }
  .modal-reels__countItem p {
    font-size: 14px;
    font-weight: 400;
    line-height: 17.5px;
    color: #000000D9; }

.modal-reels__mainDescr {
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  color: #000000D9;
  margin-bottom: 24px;
  max-height: 40vh;
  overflow-y: auto; }
  @media (max-width: 767px) {
    .modal-reels__mainDescr {
      max-height: unset; } }

.modal-reels__mainBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px; }
  .modal-reels__mainBtns .btn {
    width: 49%; }

.modal-reels__mainBtn {
  margin-top: 16px; }
  .modal-reels__mainBtn .btn {
    width: 100%; }

.modal-reels__reelsCounts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px; }

.modal-reels__reelsCount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 25%;
  max-width: 116px;
  gap: 6px; }
  .modal-reels__reelsCount svg {
    fill: #BFBFBF; }

.modal-reels .modal-reels-descr-item {
  padding: 24px;
  border-top: 1px solid #0000000F; }
  .modal-reels .modal-reels-descr-item__header {
    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;
    gap: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0; }
    .modal-reels .modal-reels-descr-item__header svg {
      -webkit-transition: 0.15s;
      transition: 0.15s; }
  .modal-reels .modal-reels-descr-item__drop {
    font-weight: 400;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: 0;
    color: #000000D9;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    -webkit-transition: max-height 0.2s ease-out, opacity 0.2s ease-out;
    transition: max-height 0.2s ease-out, opacity 0.2s ease-out; }
    .modal-reels .modal-reels-descr-item__drop p {
      padding: 16px 0; }
  .modal-reels .modal-reels-descr-item.is-active svg {
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg); }

.modal-reels .modal-reels-ai {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px; }
  .modal-reels .modal-reels-ai__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0; }
  .modal-reels .modal-reels-ai__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px; }
  .modal-reels .modal-reels-ai__btn {
    padding: 12px 16px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px; }
    .modal-reels .modal-reels-ai__btn-title {
      font-weight: 400;
      font-size: 14px;
      line-height: 22px;
      letter-spacing: 0; }
    .modal-reels .modal-reels-ai__btn-txt {
      font-weight: 400;
      font-size: 14px;
      line-height: 22px;
      letter-spacing: 0;
      opacity: 0.5; }

@media (max-width: 767px) {
  .modal-reels .default-modal__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .modal-reels .default-modal__close {
    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; }
    .modal-reels .default-modal__close svg {
      width: 40px;
      height: 40px; }
  .modal-reels__left {
    display: none; }
  .modal-reels__right {
    width: 100%;
    max-width: initial;
    position: relative;
    border-radius: 24px 24px 0 0;
    padding-bottom: 32px;
    max-height: 100%;
    overflow-y: auto; } }

.modal-wide-content .default-modal__content.center {
  max-width: 1157px;
  padding: 0;
  max-height: calc(100vh - 75px); }
  .modal-wide-content .default-modal__content.center .default-modal__close {
    display: block; }

.modal-wide-content-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 991px) {
    .modal-wide-content-content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .modal-wide-content-content__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    vertical-align: middle; }
  .modal-wide-content-content__txt {
    font-weight: 400;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: 0; }
  .modal-wide-content-content__left-agree {
    font-size: 14px;
    line-height: 125%;
    color: #00000073; }
    .modal-wide-content-content__left-agree a {
      text-decoration: underline; }
  .modal-wide-content-content__left {
    width: 100%;
    max-width: 357px;
    background: white;
    padding: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    text-align: left; }
    @media (max-width: 991px) {
      .modal-wide-content-content__left {
        max-width: 100%; } }
    .modal-wide-content-content__left-title {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 12px; }
  .modal-wide-content-content__right {
    background: #F0F0F0;
    padding: 32px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px; }
    @media (max-width: 991px) {
      .modal-wide-content-content__right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }

.modal-hystory-operations-list {
  max-height: 60vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  scrollbar-color: #999 #ccc;
  scrollbar-width: thin; }
  .modal-hystory-operations-list::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #ccc; }
  .modal-hystory-operations-list::-webkit-scrollbar-track {
    background-color: #ccc; }
  .modal-hystory-operations-list::-webkit-scrollbar-thumb:vertical {
    background-color: #999; }
  .modal-hystory-operations-list::-webkit-scrollbar-thumb:horizontal {
    background-color: #999; }
  @media (max-width: 767px) {
    .modal-hystory-operations-list {
      max-height: 80vh; } }
  .modal-hystory-operations-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-top: 1px solid #D9D9D9;
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    letter-spacing: 0%; }
    .modal-hystory-operations-list__item-date {
      width: 50%;
      color: #00000080; }
    .modal-hystory-operations-list__item-price {
      width: 50%; }

.favor-popup-wrapper {
  position: relative;
  z-index: 2;
  cursor: pointer; }

.favor-popup {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  background: #fff;
  -webkit-box-shadow: 0px 9px 28px 8px #0000000D;
          box-shadow: 0px 9px 28px 8px #0000000D;
  padding: 16px 12px;
  border-radius: 8px;
  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;
  gap: 12px;
  min-width: 258px; }
  .favor-popup.bottom {
    top: auto;
    bottom: 0; }
  .favor-popup .default-checkbox {
    font-size: 14px;
    line-height: 22px; }
    .favor-popup .default-checkbox__text {
      margin-left: 12px;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
    .favor-popup .default-checkbox__label {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%; }
  .favor-popup.isOpen {
    visibility: visible;
    opacity: 1; }
  .favor-popup.toLeft {
    left: auto;
    right: 0; }
  .favor-popup__popupBtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
  .favor-popup__popupTitle {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: left; }
  .favor-popup__popupList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    max-height: 378px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    scrollbar-color: #999 #ccc;
    scrollbar-width: thin; }
    .favor-popup__popupList::-webkit-scrollbar {
      width: 2px;
      height: 2px;
      background-color: #ccc; }
    .favor-popup__popupList::-webkit-scrollbar-track {
      background-color: #ccc; }
    .favor-popup__popupList::-webkit-scrollbar-thumb:vertical {
      background-color: #999; }
    .favor-popup__popupList::-webkit-scrollbar-thumb:horizontal {
      background-color: #999; }
  .favor-popup__popupListAppend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    height: 22px;
    background: transparent;
    border: none;
    padding: 0;
    color: #00000073;
    -webkit-transition: 0.15s;
    transition: 0.15s; }
    .favor-popup__popupListAppend svg {
      fill: #00000073; }
    @media (hover: hover) {
      .favor-popup__popupListAppend:hover {
        opacity: 0.7; } }

@media (max-width: 575px) {
  .default-modal__title2 {
    text-align: center;
    padding: 0;
    margin: 0  0 32px 0;
    font-size: 24px;
    line-height: 28px; }
    .default-modal__title2:before {
      display: none; }
  .default-modal__content {
    max-width: 100%;
    padding-bottom: 40px;
    padding-top: 40px; }
    .default-modal__content.center {
      margin-top: auto;
      margin-bottom: 0;
      max-width: 100%;
      border-radius: 32px 32px 0 0;
      padding-bottom: 32px;
      padding-top: 40px;
      -webkit-transform: translateY(100%) scale(1);
          -ms-transform: translateY(100%) scale(1);
              transform: translateY(100%) scale(1); }
      .default-modal__content.center .default-modal__close {
        display: none; }
      .default-modal__content.center .input-group input, .default-modal__content.center .input-group textarea {
        min-height: 40px; }
      .default-modal__content.center .btn {
        height: 40px; }
      .default-modal__content.center .inputs-grid__item-link {
        font-size: 16px;
        line-height: 24px; } }

.header {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid #F0F0F0;
  height: 48px; }

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .header-inner__side {
    width: 100%;
    max-width: 200px; }
  .header-inner__name {
    font-family: "Inters", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none; }

@media (max-width: 1199px) {
  .mob-nav-hidden .header {
    display: none; }
  .mob-nav-hidden .service-name-mob {
    display: none; }
  .mob-nav-hidden .wrapper--padding-top {
    padding-bottom: 0; } }

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inters", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none; }
  .header-nav__item {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding: 13px 20px;
    -webkit-transition: 0.15s;
    transition: 0.15s;
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    .header-nav__item svg {
      -webkit-transition: 0.15s;
      transition: 0.15s;
      width: 14px;
      height: 14px;
      display: block;
      fill: #000; }
    .header-nav__item:after {
      position: absolute;
      content: '';
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      border-bottom: 3px solid transparent;
      width: 0;
      height: 100%;
      -webkit-transition: 0.15s;
      transition: 0.15s; }
    @media (hover: hover) {
      .header-nav__item:hover {
        color: #1890FF; }
        .header-nav__item:hover:after {
          border-color: #1890FF;
          width: 100%; }
        .header-nav__item:hover svg {
          fill: #1890FF; }
        .header-nav__item:hover.profile-menu svg path {
          fill: transparent;
          stroke: #1890FF; } }
    .header-nav__item.is-active {
      color: #1890FF; }
      .header-nav__item.is-active:after {
        border-color: #1890FF;
        width: 100%; }
      .header-nav__item.is-active svg {
        fill: #1890FF; }
      .header-nav__item.is-active.profile-menu svg path {
        fill: transparent;
        stroke: #1890FF; }
  .header-nav .profile-menu {
    display: none; }

.user-info {
  text-align: right;
  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;
  gap: 16px; }
  .user-info__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20px;
    height: 20px; }
    .user-info__link svg {
      width: 100%; }
  .user-info__mail {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.5px; }
  .user-info__inner {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .user-info__days {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    opacity: 0.4; }
  .user-info__profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 12px;
    line-height: 125%;
    letter-spacing: 0%; }

@media (max-width: 1199px) {
  .header-inner__side {
    max-width: 170px; }
  .header-nav__item {
    gap: 4px;
    padding: 13px 15px; } }

@media (max-width: 1199px) {
  .header-inner {
    gap: 10px; }
    .header-inner__name {
      font-size: 14px; }
    .header-inner__side {
      max-width: 120px; }
  .user-info__mail {
    font-size: 12px; }
  .user-info__days {
    font-size: 10px; }
  .header-nav {
    font-size: 12px;
    width: 100%;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .header-nav__item {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding: 6px 0 0 0; }
      .header-nav__item:after {
        display: none; }
  .header {
    top: unset;
    bottom: 0;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 10px; }
  .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .header-inner__side {
      display: none; }
  .header-nav {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px; }
    .header-nav .tg {
      display: none; }
    .header-nav .profile-menu {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

@media (max-width: 575px) {
  .header-nav {
    padding: 0 10px; }
    .header-nav svg {
      width: 20px; } }

.main {
  padding: 0  32px 0 32px;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  scrollbar-color: #999 #ccc;
  scrollbar-width: thin;
  position: relative;
  background: #ffffff; }
  .main::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #ccc; }
  .main::-webkit-scrollbar-track {
    background-color: #ccc; }
  .main::-webkit-scrollbar-thumb:vertical {
    background-color: #999; }
  .main::-webkit-scrollbar-thumb:horizontal {
    background-color: #999; }
  .main__top {
    padding-top: 32px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 2; }
  .main--no-bg {
    background: unset;
    padding: 0  32px 0 32px; }

.main-title-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .main-title-wrp svg {
    margin-right: 16px;
    display: block; }

.main-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 29.05px;
  text-align: left;
  letter-spacing: 0.1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .main-title span {
    font-size: 26px; }

.added {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  padding-top: 8px;
  padding-bottom: 16px;
  background: white; }
  .added span {
    opacity: 0.5;
    margin-left: 15px; }

.multiple-actions {
  position: fixed;
  bottom: 0;
  right: 0;
  right: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: white;
  width: calc(100% - 320px);
  -webkit-box-shadow: 0px -4px 16px 0px #0000001A;
          box-shadow: 0px -4px 16px 0px #0000001A;
  padding: 16px 32px;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%); }
  .multiple-actions__count-wrp {
    font-size: 14px;
    line-height: 17px; }
  .multiple-actions__count {
    font-weight: 600;
    margin-bottom: 4px; }
  .multiple-actions__clear {
    font-weight: 400;
    opacity: 0.5; }
  .multiple-actions__btns {
    width: 100%;
    max-width: 520px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px; }
    .multiple-actions__btns button {
      width: 100%; }
  .multiple-actions.is-active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    pointer-events: all; }

.aside {
  background: #ECECEC;
  padding: 32px 24px;
  width: 100%;
  max-width: 320px; }
  .aside__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 29.05px;
    text-align: left;
    margin-bottom: 8px;
    letter-spacing: 1px; }

.nav__item {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: 0.15s;
  transition: 0.15s; }
  .nav__item:hover {
    border-color: #000; }

.nav__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.nav__indicator {
  width: 8px;
  height: 8px;
  background: #ECECEC;
  border-radius: 50%;
  margin-left: 7px; }
  .nav__indicator.is-active {
    background: #60B862; }

.nav__item-dop-info {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-align: left;
  opacity: 0.5;
  margin-top: 5px; }

.search-form {
  position: relative; }
  .search-form input {
    width: 100%;
    padding-right: 32px;
    min-height: 30px;
    padding: 4px 12px; }
  .search-form__btn {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    width: 32px;
    border: none;
    outline: none;
    border-left: 1px solid #D9D9D9;
    background: #ffffff;
    z-index: 1;
    border-radius: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.15s;
    transition: 0.15s;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    .search-form__btn svg {
      display: block;
      width: 16px;
      height: 16px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
    .search-form__btn path {
      -webkit-transition: 0.15s;
      transition: 0.15s; }
    .search-form__btn:hover {
      background: #F0F0F0; }

.filter-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  width: 100%;
  padding: 16px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .filter-block .search-form, .filter-block .btn {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .filter-block__form {
    width: 100%;
    max-width: 513px; }
  .filter-block__add-category {
    margin-left: auto; }

.filter-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.filter-results-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 22px; }
  .filter-results-item .btn__inner {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    padding: 1px 8px; }
    .filter-results-item .btn__inner button {
      border: none;
      outline: none;
      background: none;
      width: 10px;
      height: 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 0;
      margin-left: 3px; }
    .filter-results-item .btn__inner path {
      -webkit-transition: 0.15s;
      transition: 0.15s; }

.table-block {
  padding-top: 7px; }

.table-header {
  padding: 12px 0;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .table-header__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 5px; }

.nothing-found {
  text-align: center;
  padding: 32px;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  margin: auto; }
  .nothing-found__title {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    text-align: center; }
  .nothing-found__txt {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #a9a9a9; }

.reelsSection {
  width: 100%;
  padding-top: 24px;
  background: #F0F0F0; }
  .reelsSection__wp {
    display: grid;
    grid-template-columns: repeat(6, calc(16.6% - 6px));
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px 8px;
    padding-bottom: 100px;
    margin: 0 auto;
    overflow: hidden; }
    @media (max-width: 1800px) {
      .reelsSection__wp {
        grid-template-columns: repeat(5, calc(20% - 6px)); } }
    @media (max-width: 1400px) {
      .reelsSection__wp {
        grid-template-columns: repeat(4, calc(25% - 6px)); } }
    @media (max-width: 1000px) {
      .reelsSection__wp {
        grid-template-columns: repeat(3, calc(33.3% - 6px)); } }
    @media (max-width: 767px) {
      .reelsSection__wp {
        grid-template-columns: repeat(2, calc(50% - 6px)); } }
    @media (max-width: 575px) {
      .reelsSection__wp {
        grid-template-columns: repeat(1, 1fr); } }
    .reelsSection__wp .reelsCard {
      max-width: 100%; }

.found-results {
  padding: 16px 0;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px; }
  .found-results__results {
    color: #1890FF; }
  .found-results__found--mob {
    display: none; }

@media (max-width: 767px) {
  .found-results__found--mob {
    display: block;
    font-size: 24px;
    line-height: 32px; } }

.filters-section-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 11;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .filters-section-inner > div {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .filters-section-inner > .btn {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .filters-section-inner__select {
    margin-left: auto;
    max-width: 321px; }
  .filters-section-inner__search {
    width: 100%;
    max-width: 513px;
    position: relative;
    z-index: 2; }
  .filters-section-inner .btn {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .filters-section-inner__bottom-select {
    width: 100%; }
    .filters-section-inner__bottom-select .simple-select__item {
      padding-left: 36px;
      position: relative; }
      .filters-section-inner__bottom-select .simple-select__item::before {
        position: absolute;
        content: '';
        left: 12px;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 16px;
        height: 16px;
        border-radius: 2px;
        border: 1px solid #D9D9D9; }
      .filters-section-inner__bottom-select .simple-select__item::after {
        position: absolute;
        content: '';
        left: 12px;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 16px;
        height: 16px;
        border-radius: 2px;
        border: 1px solid #1890FF;
        background: url(../img/icons/check.svg) no-repeat center, #1890FF;
        background-size: contain;
        background-position: center;
        opacity: 0;
        -webkit-transition: 0.15s;
        transition: 0.15s; }
      .filters-section-inner__bottom-select .simple-select__item.is-active::after {
        opacity: 1; }
    .filters-section-inner__bottom-select .simple-select {
      background: transparent;
      width: auto;
      height: 24px; }
      .filters-section-inner__bottom-select .simple-select__main {
        border-color: transparent;
        padding: 0; }
        .filters-section-inner__bottom-select .simple-select__main svg {
          margin-left: 6px; }
      .filters-section-inner__bottom-select .simple-select__drop {
        width: 320px; }
      .filters-section-inner__bottom-select .simple-select__selected {
        text-overflow: unset;
        width: auto; }

.filters-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px; }

@media (max-width: 1440px) {
  .filters-section-inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
    display: grid; }
    .filters-section-inner__search {
      grid-column: 1 / -1;
      max-width: 100%; }
    .filters-section-inner button.btn {
      grid-column: span 1; }
    .filters-section-inner .filters-section-inner__select {
      grid-column: span 2;
      max-width: 100%; } }

@media (max-width: 767px) {
  .search-form .simple-select {
    right: 33px;
    max-width: 40px; }
    .search-form .simple-select .simple-select__main svg {
      display: none; }
    .search-form .simple-select .simple-select__drop {
      left: auto;
      right: -40px;
      max-width: 315px; }
    .search-form .simple-select::after {
      position: absolute;
      content: '';
      width: 18px;
      height: 18px;
      right: 12px;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      background: url(../img/icons/settings.svg);
      background-size: contain;
      background-position: center;
      pointer-events: none; }
    .search-form .simple-select__selected {
      display: none; }
  .filters-section-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .filters-section-inner button.btn {
      width: calc(50% - 4px); }
    .filters-section-inner .filters-section-inner__select {
      grid-column: 1 / -1;
      max-width: 100%; } }

.profile {
  padding: 24px 0; }
  .profile .default-toggle__label {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .profile__title {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
    margin-bottom: 24px; }
    .profile__title a {
      color: #a9a9a9;
      -webkit-transition: 0.15s;
      transition: 0.15s;
      font-size: 14px;
      line-height: 22px; }
      .profile__title a:hover {
        color: #1890FF; }

.profile-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #D9D9D9;
  width: 100%;
  margin-bottom: 24px; }
  .profile-tabs__item {
    padding: 13px 20px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0; }
    .profile-tabs__item.is-active {
      color: #1890FF;
      border-bottom: 3px solid #1890FF;
      padding: 13px 20px; }

.profile-tabs-content {
  display: none; }
  .profile-tabs-content.is-active {
    display: block; }

.tarifs-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  max-width: 683px;
  width: 100%;
  margin: 0 auto; }
  @media (max-width: 991px) {
    .tarifs-grid {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .tarifs-grid .tarifs-card {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }

.tarifs-grid-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px; }
  @media (max-width: 991px) {
    .tarifs-grid-wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .tarifs-grid-wrapper .tarifs-grid {
        max-width: 100%; } }
  .tarifs-grid-wrapper__ofert {
    width: 100%;
    text-align: center;
    color: #00000073; }
    .tarifs-grid-wrapper__ofert a {
      text-decoration: underline; }
  .tarifs-grid-wrapper__left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px; }

.actiive-tarif {
  padding: 32px;
  background: white;
  border: 1px solid #0000001A;
  border-radius: 8px;
  width: 100%; }
  .actiive-tarif__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 12px;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    margin-bottom: 12px; }
    .actiive-tarif__title-indicator {
      display: block;
      width: 16px;
      height: 16px;
      background: #1AC435;
      border-radius: 50%;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
  .actiive-tarif__descr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    letter-spacing: 0;
    vertical-align: middle;
    margin-bottom: 16px;
    width: 100%;
    max-width: 234px; }
    .actiive-tarif__descr-val {
      color: #000; }
    .actiive-tarif__descr-txt {
      color: #00000080;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 12px;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }

.profile-grid {
  gap: 16px;
  width: 100%;
  display: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .profile-grid__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    width: 100%;
    overflow: hidden; }

.profile-item-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.9px;
  color: #a9a9a9; }
  .profile-item-details__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px; }
  .profile-item-details__item-value {
    color: #000; }

.payments-history {
  width: 100%; }
  .payments-history__title {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 16px; }
  .payments-history__item {
    border-top: 1px solid #D9D9D9;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    color: #a9a9a9;
    padding: 8px 0; }
    .payments-history__item span {
      color: #000; }

.profile-item {
  background: #ffffff;
  border-radius: 8px;
  font-family: "Roboto", sans-serif; }
  .profile-item__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
  .profile-item__inner-block {
    padding: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .profile-item__inner-block.border-top {
      border-top: 1px solid #D9D9D9; }
  .profile-item__title-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px; }
  .profile-item__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px; }
    .profile-item__title.is-active {
      padding-left: 28px;
      position: relative; }
      .profile-item__title.is-active:before {
        position: absolute;
        content: '';
        width: 16px;
        height: 16px;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        border-radius: 50%;
        background: #60B862; }
  .profile-item__txt {
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
    color: #00000073; }

@media (max-width: 991px) {
  .profile-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .profile-grid .btn {
      -ms-flex-negative: 0;
          flex-shrink: 0; }
  .profile-item__btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .profile-item__inner-block {
    padding: 24px 15px; } }

.profileInfo__back {
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.profileInfo__backLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #00000073;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  height: 22px; }
  .profileInfo__backLink svg {
    fill: #00000073;
    -webkit-transition: 0.15s;
    transition: 0.15s; }
  @media (hover: hover) {
    .profileInfo__backLink:hover svg {
      -webkit-transform: translateX(-4px);
          -ms-transform: translateX(-4px);
              transform: translateX(-4px); } }

.profileInfo__info {
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px; }

.profileInfo__infoLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px; }

.profileInfo__infoRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px; }

.profileInfo .modal-reels__userName {
  margin-bottom: 0; }

.profileInfo .modal-reels__mainDescr {
  margin-bottom: 0; }

.profileInfo .modal-reels__mainCounts {
  margin-bottom: 0; }

.profileInfo .modal-reels__countItem {
  min-width: initial; }
  .profileInfo .modal-reels__countItem span, .profileInfo .modal-reels__countItem p {
    white-space: nowrap; }

@media (max-width: 1199px) {
  .profileInfo__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
  .profileInfo__infoRight {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

@media (max-width: 575px) {
  .profileInfo {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    background: #fff; }
    .profileInfo__infoRight {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 16px; }
      .profileInfo__infoRight .btn {
        width: 100%; }
    .profileInfo__info {
      border: none;
      border-radius: 0;
      padding-top: 0;
      padding-left: 0;
      padding-right: 0; }
    .profileInfo .modal-reels__userName {
      font-size: 24px;
      line-height: 32px; }
    .profileInfo .modal-reels__mainCounts {
      width: 100%;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      gap: 16px; }
    .profileInfo .modal-reels__countItem {
      min-width: 109px; } }

.mobile-accord {
  width: 100%;
  position: relative;
  height: calc(100vh - 48px);
  overflow-x: hidden; }
  .mobile-accord__title {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    text-align: left;
    padding: 24px 16px; }
  .mobile-accord__side {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100vh - 48px);
    background: #ffffff;
    z-index: 11;
    -webkit-transition: 0.15s;
    transition: 0.15s;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
    visibility: hidden; }
    .mobile-accord__side-back {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 8px;
      font-size: 14px;
      line-height: 22px;
      color: #a9a9a9;
      margin-bottom: 16px; }
    .mobile-accord__side-title {
      font-size: 24px;
      line-height: 32px;
      font-weight: 500; }
  .mobile-accord__side-title-wrp {
    padding: 24px 16px;
    background: #F0F0F0; }
  .mobile-accord.is-active .mobile-accord__side {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }

.mobile-accord-item {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-bottom: 1px solid #F0F0F0;
  background: #ffffff;
  width: 100%; }
  .mobile-accord-item__count {
    color: #a9a9a9;
    margin-left: auto; }
  .mobile-accord-item__arrow {
    width: 10px;
    height: 9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg); }

@media (max-width: 767px) {
  .mobile-accord {
    height: calc(100vh - 70px); }
    .mobile-accord__side {
      height: calc(100vh - 70px); } }

@media (max-width: 767px) {
  .cp-wrp {
    height: 100%;
    overflow: hidden; } }

.chatpage {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: calc(100dvh - 48px);
  position: relative; }
  @media (max-width: 767px) {
    .chatpage {
      max-height: unset;
      overflow: hidden;
      height: 100%; } }
  .chatpage.limitReached .chatpage__chatList {
    padding-bottom: 88px; }
    .chatpage.limitReached .chatpage__chatList::before {
      height: 106px;
      bottom: 18px; }
  .chatpage.limitReached .chatpage__chatLimitWindow {
    visibility: visible;
    opacity: 1; }
  .chatpage.limitReached .chatpage__chatFieldWp {
    visibility: hidden;
    opacity: 0; }
  .chatpage__tokens {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border: 1px solid #0000001A;
    background: white;
    border-radius: 12px;
    z-index: 1000;
    width: calc(100% - 32px);
    position: absolute;
    bottom: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: none; }
    .chatpage__tokens.is-active {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    @media (max-width: 767px) {
      .chatpage__tokens {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; }
        .chatpage__tokens svg {
          -webkit-box-ordinal-group: 3;
              -ms-flex-order: 2;
                  order: 2; }
        .chatpage__tokens p {
          width: calc(100% - 40px); }
        .chatpage__tokens button {
          -webkit-box-ordinal-group: 4;
              -ms-flex-order: 3;
                  order: 3;
          width: 100%; } }
    .chatpage__tokens svg {
      -ms-flex-negative: 0;
          flex-shrink: 0; }
    .chatpage__tokens button {
      margin-left: auto;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
  .chatpage__wp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    @media (max-width: 991px) {
      .chatpage__wp {
        height: 100%;
        overflow: hidden; } }
    @media (max-width: 991px) {
      .chatpage__wp.folders-chats-wp {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .chatpage__folders {
    width: 270px;
    background: #fff;
    border-right: 1px solid #0000001A;
    position: relative; }
  .chatpage__chat {
    width: calc(100% - 270px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .chatpage__chatEmpty {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (max-width: 991px) {
      .chatpage__chatEmpty {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .chatpage__chatEmptyWp {
    position: relative;
    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; }
  .chatpage__chatEmptyReels {
    position: relative; }
    .chatpage__chatEmptyReels .reelsCard {
      max-width: 180px;
      width: 180px; }
      .chatpage__chatEmptyReels .reelsCard .reelsCard__main {
        padding-top: 132%; }
      .chatpage__chatEmptyReels .reelsCard__subscrs {
        font-size: 9px; }
      .chatpage__chatEmptyReels .reelsCard__bottomEl {
        font-size: 9px; }
      .chatpage__chatEmptyReels .reelsCard__descr {
        font-size: 9px;
        line-height: 14px; }
      .chatpage__chatEmptyReels .reelsCard__footer {
        min-height: 64px; }
  .chatpage__chatEmptyReelsRetry {
    position: absolute;
    top: -16px;
    right: -45px;
    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;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: none; }
    .chatpage__chatEmptyReelsRetry svg {
      -webkit-transition: 0.2s;
      transition: 0.2s; }
    @media (hover: hover) {
      .chatpage__chatEmptyReelsRetry:hover svg {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); } }
  .chatpage__chatEmptyReelsBlock {
    margin-top: 40px;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px; }
    @media (max-width: 767px) {
      .chatpage__chatEmptyReelsBlock {
        margin-top: 10px;
        gap: 5px; } }
    .chatpage__chatEmptyReelsBlock h3 {
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      font-size: 20px;
      line-height: 22px;
      text-align: center; }
      @media (max-width: 767px) {
        .chatpage__chatEmptyReelsBlock h3 {
          font-size: 14px;
          line-height: 16px; } }
    .chatpage__chatEmptyReelsBlock p {
      max-width: 460px;
      text-align: center;
      color: #00000073;
      font-family: "Roboto", sans-serif;
      font-size: 14px;
      line-height: 22px; }
      @media (max-width: 767px) {
        .chatpage__chatEmptyReelsBlock p {
          font-size: 10px;
          line-height: 12px; } }
    .chatpage__chatEmptyReelsBlock div {
      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;
      gap: 8px; }
  .chatpage__chatMain {
    width: 100%;
    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) {
      .chatpage__chatMain {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100); } }
  .chatpage__chatHeader {
    height: 61px;
    border-bottom: 1px solid #0000001A;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 5px 11px; }
  .chatpage__chatHeaderLeft {
    line-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px; }
    .chatpage__chatHeaderLeft-link {
      display: none; }
      @media (max-width: 991px) {
        .chatpage__chatHeaderLeft-link {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; } }
    .chatpage__chatHeaderLeft p {
      color: #000;
      font-family: "Roboto", sans-serif;
      font-weight: 500;
      font-size: 14px;
      line-height: 22px; }
    .chatpage__chatHeaderLeft span {
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 125%;
      color: #00000073; }
  .chatpage__chatHeaderRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px; }
  .chatpage__chatHeaderBtn {
    position: relative;
    line-height: 0; }
    .chatpage__chatHeaderBtn .is-active svg path {
      fill: #a6a6a6; }
    .chatpage__chatHeaderBtn > button {
      border: none;
      padding: 0;
      background: transparent;
      -webkit-transition: 0.2s;
      transition: 0.2s;
      height: 20px;
      width: 20px; }
      @media (hover: hover) {
        .chatpage__chatHeaderBtn > button:hover {
          opacity: 0.7; } }
      .chatpage__chatHeaderBtn > button:disabled svg path {
        fill: #8c8c8c; }
    .chatpage__chatHeaderBtn.is-open button svg path {
      stroke: #1990FE; }
    .chatpage__chatHeaderBtn.is-open .chatpage__chatHeaderBtnBody {
      display: block; }
  .chatpage__chatHeaderBtnDpd svg path {
    stroke: #a6a6a6; }
  .chatpage__chatHeaderBtnBody {
    position: absolute;
    top: 28px;
    right: 0;
    height: 104px;
    background: #fff;
    border-radius: 8px;
    padding-top: 4px;
    -webkit-box-shadow: 0px 9px 28px 8px #0000000D;
            box-shadow: 0px 9px 28px 8px #0000000D;
    width: 164px;
    z-index: 2;
    display: none; }
  .chatpage__chatList {
    height: calc(100% - 61px);
    max-height: calc(100% - 61px);
    padding: 16px 16px 110px 16px;
    position: relative; }
    @media (max-width: 991px) {
      .chatpage__chatList {
        height: calc(100% - 61px);
        max-height: unset;
        padding-bottom: 20px;
        overflow: hidden;
        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-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        position: fixed;
        bottom: 0; } }
    .chatpage__chatList::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 128px;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 240, 240, 0)), color-stop(16.35%, #F0F0F0), to(#F0F0F0));
      background: linear-gradient(180deg, rgba(240, 240, 240, 0) 0%, #F0F0F0 16.35%, #F0F0F0 100%);
      z-index: 1; }
      @media (max-width: 767px) {
        .chatpage__chatList::before {
          bottom: -15px; } }
  .chatpage__chatFieldWp {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 12px 16px;
    z-index: 2;
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(100% - 32px); }
    @media (max-width: 991px) {
      .chatpage__chatFieldWp {
        position: static;
        max-height: calc(100dvh - 300px);
        width: 100%;
        -ms-flex-negative: 0;
            flex-shrink: 0; } }
  .chatpage__chatInputWp {
    position: relative; }
    .chatpage__chatInputWp input, .chatpage__chatInputWp textarea {
      width: calc(100% - 44px);
      background: transparent;
      border: none;
      font-family: "Inters", sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 125%;
      max-height: 200px;
      overflow-y: auto;
      height: 40px; }
      @media (max-width: 767px) {
        .chatpage__chatInputWp input, .chatpage__chatInputWp textarea {
          width: calc(100% - 40px); } }
    .chatpage__chatInputWp button {
      border-radius: 12px;
      width: 40px;
      height: 40px;
      background: #1890FF;
      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;
      border: none;
      -webkit-box-shadow: 0px 2px 0px 0px #0000000B;
              box-shadow: 0px 2px 0px 0px #0000000B;
      position: absolute;
      top: 0;
      right: 16px;
      -webkit-transition: 0.2s;
      transition: 0.2s; }
      @media (max-width: 767px) {
        .chatpage__chatInputWp button {
          right: 0px;
          top: 0px; } }
      @media (hover: hover) {
        .chatpage__chatInputWp button:hover {
          opacity: 0.7; } }
  .chatpage__chatFieldBtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px; }
  .chatpage__chatFieldBtn {
    height: 24px;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    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;
    padding: 0 8px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #000000D9;
    background: #fff;
    -webkit-transition: 0.2s;
    transition: 0.2s; }
    .chatpage__chatFieldBtn:disabled {
      color: #939393; }
    @media (hover: hover) {
      .chatpage__chatFieldBtn:hover {
        opacity: 0.7; } }
  .chatpage__reel {
    width: 80px;
    height: 142px;
    border-radius: 6px;
    position: relative;
    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;
    padding: 9px 8px;
    overflow: hidden;
    cursor: pointer; }
    .chatpage__reel img {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      bottom: 0;
      -o-object-fit: cover;
         object-fit: cover; }
    .chatpage__reel svg {
      position: relative;
      z-index: 1;
      -webkit-transition: 0.2s;
      transition: 0.2s; }
    @media (hover: hover) {
      .chatpage__reel:hover svg {
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1); } }
    .chatpage__reel_big {
      width: 160px;
      height: 285px;
      min-height: 285px; }
  .chatpage__reelTime {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 125%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 19px;
    padding: 1px 6px;
    position: absolute;
    bottom: 9px;
    left: 8px;
    z-index: 1;
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
    border-radius: 4px; }
  .chatpage__chatListWp {
    max-height: calc(100dvh - 235px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow-y: auto;
    scrollbar-width: none;
    padding-bottom: 20px; }
    @media (max-width: 767px) {
      .chatpage__chatListWp {
        height: calc(100dvh - 61px);
        padding-bottom: 0px;
        max-height: unset; } }
  .chatpage__chatMessageWp {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: calc(100% - 244px); }
    .chatpage__chatMessageWp + .chatpage__chatMessageWp {
      margin-top: 16px; }
    .chatpage__chatMessageWp.me {
      margin-left: auto; }
      .chatpage__chatMessageWp.me + .me {
        margin-top: 8px; }
  .chatpage__chatMessage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 16px 16px 8px 16px;
    gap: 4px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #0000001A; }
  .chatpage__chatMessageText {
    color: #222222;
    font-family: "Inters", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 135%; }
  .chatpage__chatMessageTime {
    color: #909090;
    margin-left: auto;
    text-align: right;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 135%; }
  .chatpage__chatMessageBtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 16px;
    gap: 8px; }
  .chatpage__chatToDown {
      z-index: 100;
    width: 40px;
    height: 40px;
    -webkit-box-shadow: -4px 4px 24px 0px #0000001A;
            box-shadow: -4px 4px 24px 0px #0000001A;
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    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;
    background: #FFFFFF;
    position: absolute;
    bottom: 124px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    opacity: 0;
    visibility: hidden; }
    @media (max-width: 767px) {
      .chatpage__chatToDown {
        bottom: 90px; } }
    .chatpage__chatToDown.visible {
      opacity: 1;
      visibility: visible; }
    @media (hover: hover) {
      .chatpage__chatToDown:hover svg {
        opacity: 0.5; } }
  .chatpage__chatLimitWindow {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    background: #fff;
    border-radius: 16px;
    padding: 12px 16px;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 12px;
    opacity: 0;
    visibility: hidden; }
    @media (max-width: 767px) {
      .chatpage__chatLimitWindow {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        .chatpage__chatLimitWindow .chatpage__chatLimitWindowRight .btn {
          width: 100%; } }
  .chatpage__chatLimitWindowLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    max-width: 700px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    letter-spacing: 0px; }
    .chatpage__chatLimitWindowLeft svg {
      min-width: 24px; }
  .chatpage__chatLimitWindowRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .chatpage__chatLimitWindowRight button {
      padding-left: 30px;
      padding-right: 30px; }
  .chatpage__chatSidebarWrap {
    display: none;
    height: calc(100dvh - 40px);
    max-height: calc(100dvh - 48px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .chatpage__chatSidebarWrap.is-open {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
  .chatpage__chatSidebar {
    width: 270px;
    background: #fff;
    border-left: 1px solid #0000001A;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    padding: 24px 16px;
    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;
    max-height: calc(100dvh - 48px);
    height: 100%;
    z-index: 3; }
    @media (max-width: 991px) {
      .chatpage__chatSidebar {
        padding: 0; } }
  .chatpage__chatSidebarOverlay {
    background: #00000062;
    display: none;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%; }
  .chatpage__chatSidebarWp {
    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;
    overflow-y: auto;
    width: 100%;
    scrollbar-width: none; }
    @media (max-width: 991px) {
      .chatpage__chatSidebarWp {
        padding: 24px 16px; } }
  .chatpage__chatSidebarClose {
    position: absolute;
    right: 0;
    top: 0;
    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;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer; }
  .chatpage__chatSidebarMain {
    margin-top: 8px;
    width: 100%; }
  .chatpage__chatSidebarBlock {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #0000001A;
    width: 100%; }
    .chatpage__chatSidebarBlock.is-active .chatpage__chatSidebarBodyDpd {
      display: block; }
    .chatpage__chatSidebarBlock.is-active .chatpage__chatSidebarTitleDpd svg {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
  .chatpage__chatSidebarTitle {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 125%;
    color: #000000D9; }
  .chatpage__chatSidebarList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    margin-top: 12px; }
  .chatpage__chatSidebarListEl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .chatpage__chatSidebarListEl p, .chatpage__chatSidebarListEl span {
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 125%;
      color: #00000073; }
    .chatpage__chatSidebarListEl span {
      color: #000000D9; }
  .chatpage__chatSidebarBodyDpd {
    margin-top: 12px;
    display: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: 0; }
  .chatpage__chatSidebarTitleDpd {
    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;
    cursor: pointer; }
    .chatpage__chatSidebarTitleDpd svg {
      -webkit-transition: 0.2s;
      transition: 0.2s; }
  .chatpage__chatSidebarBtn {
    padding-top: 12px;
    width: 100%;
    margin-top: auto;
    position: relative; }
    .chatpage__chatSidebarBtn.mobile {
      display: none; }
    @media (max-width: 767px) {
      .chatpage__chatSidebarBtn.mobile {
        display: block; }
      .chatpage__chatSidebarBtn.desktop {
        display: none; } }
    .chatpage__chatSidebarBtn .btn {
      width: 100%;
      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;
      gap: 10px; }
    .chatpage__chatSidebarBtn.is-open .chatpage__chatSidebarBtnBody {
      display: block; }
  .chatpage__chatSidebarBtnBody {
    position: absolute;
    bottom: 44px;
    left: 0;
    width: 100%;
    height: 168px;
    background: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0px 9px 28px 8px #0000000D;
            box-shadow: 0px 9px 28px 8px #0000000D;
    padding-top: 4px;
    display: none; }
  @media (max-width: 991px) {
    .chatpage__chatMessageWp {
      max-width: 80%;
      padding-bottom: 26px; }
    .chatpage__folders {
      display: none; }
    .chatpage .chatpages .chatpage__folders {
      display: block;
      max-width: 100%;
      width: 100%; }
    .chatpage .chatpages .chatpage__chat {
      display: none; }
    .chatpage__chat {
      width: 100%; }
    .chatpage__chatSidebar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      max-height: calc(100dvh - 1px);
      width: 100%;
      z-index: 1000;
      border-radius: 24px 24px 0 0; }
    .chatpage__chatSidebarClose {
      top: 8px;
      right: 8px; }
    .chatpage__chatSidebarOverlay {
      display: block; } }

.folders-chats {
  width: 270px;
  background: #fff;
  border-right: 1px solid #0000001A;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.15s;
  transition: 0.15s; }
  @media (max-width: 991px) {
    .folders-chats {
      margin-bottom: 40px;
      width: 100%;
      -webkit-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
              transform: translateX(-100%);
      opacity: 0;
      visibility: hidden;
      position: fixed;
      inset: 0;
      z-index: 1000;
      min-height: 100vh;
      min-height: calc(var(--vh, 1vh) * 100); }
      .folders-chats.is-active {
        opacity: 1;
        visibility: visible;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none; } }
  .folders-chats__mobile-header {
    display: none;
    background: #F0F0F0;
    padding: 16px;
    gap: 12px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500; }
    @media (max-width: 991px) {
      .folders-chats__mobile-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }

.chatpage-folders {
  padding: 12px 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0%;
  vertical-align: middle;
  border-bottom: 1px solid #0000001A; }
  .chatpage-folders__header {
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #00000073; }

.folder-inner-links {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.15s;
  transition: 0.15s; }
  .folder-inner-links.is-active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }
  .folder-inner-links__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    color: #00000073;
    padding: 8px; }
  .folder-inner-links__txt {
    width: 100%;
    font-size: 14px;
    line-height: 22px; }

.mobile-folders-chats-button {
  display: none;
  padding: 12px 16px; }
  @media (max-width: 991px) {
    .mobile-folders-chats-button {
      display: block;
      width: 100%;
      background: #999 #ccc;
      margin-bottom: 20px;
      margin-top: 0px;
      padding-bottom: 0; } }

.folder-item {
  padding: 10px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px; }
  .folder-item svg {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .folder-item.is-active {
    color: #1890FF;
    background: #F3F9FF; }
    .folder-item.is-active .folder-item__icon svg {
      opacity: 1; }
  .folder-item:hover {
    color: #1890FF;
    background: #F3F9FF; }
    .folder-item:hover .folder-item__icon svg {
      opacity: 1; }
  .folder-item__icon {
    margin-left: auto;
    cursor: pointer;
    position: relative; }
  .folder-item.all {
    color: #00000073; }

.drop-context {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .drop-context.is-open .drop-context__drop {
    display: block; }
  .drop-context__drop {
    -webkit-box-shadow: 0px 9px 28px 8px #0000000D;
            box-shadow: 0px 9px 28px 8px #0000000D;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    background: #ffffff;
    width: 130px;
    position: absolute;
    left: 0px;
    top: calc(100% + 21px);
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    display: none; }
    .drop-context__drop.long {
      width: 160px; }
    .drop-context__drop p {
        color: #000;
      padding: 5px 12px; }
    .drop-context__drop p:hover {
        color: #1890FF; }
      .drop-context__drop p.dell {
        color: #FF4D4F; }

.chatpage-chats {
  padding: 12px 8px; }
  .chatpage-chats__header {
    padding: 8px;
    color: #00000073; }
  .chatpage-chats__item {
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer; }
    .chatpage-chats__item a {
      width: 100%; }
    .chatpage-chats__item:hover {
      color: #1890FF;
      background: #F3F9FF; }
      .chatpage-chats__item:hover svg {
        opacity: 1; }
    .chatpage-chats__item.is-active {
      color: #1890FF;
      background: #F3F9FF; }
      .chatpage-chats__item.is-active svg {
        opacity: 1; }

.tokens-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
  background: white;
  padding: 32px 24px;
  border-radius: 8px; }
  .tokens-block__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%; }
  .tokens-block__input-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px; }
    .tokens-block__input-wrapper input {
      padding: 13px 12px;
      border: 1px solid #0000001A;
      border-radius: 8px; }

.tokens-block-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px; }
  .tokens-block-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    border: 1px solid #0000001A;
    border-radius: 8px; }
    .tokens-block-list__item.own {
      color: #1890FF;
      background: #1890FF1A;
      border-color: #1890FF; }
  .tokens-block-list__price {
    font-weight: 400; }

/*# sourceMappingURL=styles.min.css.map */
