/* Усиливаем селектор, т.к. Drawer является миксом для Popup
   из-за этого стили могут приезжать не в правильном порядке */
.Drawer[class] {
    position: fixed;
    top: 0;
    left: 0;

    display: none;
    overflow: hidden;

    width: 100%;
    height: 100%;
}

.Drawer.Drawer_visible {
    display: block;
}

.Drawer-DragObserver {
    display: flex;

    height: inherit;
}

.Drawer-Curtain {
    position: relative;

    display: flex;
    flex-direction: column;

    max-height: 100%;
    will-change: transform;
}

.Drawer-Content {
    position: relative;

    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.Drawer-Overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    touch-action: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    will-change: opacity;
}

.Popup2 {
    position: absolute;
    z-index: 1400;
}

.Popup2[data-popper-reference-hidden],
.Popup2[data-popper-escaped] {
    visibility: hidden !important;

    margin: -9999px 0 0 -9999px !important;

    pointer-events: none !important;
}

.Popup2-Tail {
    width: 24px;
    height: 24px;

    /* Отключаем взаимодействие, т.к. хвостик может накладываться на якорь */
    pointer-events: none;
}

.Popup2-TailSvg {
    display: block;
}

.Popup2[data-popper-placement^='top'] .Popup2-Tail {
    top: 100%;

    transform: rotate(180deg);
}

.Popup2[data-popper-placement^='left'] .Popup2-Tail {
    left: 100%;

    transform: rotate(90deg);
}

.Popup2[data-popper-placement^='bottom'] .Popup2-Tail {
    bottom: 100%;
}

.Popup2[data-popper-placement^='right'] .Popup2-Tail {
    right: 100%;

    transform: rotate(-90deg);
}

/**
 * Базовые визуальные стили
 */
.Drawer_view_default .Drawer-Content,
.Drawer_view_default .Drawer-Title {
    background: #fff;
}

.Drawer_view_default .Drawer-Overlay {
    background: rgba(0, 0, 0, 0.4);
}

/**
 * Стили для direction_bottom
 */
.Drawer_direction_bottom .Drawer-DragObserver {
    flex-direction: column;
    justify-content: flex-end;
}

.Drawer_direction_bottom.Drawer_view_default .Drawer-Curtain {
    max-height: calc(100% - 32px);
}

.Drawer_direction_bottom.Drawer_view_default .Drawer-Content,
.Drawer_direction_bottom.Drawer_view_default .Drawer-Title {
    border-radius: 16px 16px 0 0;
}

/* когда в шторке есть заголовок, то скругляем углы только у него */
.Drawer_direction_bottom.Drawer_view_default .Drawer-Title + .Drawer-Content {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.Drawer_direction_bottom.Drawer_view_default .Drawer-Handle {
    position: absolute;
    top: -19px;
    left: 50%;

    width: 40px;
    margin-left: -36px;
    padding: 8px 16px;
    will-change: opacity;
}

.Drawer_direction_bottom.Drawer_view_default .Drawer-Handle::before {
    display: block;

    height: 3px;

    content: '';

    border-radius: 100px;
    background: #fff;
}

.Drawer_direction_bottom.Drawer_view_default.Drawer_nested .Drawer-Handle {
    z-index: 1;
    top: 0;
}

.Drawer_direction_bottom.Drawer_view_default.Drawer_nested .Drawer-Handle::before {
    background: rgba(0, 0, 0, 0.1);
}

@charset "UTF-8";
/* code colors */
/* icon logo */
/* social */
@keyframes fadeIn {
  from {
    opacity: 0; } }

@keyframes fadeOut {
  to {
    opacity: 0; } }

@keyframes rotation {
  to {
    transform: rotate(360deg); } }

.fade-enter, .fade-appear {
  opacity: 0.01; }

.fade-enter-active, .fade-enter-done, .fade-appear-active, .fade-appear-done {
  transition: all var(--fadeAnimationDelay, 250ms) ease-out;
  opacity: 1; }

.fade-exit {
  opacity: 1; }

.fade-exit-active {
  transition: all var(--fadeAnimationDelay, 250ms) ease-out;
  opacity: 0.01; }

.scale-fade-enter {
  transform: scale(0.01);
  opacity: 0; }

.scale-fade-enter-active {
  transition-timing-function: ease-out;
  transition-duration: 250ms;
  transition-property: opacity, transform;
  transform: scale(1);
  opacity: 1; }

.scale-fade-exit {
  transform: scale(1);
  opacity: 1; }

.scale-fade-exit-active {
  transition-timing-function: ease-out;
  transition-duration: 250ms;
  transition-property: opacity, transform;
  transform: scale(0.01);
  opacity: 0; }

.fade-slide-up-enter {
  transform: translateY(15%);
  opacity: 0.01; }

.fade-slide-up-enter-active {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transform: none;
  opacity: 1; }

.fade-slide-up-exit {
  transform: none;
  opacity: 1; }

.fade-slide-up-exit-active {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transform: translateY(15%);
  opacity: 0.01; }

.slide-right-enter, .slide-right-exit-active {
  transform: translateX(-100%); }

.slide-left-enter, .slide-left-exit-active {
  transform: translateX(100%); }

.slide-right-enter, .slide-right-exit, .slide-right-enter-active, .slide-right-exit-active,
.slide-left-enter,
.slide-left-exit,
.slide-left-enter-active,
.slide-left-exit-active {
  will-change: transform; }

.slide-right-enter-active,
.slide-left-enter-active {
  transition: transform 0.65s cubic-bezier(0.2, 1, 0.3, 1);
  transition-delay: 0.1s;
  transform: translateX(0); }

.slide-right-exit,
.slide-left-exit {
  transform: translateX(0); }

@keyframes shake {
  12.5% {
    transform: translateX(12px); }
  25% {
    transform: translateX(0); }
  37.5% {
    transform: translateX(-5px); }
  50% {
    transform: translateX(0); }
  62.5% {
    transform: translateX(3px); }
  75% {
    transform: translateX(0); }
  87.5% {
    transform: translateX(-2px); }
  100% {
    transform: translateX(0); } }

/**
 * Ширина блока по сетке
 */
/**
 * Устанавливает отступ по сетке
 */
/**
 * Выравнивает блок по сетке
 */
/**
 * Устанавливает грид-контейнер и его ширину
 */
@keyframes placeholder-animation {
  0% {
    background-position: 0 50%; }
  65% {
    background-position: 0 50%; }
  100% {
    background-position: 1400px 50%; } }

/**
 * Layout
 */
/**
 * Helpers
 */
.placeholder {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%; }
  .placeholder__line {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    animation: placeholder-animation 3s infinite linear;
    background-color: var(--color-background-alternate);
    background-image: linear-gradient(90deg, var(--color-background-glassy-a) calc(100% - 200px), var(--color-content-inverted-secondary), calc(100% - 100px), var(--color-background-glassy-a) 100%);
    background-size: 1400px 100%; }
  .placeholder_center {
    justify-content: center; }
  .placeholder_rounded_s {
    border-radius: 2px; }
  .placeholder_rounded_m {
    border-radius: 12px; }

/* Усиливаем селектор, т.к. Drawer является миксом для Popup
   из-за этого стили могут приезжать не в правильном порядке */
.Drawer[class] {
    position: fixed;
    top: 0;
    left: 0;

    display: none;
    overflow: hidden;

    width: 100%;
    height: 100%;
}

.Drawer.Drawer_visible {
    display: block;
}

.Drawer-DragObserver {
    display: flex;

    height: inherit;
}

.Drawer-Curtain {
    position: relative;

    display: flex;
    flex-direction: column;

    max-height: 100%;
    will-change: transform;
}

.Drawer-Content {
    position: relative;

    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.Drawer-Overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    touch-action: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    will-change: opacity;
}

.Popup2 {
    position: absolute;
    z-index: 1400;
}

.Popup2[data-popper-reference-hidden],
.Popup2[data-popper-escaped] {
    visibility: hidden !important;

    margin: -9999px 0 0 -9999px !important;

    pointer-events: none !important;
}

.Popup2-Tail {
    width: 24px;
    height: 24px;

    /* Отключаем взаимодействие, т.к. хвостик может накладываться на якорь */
    pointer-events: none;
}

.Popup2-TailSvg {
    display: block;
}

.Popup2[data-popper-placement^='top'] .Popup2-Tail {
    top: 100%;

    transform: rotate(180deg);
}

.Popup2[data-popper-placement^='left'] .Popup2-Tail {
    left: 100%;

    transform: rotate(90deg);
}

.Popup2[data-popper-placement^='bottom'] .Popup2-Tail {
    bottom: 100%;
}

.Popup2[data-popper-placement^='right'] .Popup2-Tail {
    right: 100%;

    transform: rotate(-90deg);
}

/**
 * Базовые визуальные стили
 */
.Drawer_view_default .Drawer-Content,
.Drawer_view_default .Drawer-Title {
    background: #fff;
}

.Drawer_view_default .Drawer-Overlay {
    background: rgba(0, 0, 0, 0.4);
}

/**
 * Стили для direction_bottom
 */
.Drawer_direction_bottom .Drawer-DragObserver {
    flex-direction: column;
    justify-content: flex-end;
}

.Drawer_direction_bottom.Drawer_view_default .Drawer-Curtain {
    max-height: calc(100% - 32px);
}

.Drawer_direction_bottom.Drawer_view_default .Drawer-Content,
.Drawer_direction_bottom.Drawer_view_default .Drawer-Title {
    border-radius: 16px 16px 0 0;
}

/* когда в шторке есть заголовок, то скругляем углы только у него */
.Drawer_direction_bottom.Drawer_view_default .Drawer-Title + .Drawer-Content {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.Drawer_direction_bottom.Drawer_view_default .Drawer-Handle {
    position: absolute;
    top: -19px;
    left: 50%;

    width: 40px;
    margin-left: -36px;
    padding: 8px 16px;
    will-change: opacity;
}

.Drawer_direction_bottom.Drawer_view_default .Drawer-Handle::before {
    display: block;

    height: 3px;

    content: '';

    border-radius: 100px;
    background: #fff;
}

.Drawer_direction_bottom.Drawer_view_default.Drawer_nested .Drawer-Handle {
    z-index: 1;
    top: 0;
}

.Drawer_direction_bottom.Drawer_view_default.Drawer_nested .Drawer-Handle::before {
    background: rgba(0, 0, 0, 0.1);
}

@charset "UTF-8";
/* code colors */
/* icon logo */
/* social */
@keyframes fadeIn {
  from {
    opacity: 0; } }

@keyframes fadeOut {
  to {
    opacity: 0; } }

@keyframes rotation {
  to {
    transform: rotate(360deg); } }

.fade-enter, .fade-appear {
  opacity: 0.01; }

.fade-enter-active, .fade-enter-done, .fade-appear-active, .fade-appear-done {
  transition: all var(--fadeAnimationDelay, 250ms) ease-out;
  opacity: 1; }

.fade-exit {
  opacity: 1; }

.fade-exit-active {
  transition: all var(--fadeAnimationDelay, 250ms) ease-out;
  opacity: 0.01; }

.scale-fade-enter {
  transform: scale(0.01);
  opacity: 0; }

.scale-fade-enter-active {
  transition-timing-function: ease-out;
  transition-duration: 250ms;
  transition-property: opacity, transform;
  transform: scale(1);
  opacity: 1; }

.scale-fade-exit {
  transform: scale(1);
  opacity: 1; }

.scale-fade-exit-active {
  transition-timing-function: ease-out;
  transition-duration: 250ms;
  transition-property: opacity, transform;
  transform: scale(0.01);
  opacity: 0; }

.fade-slide-up-enter {
  transform: translateY(15%);
  opacity: 0.01; }

.fade-slide-up-enter-active {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transform: none;
  opacity: 1; }

.fade-slide-up-exit {
  transform: none;
  opacity: 1; }

.fade-slide-up-exit-active {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transform: translateY(15%);
  opacity: 0.01; }

.slide-right-enter, .slide-right-exit-active {
  transform: translateX(-100%); }

.slide-left-enter, .slide-left-exit-active {
  transform: translateX(100%); }

.slide-right-enter, .slide-right-exit, .slide-right-enter-active, .slide-right-exit-active,
.slide-left-enter,
.slide-left-exit,
.slide-left-enter-active,
.slide-left-exit-active {
  will-change: transform; }

.slide-right-enter-active,
.slide-left-enter-active {
  transition: transform 0.65s cubic-bezier(0.2, 1, 0.3, 1);
  transition-delay: 0.1s;
  transform: translateX(0); }

.slide-right-exit,
.slide-left-exit {
  transform: translateX(0); }

@keyframes shake {
  12.5% {
    transform: translateX(12px); }
  25% {
    transform: translateX(0); }
  37.5% {
    transform: translateX(-5px); }
  50% {
    transform: translateX(0); }
  62.5% {
    transform: translateX(3px); }
  75% {
    transform: translateX(0); }
  87.5% {
    transform: translateX(-2px); }
  100% {
    transform: translateX(0); } }

/**
 * Ширина блока по сетке
 */
/**
 * Устанавливает отступ по сетке
 */
/**
 * Выравнивает блок по сетке
 */
/**
 * Устанавливает грид-контейнер и его ширину
 */
@keyframes placeholder-animation {
  0% {
    background-position: 0 50%; }
  65% {
    background-position: 0 50%; }
  100% {
    background-position: 1400px 50%; } }

/**
 * Layout
 */
/**
 * Helpers
 */
.user__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: space-between;
  min-height: var(--item-height);
  height: auto;
  padding: 0 var(--popup-padding);
  -webkit-user-select: none;
  user-select: none;
  font-weight: bold;
  line-height: 1.125em; }
  .user__item_extended {
    --item-height: 3.25em; }
  .user__item_clickable {
    cursor: pointer; }
  .user__item_hoverable {
    transition: background-color 0.2s;
    border-radius: 6px;
    background-color: transparent; }
    @media (any-hover: hover) {
      .user__item_hoverable:hover {
        background-color: var(--color-background-glassy-a); } }
    @media (any-hover: none) {
      body:not(._without-pointer-events) .user__item_hoverable:active {
        background-color: var(--color-background-glassy-a); } }
  @media (any-hover: hover) {
    .user__item:hover .user__item-action {
      visibility: visible;
      opacity: 0.75; } }
  @media (any-hover: hover) and (any-hover: hover) {
    .user__item:hover .user__item-action:hover {
      opacity: 1; } }
  @media (any-hover: hover) and (any-hover: none) {
    body:not(._without-pointer-events) .user__item:hover .user__item-action:active {
      opacity: 1; } }
  @media (any-hover: none) {
    body:not(._without-pointer-events) .user__item:active .user__item-action {
      visibility: visible;
      opacity: 0.75; } }
  @media (any-hover: none) and (any-hover: hover) {
    body:not(._without-pointer-events) .user__item:active .user__item-action:hover {
      opacity: 1; } }
  @media (any-hover: none) and (any-hover: none) {
    body:not(._without-pointer-events) body:not(._without-pointer-events) .user__item:active .user__item-action:active {
      opacity: 1; } }

.user__item-title {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
  margin-right: 52px;
  height: auto; }

.user__item-small-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1; }

.user__item-subtitle {
  margin: 4px 0 0;
  opacity: 0.5; }

.user__item-action {
  position: absolute;
  right: var(--popup-padding);
  visibility: hidden;
  cursor: pointer;
  transition: visibility 0.2s, opacity 0.2s;
  opacity: 0; }

.user__items-group {
  --margin: 16px;
  display: flex;
  flex-direction: column;
  margin-top: var(--margin);
  gap: var(--spacing-8); }
  .user__items-group:first-child {
    --margin: 0; }
  .user__items-group_dense {
    --margin: 8px; }

.user__plus-badge {
  display: inline-block;
  align-self: flex-end;
  flex-shrink: 0;
  margin: 0; }

.user__other-accounts {
  display: grid;
  grid-auto-flow: row;
  grid-row-gap: 4px;
  margin-top: 24px;
  margin-bottom: 8px; }

.user__other-account-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--user-pic-size-m-size);
  height: var(--user-pic-size-m-size);
  margin: 0 8px 0 0; }

.referral-user-pic-cover {
    position: absolute;
    top: 0;
    z-index: 10;

    pointer-events: none;
}

.referral-user-pic-cover_animated::after {
    position: absolute;
    top: -112px;
    left: -8px;
    width: 150px;
    height: 150px;
    content: '';

    background: url(https://code.s3.yandex.net/dev/referral-confetti.gif);
    transform: rotate(39deg);

    animation: hideAnimation 0s ease-in 4.5s;
    animation-fill-mode: forwards;
}

@keyframes hideAnimation {
  to {
    visibility: hidden;
    width: 0;
    height: 0;
  }
}

.referral-user-pic-cover_mirrored-animation::after {
    top: -8px;
    left: -112px;

    transform: rotate(-128deg);
}

@charset "UTF-8";
/* code colors */
/* icon logo */
/* social */
@keyframes fadeIn {
  from {
    opacity: 0; } }

@keyframes fadeOut {
  to {
    opacity: 0; } }

@keyframes rotation {
  to {
    transform: rotate(360deg); } }

.fade-enter, .fade-appear {
  opacity: 0.01; }

.fade-enter-active, .fade-enter-done, .fade-appear-active, .fade-appear-done {
  transition: all var(--fadeAnimationDelay, 250ms) ease-out;
  opacity: 1; }

.fade-exit {
  opacity: 1; }

.fade-exit-active {
  transition: all var(--fadeAnimationDelay, 250ms) ease-out;
  opacity: 0.01; }

.scale-fade-enter {
  transform: scale(0.01);
  opacity: 0; }

.scale-fade-enter-active {
  transition-timing-function: ease-out;
  transition-duration: 250ms;
  transition-property: opacity, transform;
  transform: scale(1);
  opacity: 1; }

.scale-fade-exit {
  transform: scale(1);
  opacity: 1; }

.scale-fade-exit-active {
  transition-timing-function: ease-out;
  transition-duration: 250ms;
  transition-property: opacity, transform;
  transform: scale(0.01);
  opacity: 0; }

.fade-slide-up-enter {
  transform: translateY(15%);
  opacity: 0.01; }

.fade-slide-up-enter-active {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transform: none;
  opacity: 1; }

.fade-slide-up-exit {
  transform: none;
  opacity: 1; }

.fade-slide-up-exit-active {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transform: translateY(15%);
  opacity: 0.01; }

.slide-right-enter, .slide-right-exit-active {
  transform: translateX(-100%); }

.slide-left-enter, .slide-left-exit-active {
  transform: translateX(100%); }

.slide-right-enter, .slide-right-exit, .slide-right-enter-active, .slide-right-exit-active,
.slide-left-enter,
.slide-left-exit,
.slide-left-enter-active,
.slide-left-exit-active {
  will-change: transform; }

.slide-right-enter-active,
.slide-left-enter-active {
  transition: transform 0.65s cubic-bezier(0.2, 1, 0.3, 1);
  transition-delay: 0.1s;
  transform: translateX(0); }

.slide-right-exit,
.slide-left-exit {
  transform: translateX(0); }

@keyframes shake {
  12.5% {
    transform: translateX(12px); }
  25% {
    transform: translateX(0); }
  37.5% {
    transform: translateX(-5px); }
  50% {
    transform: translateX(0); }
  62.5% {
    transform: translateX(3px); }
  75% {
    transform: translateX(0); }
  87.5% {
    transform: translateX(-2px); }
  100% {
    transform: translateX(0); } }

/**
 * Ширина блока по сетке
 */
/**
 * Устанавливает отступ по сетке
 */
/**
 * Выравнивает блок по сетке
 */
/**
 * Устанавливает грид-контейнер и его ширину
 */
@keyframes placeholder-animation {
  0% {
    background-position: 0 50%; }
  65% {
    background-position: 0 50%; }
  100% {
    background-position: 1400px 50%; } }

/**
 * Layout
 */
/**
 * Helpers
 */
.user {
  --size: 32px;
  --popup-padding: 8px;
  --item-height: 2.25em;
  --user-pic-size-m-size: var(--size);
  --user-pic-size-m-size-plus: calc(var(--size) * 1.25);
  --popup-offset-top: 0px;
  --popup-offset-right: 0px;
  --logo-offset: 65px;
  position: relative;
  z-index: 1;
  width: var(--size);
  height: var(--size);
  font-family: "YS Text", "Arial", "Helvetica", sans-serif; }
  .user_open {
    z-index: 10000; }
  .user,
  .user * {
    box-sizing: border-box; }
  .user__avatar-wrapper {
    line-height: 0; }
  .user__avatar {
    z-index: 2;
    cursor: pointer; }
    .user__avatar_with-referral-cover {
      opacity: 0; }
  .user__popup {
    --top: calc(
            var(--popup-offset-top) + var(--popup-padding) +
                (var(--item-height) + var(--popup-padding) * 2 - var(--size) - var(--spacing-16)) / 2
        );
    --right: calc(var(--popup-offset-right) + 2 * var(--popup-padding));
    position: absolute;
    z-index: -1;
    top: calc(-1 * var(--top));
    right: calc(-1 * var(--right));
    visibility: hidden;
    width: 300px;
    padding: var(--popup-padding);
    transition: opacity 0.15s, visibility 0.15s;
    opacity: 0;
    color: var(--color-content-primary);
    border-radius: 16px;
    background-color: var(--color-background-default);
    border: 1px solid var(--color-background-stroke);
    box-shadow: var(--shadow-medium-default);
    font-size: 16px; }
    .user__popup_animated {
      transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
      transition-timing-function: cubic-bezier(0.25, 1.15, 0.5, 1.1);
      transform: scale(0.5);
      transform-origin: calc(100% - var(--right)) calc(var(--top) + var(--size) / 4); }
    .user__popup_open {
      visibility: visible;
      transform: none;
      opacity: 1; }
  .user__popup-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .user__link {
    width: min-content;
    text-overflow: ellipsis;
    overflow: hidden;
    text-decoration: none;
    color: inherit; }
  .user__toggle-dark-theme {
    width: 100%; }

@charset "UTF-8";
/* code colors */
/* icon logo */
/* social */
@keyframes fadeIn {
  from {
    opacity: 0; } }

@keyframes fadeOut {
  to {
    opacity: 0; } }

@keyframes rotation {
  to {
    transform: rotate(360deg); } }

.fade-enter, .fade-appear {
  opacity: 0.01; }

.fade-enter-active, .fade-enter-done, .fade-appear-active, .fade-appear-done {
  transition: all var(--fadeAnimationDelay, 250ms) ease-out;
  opacity: 1; }

.fade-exit {
  opacity: 1; }

.fade-exit-active {
  transition: all var(--fadeAnimationDelay, 250ms) ease-out;
  opacity: 0.01; }

.scale-fade-enter {
  transform: scale(0.01);
  opacity: 0; }

.scale-fade-enter-active {
  transition-timing-function: ease-out;
  transition-duration: 250ms;
  transition-property: opacity, transform;
  transform: scale(1);
  opacity: 1; }

.scale-fade-exit {
  transform: scale(1);
  opacity: 1; }

.scale-fade-exit-active {
  transition-timing-function: ease-out;
  transition-duration: 250ms;
  transition-property: opacity, transform;
  transform: scale(0.01);
  opacity: 0; }

.fade-slide-up-enter {
  transform: translateY(15%);
  opacity: 0.01; }

.fade-slide-up-enter-active {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transform: none;
  opacity: 1; }

.fade-slide-up-exit {
  transform: none;
  opacity: 1; }

.fade-slide-up-exit-active {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transform: translateY(15%);
  opacity: 0.01; }

.slide-right-enter, .slide-right-exit-active {
  transform: translateX(-100%); }

.slide-left-enter, .slide-left-exit-active {
  transform: translateX(100%); }

.slide-right-enter, .slide-right-exit, .slide-right-enter-active, .slide-right-exit-active,
.slide-left-enter,
.slide-left-exit,
.slide-left-enter-active,
.slide-left-exit-active {
  will-change: transform; }

.slide-right-enter-active,
.slide-left-enter-active {
  transition: transform 0.65s cubic-bezier(0.2, 1, 0.3, 1);
  transition-delay: 0.1s;
  transform: translateX(0); }

.slide-right-exit,
.slide-left-exit {
  transform: translateX(0); }

@keyframes shake {
  12.5% {
    transform: translateX(12px); }
  25% {
    transform: translateX(0); }
  37.5% {
    transform: translateX(-5px); }
  50% {
    transform: translateX(0); }
  62.5% {
    transform: translateX(3px); }
  75% {
    transform: translateX(0); }
  87.5% {
    transform: translateX(-2px); }
  100% {
    transform: translateX(0); } }

/**
 * Ширина блока по сетке
 */
/**
 * Устанавливает отступ по сетке
 */
/**
 * Выравнивает блок по сетке
 */
/**
 * Устанавливает грид-контейнер и его ширину
 */
@keyframes placeholder-animation {
  0% {
    background-position: 0 50%; }
  65% {
    background-position: 0 50%; }
  100% {
    background-position: 1400px 50%; } }

/**
 * Layout
 */
/**
 * Helpers
 */
.user-widget__change-email-screen {
  position: relative;
  padding: 32px;
  border-radius: 24px;
  width: 716px;
  max-width: 100vw;
  box-sizing: border-box; }
  .user-widget__change-email-screen .user-widget__change-email-screen-checkbox {
    display: flex;
    align-items: center;
    --accent-color: var(--profession-color);
    margin: 8px 0 32px; }
  .user-widget__change-email-screen .user-widget__change-email-screen-input-message {
    transition-duration: 0s;
    margin-bottom: 0; }

.user-widget__change-email-screen-title {
  font-size: 32px;
  line-height: 36px;
  font-weight: bold;
  font-family: 'YS Display';
  margin: 0 0 24px; }

.user-widget__change-email-screen-checkbox-label-content {
  font-size: 14px;
  line-height: 18px;
  font-weight: normal;
  font-family: 'YS Text'; }

.user-widget__change-email-screen-button-wrapper {
  display: flex;
  justify-content: flex-end;
  --accent-color: var(--profession-color); }

@media screen and (max-width: 666px) {
  .user-widget__change-email-screen-button {
    width: 100%; } }

.user-widget__change-email-screen-close-button {
  position: absolute;
  top: 0;
  right: -50px;
  background-color: transparent;
  border: none;
  z-index: 1;
  cursor: pointer; }
  @media screen and (max-width: 767px) {
    .user-widget__change-email-screen-close-button {
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      background-color: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0px 100px 138px rgba(0, 0, 0, 0.12), 0px 8.90503px 122.225px rgba(0, 0, 0, 0.107844), 0px 1.86515px 58.3114px rgba(0, 0, 0, 0.0586081), 0px -0.01137px 10.9024px rgba(0, 0, 0, 0.0127797); } }

.user-widget__change-email-screen-close-icon {
  width: 38px;
  height: 38px;
  color: #d5d5d7;
  cursor: pointer; }
  @media screen and (max-width: 767px) {
    .user-widget__change-email-screen-close-icon {
      width: 13px;
      height: 13px;
      color: #000; } }

#bundle-catalog .catalog-page * {
    box-sizing: border-box;
}#bundle-catalog .catalog-page {
    --catalog-page-paddings: 16px;
    --header-height: 68px;

    width: 100%;
    /* 1232px + paddings */
    max-width: calc(1232px + var(--catalog-page-paddings) * 2);

    margin: 0 auto;

    padding: 0 var(--catalog-page-paddings);

    box-sizing: border-box;
}#bundle-catalog .catalog-page__referrals-toast {
        position: relative;
        top: calc(var(--header-height) - var(--catalog-page-paddings));

        background-color: var(--color-accent-neutral);
        color: var(--color-content-inverted-primary);
    }#bundle-catalog .catalog-page__referrals-toast .toast__close-button {
            background-color: var(--color-content-inverted-secondary);
        }
#bundle-catalog .catalog-header {
    margin: 0 0 var(--spacing-24);
}

    @media (max-width: 767px) {#bundle-catalog .catalog-header {
        margin: 0 0 var(--spacing-12)
}
    }

    #bundle-catalog .catalog-header__login-button {
        --prisma-button-accent-color: var(--color-accent-neutral);
        --prisma-button-accent-color-active-resulting: var(--color-accent-neutral);

        min-width: 74px;
    }
.auth-widget__user-with-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-left: -4px;
    } /* to align icon with the other */ .auth-widget__user-with-icon_link {
            text-decoration: none;

            color: var(--color-palette-white-1000);
        }

.auth-widget__toggle-dark-theme {
    width: 100%;
}

.auth-widget__beta-badge {
    font-family: 'YS Text';
    font-style: normal;
    /* stylelint-disable-next-line font-weight-notation */
    font-weight: 700;
    font-size: 10px;
    color: var(--color-content-inverted-primary);
    line-height: 15px;
    padding: 0 5px;
    background-color: var(--color-palette-purple-normal);
    box-shadow: 0px 2px 14px rgba(212, 113, 228, 0.5);
    border-radius: 25px;
    margin: 0 auto 0 4px;
}

.UserPic {
    position: relative;

    display: inline-block;

    width: var(--user-pic-size-m-size);
    height: var(--user-pic-size-m-size);
}

.UserPic_hasPlus::after {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;

    width: var(--user-pic-size-m-size-plus);
    height: var(--user-pic-size-m-size-plus);
    margin: calc(var(--user-pic-size-m-size-plus) / -2) 0 0 calc(var(--user-pic-size-m-size-plus) / -2);

    content: '';

    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300' fill='none'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M150 300c82.843 0 150-67.157 150-150S232.843 0 150 0 0 67.157 0 150s67.157 150 150 150Zm0-11.538c76.47 0 138.462-61.992 138.462-138.462S226.47 11.538 150 11.538 11.538 73.53 11.538 150 73.53 288.462 150 288.462Z' fill='url(%23paint0_linear)'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear' x1='6.72646' y1='35.3513' x2='326.763' y2='101.457' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.0364583' stop-color='%2348CCE0'/%3e%3cstop offset='0.328125' stop-color='%23505ADD'/%3e%3cstop offset='0.640625' stop-color='%23BE40C0'/%3e%3cstop offset='0.958333' stop-color='%23FBA82B'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e") center center no-repeat;
    background-size: contain;
}

.UserPic-Image {
    width: 100%;
    height: 100%;

    border-radius: 100px;
    background-color: #fff;
    object-fit: cover;
}

.Link {
    text-decoration: none;

    outline: 0;

    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.Link[aria-disabled='true'] {
    pointer-events: none;
}

.Link_theme_black {
    color: #000;
}

.Link_theme_black[aria-disabled='true'] {
    color: #ddd;
}

.Link_theme_ghost {
    color: #999;
}

.Link_theme_ghost[aria-disabled='true'] {
    color: #ddd;
}

.Link_theme_normal {
    color: #04b;
}

.Link_theme_normal[aria-disabled='true'] {
    color: #ddd;
}

.Link_theme_outer {
    color: #070;
}

.Link_theme_outer[aria-disabled='true'] {
    color: #ddd;
}

/*
* Убрали из Link inner и поэтому тут вместо символической ссылки свои стили.
* Т.к. теперь нельзя использовать стили из islands.
*/

.Link_theme_pseudo {
    color: #04b;
    border-bottom: 1px dotted;
}

.Link_theme_pseudo[aria-disabled='true'] {
    color: #ddd;
}

.Link_theme_strong {
    /* stylelint-disable-next-line font-weight-notation */
    font-weight: 700;

    color: #04b;
}

.Link_theme_strong[aria-disabled='true'] {
    color: #ddd;
}

/* common */
.Link_view_default {
    color: var(--link-view-default-typo-color-base);

    transition: color .15s linear;
}

/* disable */
.Link_view_default[aria-disabled='true'] {
    color: var(--link-view-default-typo-color-disabled);
}

.UserPic-Camera {
    position: absolute;
    z-index: 1;
    top: 0%;

    overflow: hidden;

    width: 100%;
    height: 100%;

    border-radius: 50%;
}

.UserPic-Link {
    position: absolute;
    bottom: 0%;
    left: 0%;

    width: 100%;
    height: 100%;

    outline: none;
    background-color: rgba(0, 0, 0, .5);
}

.UserPic-Camera::after {
    position: absolute;
    top: 50%;
    left: 50%;

    width: calc(var(--user-pic-size-m-size) / 2);
    height: calc(var(--user-pic-size-m-size) / 2);

    content: '';
    pointer-events: none;

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='%23FFFFFF' d='M7.342 4.985c.422-.724.633-1.085.927-1.348a2.5 2.5 0 0 1 .898-.516C9.542 3 9.96 3 10.797 3h2.405c.838 0 1.256 0 1.631.121a2.5 2.5 0 0 1 .898.516c.294.263.505.624.927 1.348L17.25 6H18c1.4 0 2.1 0 2.635.272a2.5 2.5 0 0 1 1.092 1.093C22 7.9 22 8.6 22 10v6c0 1.4 0 2.1-.273 2.635a2.5 2.5 0 0 1-1.092 1.092C20.1 20 19.4 20 18 20H6c-1.4 0-2.1 0-2.635-.273a2.5 2.5 0 0 1-1.093-1.092C2 18.1 2 17.4 2 16v-6c0-1.4 0-2.1.272-2.635a2.5 2.5 0 0 1 1.093-1.093C3.9 6 4.6 6 6 6h.75l.592-1.015zM12 17.05a4.75 4.75 0 1 0 0-9.5 4.75 4.75 0 0 0 0 9.5zm2.7-4.75a2.7 2.7 0 1 1-5.4 0 2.7 2.7 0 0 1 5.4 0z' fillRule='evenodd' clipRule='evenodd'/%3e%3c/svg%3e");

    transform: translate(-50%, -50%);
}

.UserPic-Link {
    height: 50%;

    transition: height .3s ease-out;
}

.UserPic-Camera::after {
    transition: transform .3s ease-out;
    transform: translate(-50%, -10%) scale(.66);
    will-change: transform;
}

.UserPic:hover .UserPic-Camera::after {
    top: 50%;

    transform: translate(-50%, -50%) scale(1);
}

.UserPic:hover .UserPic-Link {
    height: 100%;
}

.UserPic_size_m {
    width: var(--user-pic-size-m-size);
    height: var(--user-pic-size-m-size);
}

.UserPic_size_m.UserPic_hasPlus::after {
    width: var(--user-pic-size-m-size-plus);
    height: var(--user-pic-size-m-size-plus);
    margin: calc(var(--user-pic-size-m-size-plus) / -2) 0 0 calc(var(--user-pic-size-m-size-plus) / -2);
}

.UserPic_size_m .UserPic-Camera::after {
    width: calc(var(--user-pic-size-m-size) / 2);
    height: calc(var(--user-pic-size-m-size) / 2);
}

.UserPic_size_s {
    width: var(--user-pic-size-s-size);
    height: var(--user-pic-size-s-size);
}

.UserPic_size_s.UserPic_hasPlus::after {
    width: var(--user-pic-size-s-size-plus);
    height: var(--user-pic-size-s-size-plus);
    margin: calc(var(--user-pic-size-s-size-plus) / -2) 0 0 calc(var(--user-pic-size-s-size-plus) / -2);
}

.UserPic_size_s .UserPic-Camera::after {
    width: calc(var(--user-pic-size-s-size) / 2);
    height: calc(var(--user-pic-size-s-size) / 2);
}

#bundle-catalog .catalog__direction-block {
        margin-bottom: var(--spacing-20);
    }

        @media (max-width: 767px) {#bundle-catalog .catalog__direction-block {
            margin-bottom: var(--spacing-12)
    }
        }
    #bundle-catalog .catalog__header {
        margin-bottom: var(--spacing-20);
    }
    #bundle-catalog .catalog__title {
        font: var(--font-ys-header-48-medium);
    }
    @media (max-width: 767px) {
    #bundle-catalog .catalog__title {
            font: var(--font-ys-header-28-medium)
    }
        }
    #bundle-catalog .catalog__filters-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;

        margin-bottom: var(--spacing-20);
    }
    @media (max-width: 767px) {
    #bundle-catalog .catalog__filters-wrapper {
            flex-direction: row-reverse
    }
        }
    #bundle-catalog .catalog__filters {
        margin-right: var(--spacing-8);
    }
    @media (max-width: 767px) {
    #bundle-catalog .catalog__filters {
            margin-right: 0
    }
        }
    #bundle-catalog .catalog__search {
        --search-input-border-radius: 10px;

        flex-basis: 342px;
    }
    #bundle-catalog .catalog__black-friday-box {
        padding: 12px;
        margin: var(--spacing-16) 0 var(--spacing-32);

        text-align: center;

        font: var(--font-ys-body-16-regular-ui);
        color: var(--color-content-inverted-primary);
        background-color: var(--color-accent-neutral);
        border-radius: var(--border-radius-12);
    }
    @media (max-width: 767px) {
    #bundle-catalog .catalog__black-friday-box {
            font: var(--font-ys-caption-14-regular);

            margin-bottom: var(--spacing-20)
    }
        }
.prof-window-filters_type_desktop {
            display: flex;
            align-items: center;
        }
    .prof-window-filters__filter-group + .prof-window-filters__filter-group {
        margin-left: var(--spacing-8);
    }
    @media (max-width: 767px) {
    .prof-window-filters__filter-group + .prof-window-filters__filter-group {
            margin-top: var(--spacing-24);
            margin-left: 0
    }
        }

.prof-window-filters__filters-mobile-opener {
        position: relative;

        min-width: unset;

        background-color: unset;
    }

        .prof-window-filters__filters-mobile-opener:hover {
            background-color: unset;
        }

        .prof-window-filters__filters-mobile-opener::after {
            content: '';

            position: absolute;
            right: 2px;
            top: 2px;

            width: 10px;
            height: 10px;

            border-radius: 50%;

            background: var(--color-accent-notice);

            opacity: 0;
            transform: translateY(5px);

            transition-property: opacity, transform;
            transition-duration: 0.15s;
            transition-timing-function: ease;
        }

        .prof-window-filters__filters-mobile-opener_filters-applied::after {
                opacity: 1;
                transform: translateY(0);
            }
    .prof-window-filters__filters-mobile-container {
        padding: 24px 16px 82px;
    }
    .prof-window-filters__filters-mobile-show-button {
        --vertical-offset: 16px;
        --horizontal-offset: 16px;

        position: fixed;
        bottom: var(--vertical-offset);
        left: var(--horizontal-offset);

        width: calc(100% - calc(2 * var(--horizontal-offset)));
    }
    .prof-window-filters__drawer {
        --accent-color: var(--profession-color);

        z-index: 10000;
    }

.prof-window-filters__filter_type_desktop {
            position: relative;
        }
    .prof-window-filters__filter-item-toggle {
        box-sizing: border-box;

        height: 36px;

        padding: 12px;

        border-radius: var(--border-radius-12);

        font: var(--font-ys-caption-14-medium);
    }
    .prof-window-filters__filter-item-toggle_selected.prof-window-filters__filter-item-toggle_selected {
            color: var(--color-content-inverted-primary);

            background-color: var(--color-accent-neutral);
        }
    .prof-window-filters__filter-item-content {
        white-space: nowrap;

        font: var(--font-ys-caption-14-medium);
    }
    .prof-window-filters__filter-item-title {
        margin-bottom: var(--spacing-12);

        font: var(--font-ys-body-18-medium-ui);
    }
    .prof-window-filters__filter-item-options {
        display: flex;
        flex-wrap: wrap;

        margin-bottom: calc(-1 * var(--spacing-8));
    }
    .prof-window-filters__filter-item-option {
        min-width: auto;

        margin: 0 var(--spacing-8) var(--spacing-8) 0;

        font: var(--font-ys-caption-14-medium);
    }
    .prof-window-filters__filter-item-option,
        .prof-window-filters__filter-item-option:hover {
            background-color: var(--color-background-glassy-a);
        }
    .prof-window-filters__filter-item-option_selected,
            .prof-window-filters__filter-item-option_selected:hover {
                background-color: var(--color-accent-neutral);

                color: var(--color-content-inverted-primary);
            }
    .prof-window-filters__filter-reset {
        position: absolute;
        right: 0;
        top: 0;
        z-index: 100;

        min-width: unset;

        padding: 12px;

        border-radius: var(--border-radius-12);

        background-color: var(--color-accent-neutral);
    }
    .prof-window-filters__filter-reset:hover {
            background-color: var(--color-accent-neutral);
        }

.prof-window-filters__filter-stub {
        width: 100px;
        height: 36px;
    }

        @media (max-width: 767px) {.prof-window-filters__filter-stub {
            width: 100%
    }
        }
    .prof-window-filters__filter-stub + .prof-window-filters__filter-stub {
        margin-left: var(--spacing-8);
    }
    @media (max-width: 767px) {
    .prof-window-filters__filter-stub + .prof-window-filters__filter-stub {
            margin-top: var(--spacing-24);
            margin-left: 0
    }
        }

.prof-window-search.prof-window-search {
    --search-input-border-radius: var(--border-radius-12);
}

    @media (max-width: 767px) {.prof-window-search.prof-window-search {
        flex-grow: 1;

        margin-right: var(--spacing-8)
}
    }

    /* Нужно больше вложенности, чтобы перебить родные стили инпута */

    .prof-window-search.prof-window-search .prof-window-search__search-input,
        .prof-window-search.prof-window-search .prof-window-search__search-input-control-wrapper {
            height: 36px;
        }

    .prof-window-search.prof-window-search .prof-window-search__search-input::after, .prof-window-search.prof-window-search .prof-window-search__search-input-control-wrapper::after {
                height: 0;
            }

    .prof-window-search.prof-window-search .prof-window-search__search-input {
            margin: 0;
        }

    .prof-window-search.prof-window-search .prof-window-search__search-input.input_focused .prof-window-search__search-input-control-wrapper {
                border: 1px solid var(--color-accent-neutral-hover);
            }

    .prof-window-search.prof-window-search .prof-window-search__search-input-control-wrapper {
            border-radius: var(--search-input-border-radius);
            border: 1px solid var(--color-background-stroke);
        }

    .prof-window-search.prof-window-search .prof-window-search__search-input-control-wrapper .input__control {
                height: 100%;

                padding: 17px 12px;

                font: var(--font-ys-caption-14-regular);
            }

#bundle-catalog .catalog__direction-message {
        background-color: var(--color-background-alternate);
        border-radius: var(--border-radius-16);
        padding: var(--spacing-16);
    }
    #bundle-catalog .catalog__direction-message-title {
        font: var(--font-ys-header-24-medium);
        color: var(--color-content-primary);
        margin-bottom: var(--spacing-4);
    }
    #bundle-catalog .catalog__direction-message-text {
        font: var(--font-ys-body-18-regular-ui);
        color: var(--color-content-secondary);
    }
    @media (max-width: 767px) {
    #bundle-catalog .catalog__direction-message-text {
            font: var(--font-ys-body-16-regular-ui)
    }
        }
.prof-window-cards__animated-collection {
        /* Чтобы не обрезались тенюшки у карточек */
        --vertical-reserved-space: 32px;

        display: grid;
        grid-auto-rows: min-content;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-column-gap: var(--spacing-12);
        grid-row-gap: var(--spacing-12);
        list-style: none;

        /* Победить прыжки контента по высоте */
        height: auto !important;

        margin: calc(-1 * var(--vertical-reserved-space)) calc(-1 * var(--spacing-16));
        padding: var(--vertical-reserved-space) 16px;
    }

        @media (max-width: 1279px) {.prof-window-cards__animated-collection {
            grid-template-columns: repeat(3, minmax(0, 1fr))
    }
        }

        @media (max-width: 1023px) {.prof-window-cards__animated-collection {
            grid-template-columns: repeat(2, minmax(0, 1fr))
    }
        }

        @media (max-width: 767px) {.prof-window-cards__animated-collection {
            grid-template-columns: repeat(1, minmax(0, 1fr))
    }
        }
    .prof-window-cards__item_animation_before-enter {
                transform: scale(0.95);
                opacity: 0;
            }
    .prof-window-cards__item_animation_entering {
                transform: scale(1);
                opacity: 1;
                transition-property: transform, opacity;
                transition-duration: 0.3s;
            }
    .prof-window-cards__item_animation_before-exit {
                transform: scale(1);
                opacity: 1;
            }
    .prof-window-cards__item_animation_exiting {
                transform: scale(0.95);
                opacity: 0;
                transition-duration: 0.3s;
                transition-property: transform, opacity;
            }
    .prof-window-cards__card-placeholder {
        height: 332px;
    }
    @media (max-width: 767px) {
    .prof-window-cards__card-placeholder {
            height: 136px
    }
        }

.prof-card {
    box-sizing: border-box;

    min-height: 136px;

    color: var(--color-content-primary);

    list-style-type: none;
}

.prof-card__stub {
        padding: 16px;

        box-shadow: var(--shadow-medium-default);

        border-radius: 16px;
    }
    .prof-card__header-stub,
    .prof-card__footer-stub {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .prof-card__header-stub {
        margin-bottom: var(--spacing-8);
    }
    .prof-card__header-left-stub,
    .prof-card__header-right-stub,
    .prof-card__footer-left-stub,
    .prof-card__footer-right-stub {
        height: 18px;
    }
    .prof-card__header-left-stub {
        width: 180px;
    }
    .prof-card__header-right-stub {
        width: 64px;
    }
    .prof-card__title-stub {
        width: 180px;
        height: 68px;

        margin-bottom: var(--spacing-12);
    }
    @media (max-width: 767px) {
    .prof-card__title-stub {
            margin-bottom: var(--spacing-40)
    }
        }
    .prof-card__main-stub {
        height: 132px;

        margin-bottom: var(--spacing-32);
    }
    @media (max-width: 767px) {
    .prof-card__main-stub {
            display: none
    }
        }
    .prof-card__footer {
        min-height: 22px;
    }
    .prof-card__footer-left-stub {
        width: 112px;
    }
    .prof-card__footer-right-stub {
        width: 72px;
    }

.prof-card__content {
        box-sizing: border-box;

        display: flex;
        flex-direction: column;

        height: 100%;

        padding: 16px;

        background-color: var(--color-background-default);

        box-shadow: var(--shadow-medium-default);

        border-radius: 16px;

        transition-property: box-shadow;
        transition-timing-function: ease;
        transition-duration: 0.3s;
    }

        .prof-card__content:hover {
            box-shadow: var(--shadow-medium-hovered);

            cursor: pointer;
        }

        .prof-card__content_custom {
            background-color: var(--color-background-highlighted);
        }

        .prof-card__content_custom,
            .prof-card__content_custom:hover {
                box-shadow: none;
            }
    .prof-card__header {
        margin-bottom: var(--spacing-16);
    }
    @media (max-width: 767px) {
    .prof-card__header {
            margin-bottom: var(--spacing-24)
    }
        }
    .prof-card__tags {
        margin-bottom: var(--spacing-4);
    }
    .prof-card__tag {
        display: inline-block;

        margin-bottom: var(--spacing-4);

        border-radius: var(--border-radius-10);

        font: var(--font-ys-caption-12-medium);
        color: var(--color-content-secondary);
    }
    .prof-card__tag:not(:last-child):after {
            content: '•';

            padding: 0 0.33333333em;
        }
    .prof-card__title {
        font: var(--font-ys-header-20-medium);
    }
    .prof-card__title:not(:last-child) {
            margin-bottom: var(--spacing-4);
        }
    @media (max-width: 767px) {
    .prof-card__title {
            font: var(--font-ys-body-18-medium-ui)
    }
        }
    .prof-card__subtitle {
        white-space: pre-wrap;
        
        color: var(--color-content-secondary);

        font: var(--font-ys-body-16-regular-ui);
    }
    .prof-card__main {
        display: flex;
        justify-content: center;

        margin: auto 0 var(--spacing-12);

        padding: var(--spacing-20) 0;

        background-color: var(--color-palette-white-1000);

        border-radius: var(--border-radius-12);
    }
    @media (max-width: 767px) {
    .prof-card__main {
            display: none
    }
        }
    .prof-card__badges {
        display: flex;
        flex-wrap: wrap;
        gap: var(--spacing-8);
        margin: calc(-1 * var(--spacing-24)) 0 var(--spacing-8);
    }
    @media (max-width: 767px) {
    .prof-card__badges {
            margin-top: calc(-1 * var(--spacing-8))
    }
        }
    .prof-card__img {
        max-width: 100%;
        height: 132px;
        color: var(--color-palette-black-1000);
    }
    .prof-card__footer {
        color: var(--color-content-primary);
        margin-top: 0;
    }
    @media (max-width: 767px) {
    .prof-card__footer {
            margin-top: auto
    }
        }
    .prof-card__price {
        font: var(--font-ys-body-18-medium-ui);
    }
    .prof-card__full-price {
        margin-left: auto;

        color: var(--color-content-secondary);

        font: var(--font-ys-caption-12-medium);
    }

.prof-card__content:hover .prof-card__img {
        transition: 0.3s color ease;
        color: var(--prof-card-image-color);
    }

.prisma-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: 6px 12px;
    border-radius: var(--border-radius-10);
}

    .prisma-badge_theme_neutral {
            background-color: var(--color-background-alternate);
            color: var(--color-content-primary);
        }

    .prisma-badge_theme_success {
            background-color: var(--color-palette-green-pale);
            color: var(--color-accent-success);
        }

    .prisma-badge_theme_warning {
            background-color: var(--color-palette-orange-pale);
            color: var(--color-palette-orange-normal);
        }

    .prisma-badge_theme_danger {
            background-color: var(--color-palette-red-pale);
            color: var(--color-accent-critical);
        }

    .prisma-badge__icon {
        font-size: 0;
    }

    .prisma-badge__content {
        font: var(--font-ys-caption-14-medium);
    }

.prof-window-empty-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 450px;
    margin: 100px auto 0;

    text-align: center;
    font: var(--font-ys-caption-14-regular);

    opacity: 0;

    animation: emptyFallbackFadeIn 0.3s 0.5s forwards;
}

    .prof-window-empty-fallback_short {
        max-width: 354px;
    }

    @media (max-width: 767px) {.prof-window-empty-fallback {
        margin-top: 64px
}
    }

    .prof-window-empty-fallback__image-wrapper {
        margin-bottom: var(--spacing-2);
    }

    .prof-window-empty-fallback__text {
        font: var(--font-ys-body-16-medium-ui);
        margin: 0 0 var(--spacing-8);
    }

    .prof-window-empty-fallback__suggest-message {
        margin: 0 0 var(--spacing-24);
    }

    .prof-window-empty-fallback__suggest-btn {
        font: var(--font-ys-body-16-medium-ui);
    }

@keyframes emptyFallbackFadeIn {
    from {
        transform: translateY(32px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/*# sourceMappingURL=https://s3.mds.yandex.net/wirth-sourcemaps/v2.81/build/catalog.build.css.map*/