@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Comfortaa:wght@300&display=swap");
/*FONTS*/
/*LINER GRADIENT COLORS*/
/*BACKGROUND IMAGES*/
/*COLORS*/
/*LOADER COLOR*/
/*BOX SHADOWS*/
html,
body {
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  background-color: #f0f2f5;
  font-family: Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.chat_voice_recorder_panel {
  display: none;
  width: 100%;
  padding: 0 0 8px;
}

.chat_voice_recorder_panel.is-visible {
  display: block;
}

.chat_voice_recording_state,
.chat_voice_preview_state,
.chat_voice_error {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--chat-border-soft, #e5e7eb);
  border-radius: 14px;
  background: var(--chat-toolbar, #f8fafc);
  color: var(--chat-ink, #111827);
}

.chat_voice_recording_dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--chat-danger, #ef4444);
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.42);
  animation: chatVoicePulse 1.2s ease-in-out infinite;
}

.chat_voice_recording_label,
.chat_voice_recording_time {
  font-size: 13px;
  font-weight: 700;
}

.chat_voice_recording_time {
  margin-left: auto;
  color: var(--chat-ink-soft, #64748b);
}

.chat_voice_stop,
.chat_voice_cancel,
.chat_voice_send_preview {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--chat-border-soft, #dbe3ef);
  border-radius: 12px;
  background: var(--chat-panel, #ffffff);
  color: var(--chat-ink, #111827);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.chat_voice_stop,
.chat_voice_send_preview {
  border-color: var(--chat-accent, #0b99ff);
  background: var(--chat-accent, #0b99ff);
  color: #ffffff;
}

.chatVoiceRecord.is-recording {
  border-color: var(--chat-danger, #ef4444);
  color: var(--chat-danger, #ef4444);
}

.chat_voice_preview_audio {
  width: 100%;
  min-width: 180px;
  height: 38px;
}

.msg_with_voice {
  width: auto;
  max-width: 352px;
  padding: 0 !important;
  background: transparent !important;
  color: inherit;
  box-shadow: none !important;
}

.chat_p_body .msg_me.msg_with_voice,
.chat_p_body .msg_friend.msg_with_voice {
  width: auto;
  max-width: 352px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  color: inherit;
  box-shadow: none !important;
}

.chat_p_body .msg_me.msg_with_voice {
  margin-left: auto;
}

.chat_p_body .msg_friend.msg_with_voice {
  margin-right: auto;
}

.msg_with_voice .msg_o_avatar {
  top: 2px;
}

.chat_voice_message {
  width: 352px;
  max-width: calc(100vw - 92px);
}

.chat_voice_player {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 153, 255, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: #0099ff;
  --chat-voice-wave-idle: #c8d2de;
  --chat-voice-wave-played: #0099ff;
  overflow: hidden;
}

.msg_me.msg_with_voice .chat_voice_player {
  border-color: rgba(255, 255, 255, 0.68);
}

.chat_voice_play {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 0;
  border-radius: 50%;
  background: #0099ff;
  color: #ffffff;
  cursor: pointer;
}

.chat_voice_play_icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.chat_voice_player.is-playing .chat_voice_play_icon {
  width: 12px;
  height: 14px;
  margin-left: 0;
  border: 0;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.chat_voice_wave {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  flex: 1 1 auto;
  min-width: 120px;
  height: 30px;
  cursor: pointer;
  touch-action: manipulation;
}

.chat_voice_wave span {
  display: block;
  width: 4px;
  min-width: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--chat-voice-wave-played) 0 var(--chat-voice-bar-fill, 0%), var(--chat-voice-wave-idle) var(--chat-voice-bar-fill, 0%) 100%);
  transition: background 0.08s linear, opacity 0.14s ease;
  opacity: 0.96;
}

.chat_voice_wave span:nth-child(4n+1) { height: 10px; }
.chat_voice_wave span:nth-child(4n+2) { height: 22px; }
.chat_voice_wave span:nth-child(4n+3) { height: 16px; }
.chat_voice_wave span:nth-child(4n) { height: 28px; }
.chat_voice_wave span:nth-child(7n) { height: 8px; }
.chat_voice_wave span:nth-child(9n) { height: 24px; }

.chat_voice_wave span.is-played {
  background: var(--chat-voice-wave-played);
  opacity: 1;
}

.chat_voice_duration {
  min-width: 36px;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: currentColor;
}

.chat_voice_player .chat_voice_audio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.chat_voice_error {
  border-color: var(--chat-danger, #ef4444);
  color: var(--chat-danger, #ef4444);
  font-size: 13px;
  font-weight: 700;
}

@keyframes chatVoicePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.42);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@keyframes chatVoiceWave {
  0%, 100% {
    transform: scaleY(0.72);
    opacity: 0.72;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media screen and (max-width: 700px) {
  .chat_voice_recording_state,
  .chat_voice_preview_state {
    flex-wrap: wrap;
  }

  .chat_voice_preview_audio {
    flex: 1 0 100%;
  }

  .chat_voice_message {
    width: min(312px, 100%);
  }

  .chat_voice_wave {
    min-width: 92px;
  }

  .msg_with_voice,
  .chat_p_body .msg_me.msg_with_voice,
  .chat_p_body .msg_friend.msg_with_voice {
    max-width: min(312px, calc(100vw - 92px));
  }
}

/* Chat redesign final layer */
.chat_p_body {
  --chat-shell: #ffffff;
  --chat-shell-soft: #f6f8fc;
  --chat-panel: #fbfcff;
  --chat-panel-elevated: #ffffff;
  --chat-border-strong: #dbe2ec;
  --chat-border-soft: #e7edf5;
  --chat-ink: #172033;
  --chat-ink-soft: #667085;
  --chat-accent: #2563eb;
  --chat-accent-strong: #1d4ed8;
  --chat-accent-soft: #eff4ff;
  --chat-success: #16a34a;
  --chat-danger: #be123c;
  --chat-warning: #a16207;
  --chat-user-row: #ffffff;
  --chat-bubble-self: #eaf2ff;
  --chat-bubble-self-border: #cadbff;
  --chat-bubble-other: #ffffff;
  --chat-bubble-other-border: #dfe6f0;
  --chat-compose: #ffffff;
  --chat-toolbar: #f4f7fb;
  --chat-media: #edf2f8;
}

.chat_p_body .i_chat_wrapper {
  align-items: stretch !important;
  min-height: calc(100vh - 118px);
  border: 1px solid var(--chat-border-soft);
  background: var(--chat-shell);
  overflow: hidden;
  box-shadow: none !important;
}

.chat_p_body .chat_left_container {
  width: 380px;
  min-width: 380px;
  max-width: 380px;
  background: var(--chat-panel);
  border-right: 1px solid var(--chat-border-soft);
  position: relative;
}

.chat_p_body .chat_left_header {
  padding: 20px;
  gap: 14px;
  align-items: stretch !important;
  background: var(--chat-panel-elevated);
  border-bottom: 1px solid var(--chat-border-soft);
}

.chat_p_body .chat_left_header_title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
  color: var(--chat-ink);
}

.chat_p_body .chat_search_box {
  width: 100%;
}

.chat_p_body .c_search {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--chat-border-strong);
  border-radius: 14px;
  background: var(--chat-toolbar);
  color: var(--chat-ink);
  font-size: 14px;
  box-shadow: none;
}

.chat_p_body .c_search:focus {
  background: #ffffff;
  border-color: var(--chat-accent);
}

.chat_p_body .chat_left_container > .chat_users_wrapper,
.chat_p_body .chat_left_container > .chat_users_wrapper_results {
  flex: 1 1 auto;
  min-height: 0;
  padding: 8px 10px 10px;
  gap: 8px;
  background: transparent;
  overflow-y: auto;
}

.chat_p_body .chat_users_wrapper .i_message_wrpper,
.chat_p_body .chat_users_wrapper_results .i_message_wrpper {
  position: relative;
  display: block;
  margin: 0 !important;
}

.chat_p_body .chat_users_wrapper .i_message_wrpper > a,
.chat_p_body .chat_users_wrapper_results .i_message_wrpper > a {
  display: block;
}

.chat_p_body .chat_left_container .i_message_wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 76px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--chat-user-row);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.chat_p_body .chat_left_container .i_message_wrapper:hover {
  background: var(--chat-panel-elevated);
  border-color: var(--chat-border-strong);
}

.chat_p_body .chat_left_container .i_message_wrapper.talking {
  background: var(--chat-accent-soft);
  border-color: var(--chat-accent);
}

.chat_p_body .chat_left_container .i_message_wrapper.has_unread {
  background: #f8fbff;
  border-color: #bfd4ff;
  padding-left: 17px;
}

.chat_p_body .chat_left_container .i_message_wrapper.has_unread::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--chat-accent);
}

.chat_p_body .chat_left_container .i_message_owner_avatar,
.chat_p_body .chat_left_container .i_message_avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  overflow: hidden;
}

.chat_p_body .chat_left_container .i_message_avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.chat_p_body .chat_left_container .i_message_info_container {
  width: calc(100% - 52px);
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 4px;
}

.chat_p_body .chat_left_container .i_message_owner_name {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--chat-ink);
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.chat_p_body .chat_left_container .i_message_i {
  font-size: 13px;
  line-height: 1.4;
  color: var(--chat-ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat_p_body .chat_left_container .notSeenYet .i_message_owner_name,
.chat_p_body .chat_left_container .notSeenYet .i_message_i {
  color: var(--chat-ink);
}

.chat_p_body .i_message_meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  justify-content: space-between;
}

.chat_p_body .i_message_time {
  font-size: 11px;
  font-weight: 500;
  color: var(--chat-ink-soft);
}

.chat_p_body .i_message_unread {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--chat-accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
}

.chat_p_body .i_message_setting {
  position: absolute;
  top: 16px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--chat-ink-soft);
  opacity: 0;
}

.chat_p_body .i_message_wrpper:hover .i_message_setting,
.chat_p_body .i_message_setting.dblock {
  opacity: 1;
  background: var(--chat-toolbar);
  border-color: var(--chat-border-soft);
}

.chat_p_body .i_message_set_icon,
.chat_p_body .c_set,
.chat_p_body .cList {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--chat-ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat_p_body .cList {
  display: none;
}

.chat_p_body .i_message_set_icon svg,
.chat_p_body .c_set svg,
.chat_p_body .cList svg {
  width: 18px;
  height: 18px;
}

.chat_p_body .i_message_set_container,
.chat_p_body .cSetc,
.chat_p_body .me_msg_plus,
.chat_p_body .msg:last-child .msg_me .me_btns_cont .me_msg_plus {
  border: 1px solid var(--chat-border-soft);
  border-radius: 14px;
  background: var(--chat-panel-elevated);
  padding: 4px !important;
  box-shadow: none !important;
}

.chat_p_body .msg_Set.dblock .i_message_set_container,
.chat_p_body .cSetc.dblock,
.chat_p_body .me_msg_plus.dblock {
  display: block;
}

.chat_p_body .cSetc,
.chat_p_body .i_message_set_container {
  right: 0;
  top: calc(100% + 8px);
}

.chat_p_body .i_message_set_container .i_post_menu_item_out,
.chat_p_body .cSetc .i_post_menu_item_out,
.chat_p_body .me_msg_plus .i_post_menu_item_out {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px !important;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--chat-ink);
}

.chat_p_body .i_message_set_container .i_post_menu_item_out:hover,
.chat_p_body .cSetc .i_post_menu_item_out:hover,
.chat_p_body .me_msg_plus .i_post_menu_item_out:hover {
  background: var(--chat-toolbar);
}

.chat_p_body .chat_middle_container {
  min-width: 0;
  background: linear-gradient(180deg, #f8faff 0%, #f4f7fb 100%);
}

.chat_p_body .chat_conversation_shell,
.chat_p_body .conversations_container,
.chat_p_body .messages_container,
.chat_p_body .msg_wrapper {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
}

.chat_p_body .conversation_box_header {
  position: sticky;
  top: 0;
  z-index: 12;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--chat-border-soft);
  box-shadow: none !important;
}

.chat_p_body .conversation_avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--chat-media);
}

.chat_p_body .conversation_avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.chat_p_body .conversation_user_d {
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.chat_p_body .conversation_user {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 4px;
}

.chat_p_body .c_u_f_nm a {
  display: block;
  color: var(--chat-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.chat_p_body .c_u_time {
  min-height: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--chat-ink-soft);
}

.chat_p_body .c_u_time:empty {
  min-height: 0;
}

.chat_p_body .c_u_time:not(:empty)::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--chat-success);
  flex: 0 0 8px;
}

.chat_p_body .messages_container {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent 28%),
    linear-gradient(180deg, #f8faff 0%, #f3f6fb 100%);
}

.chat_p_body .all_messages {
  flex: 1 1 auto;
  min-height: 0;
  padding: 12px 0 22px;
}

.chat_p_body .all_messages_container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 100%;
}

.chat_p_body .msg {
  position: relative;
  padding: 2px 18px;
  z-index: 1;
}

.chat_p_body .msg.msg-menu-open {
  z-index: 40;
}

.chat_p_body .msg_me,
.chat_p_body .msg_friend {
  position: relative;
  width: fit-content;
  max-width: min(76%, 680px);
  padding: 8px 9px;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  gap: 10px;
  align-items: flex-end;
  box-shadow: none !important;
}

.chat_p_body .msg_me {
  margin-left: auto;
  background: var(--chat-bubble-self);
  border: 1px solid var(--chat-bubble-self-border);
  color: var(--chat-ink);
}

.chat_p_body .msg_friend {
  background: var(--chat-bubble-other);
  border: 1px solid var(--chat-bubble-other-border);
  color: var(--chat-ink);
}

.chat_p_body .msg_o_avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--chat-media);
}

.chat_p_body .msg_o_avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.chat_p_body .msg_txt,
.chat_p_body .msg_txt_sec {
  background: transparent !important;
  color: inherit;
}

.chat_p_body .msg_txt {
  padding: 6px 8px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.chat_p_body .msg_txt_sec {
  padding: 12px;
}

.chat_p_body .msg_txt a {
  color: var(--chat-accent-strong);
}

@media screen and (max-width: 700px) {
  .chat_p_body .msg_me,
  .chat_p_body .msg_friend {
    padding: 7px 8px;
  }

  .chat_p_body .msg_txt {
    padding: 5px 7px;
  }

  .chat_p_body .msg_txt_sec {
    padding: 10px;
  }
}

.chat_p_body .story-reply-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 10px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 14px;
  background: var(--chat-toolbar);
}

.chat_p_body .story-reply-thumb {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--chat-media);
}

.chat_p_body .story-reply-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.chat_p_body .story-reply-meta {
  min-width: 0;
}

.chat_p_body .story-reply-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--chat-ink);
}

.chat_p_body .story-reply-unavailable {
  margin-top: 3px;
  font-size: 12px;
  color: var(--chat-ink-soft);
}

.chat_p_body .mStick,
.chat_p_body .mGifM {
  display: block;
  max-width: min(220px, 100%);
  border-radius: 16px;
}

.chat_p_body .gfIcon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 12px;
  background: var(--chat-toolbar);
  color: var(--chat-warning);
}

.chat_p_body .gfIcon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.chat_p_body .i_post_image_swip_wrapper {
  border-radius: 16px;
  overflow: hidden;
  background: var(--chat-media);
  border: 1px solid var(--chat-border-soft);
}

.chat_p_body .i_post_image_swip_wrapper .i_p_image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 1 !important;
}

.chat_p_body .playbutton {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(23, 32, 51, 0.72);
  color: #ffffff;
}

.chat_p_body .msg_time_me,
.chat_p_body .msg_time_fri {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1px;
  color: var(--chat-ink-soft);
}

.chat_p_body .msg_time_me {
  justify-content: flex-end;
  padding: 0 18px 0 18px;
}

.chat_p_body .msg_time_fri {
  padding: 0 18px 0 62px;
}

.chat_p_body .seenStatus {
  color: inherit;
}

.chat_p_body .seenStatus svg {
  width: 13px;
  height: 13px;
}

.chat_p_body .seenStatus.notSeen {
  opacity: 0.55;
}

.chat_p_body .seenStatus.seen {
  color: var(--chat-accent-strong);
}

.chat_p_body .chat-day-separator {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 16px 0 10px;
}

.chat_p_body .chat-day-separator::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 1px;
  background: var(--chat-border-soft);
}

.chat_p_body .chat-day-separator-label {
  position: relative;
  z-index: 1;
  padding: 6px 12px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 999px;
  background: var(--chat-shell-soft);
  color: var(--chat-ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.chat_p_body .chat-unread-break {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 8px;
}

.chat_p_body .chat-unread-break::before,
.chat_p_body .chat-unread-break::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--chat-border-soft);
}

.chat_p_body .chat-unread-break-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--chat-accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.chat_p_body .me_btns_cont {
  position: absolute;
  top: 8px;
  right: -44px;
  z-index: 45;
  opacity: 0;
}

.chat_p_body .msg_me .me_btns_cont {
  right: auto;
  left: -44px;
}

.chat_p_body .msg:hover .me_btns_cont,
.chat_p_body .msg.msg-menu-open .me_btns_cont {
  opacity: 1;
}

.chat_p_body .me_btns_cont_icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 12px;
  background: var(--chat-panel-elevated);
  color: var(--chat-ink-soft);
}

.chat_p_body .me_btns_cont_icon svg {
  width: 16px;
  height: 16px;
}

.chat_p_body .me_msg_plus,
.chat_p_body .msg:last-child .msg_me .me_btns_cont .me_msg_plus {
  top: auto !important;
  bottom: calc(100% + 8px) !important;
  right: -4px !important;
  min-width: 176px !important;
  max-width: 196px !important;
}

.chat_p_body .secretMessageBgColor {
  background: var(--chat-toolbar);
  border: 1px solid var(--chat-border-soft);
  gap: 12px;
}

.chat_p_body .msg_txt_sec {
  width: 100%;
  align-items: stretch !important;
  gap: 12px;
}

.chat_p_body .album-details {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--chat-ink);
}

.chat_p_body .album-details svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.chat_p_body .unLockMe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--chat-accent);
  border-radius: 12px;
  background: var(--chat-accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.chat_p_body .unLockMe:hover {
  background: var(--chat-accent-strong);
  border-color: var(--chat-accent-strong);
}

.chat_p_body .unlockWarning {
  display: none;
  margin: 6px 18px 0 62px;
  color: var(--chat-danger);
  font-size: 12px;
  font-weight: 500;
}

.chat_p_body .message_send_form_wrapper {
  position: relative;
  flex: 0 0 auto;
  gap: 4px;
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
  background: var(--chat-compose);
  border-top: 1px solid var(--chat-border-soft);
}

.chat_p_body .message_send_form_wrapper .nanos {
  padding: 0;
  background: transparent;
  overflow: visible;
}

.chat_p_body .nanosSecret,
.chat_p_body .message_send_form_wrapper > .tabing_non_justify.flex_,
.chat_p_body .message_form_items,
.chat_p_body .message_send_text {
  width: 100%;
}

.chat_p_body .message_form_items {
  gap: 8px;
  padding: 0;
  align-items: stretch !important;
}

.chat_p_body .i_write_secret_post_price {
  padding: 12px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 16px;
  background: var(--chat-toolbar);
}

.chat_p_body .i_set_subscription_fee {
  min-height: 42px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 14px;
  background: var(--chat-panel-elevated);
}

.chat_p_body .i_subs_currency {
  width: 42px;
  min-width: 42px;
  color: var(--chat-ink-soft);
}

.chat_p_body .i_subs_price input {
  width: 100%;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--chat-ink);
  font-size: 14px;
}

.chat_p_body .i_tip_not {
  margin-top: 8px;
  font-size: 12px;
  color: var(--chat-ink-soft);
}

.chat_p_body .message_text_textarea {
  min-height: 44px;
  padding: 0 44px 0 8px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  background: var(--chat-toolbar);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.chat_p_body .message_text_textarea:focus-within {
  border-color: var(--chat-accent);
  background: #ffffff;
}

.chat_p_body .message_text_textarea textarea.mSize {
  min-height: 42px;
  height: 42px;
  max-height: 124px;
  padding: 10px 4px;
  color: var(--chat-ink);
  font-size: 14px;
  line-height: 1.35;
  overflow-y: auto;
}

.chat_p_body .message_text_textarea textarea.mSize::placeholder {
  color: var(--chat-ink-soft);
}

.chat_p_body .message_send_text {
  padding: 0;
}

.chat_p_body .message_smiley {
  right: 4px;
  bottom: 4px;
}

.chat_p_body .message_smiley .message_form_smiley_plus {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.chat_p_body .message_smiley .message_form_smiley_plus .message_pls {
  padding: 6px;
}

.chat_p_body .message_form_items .message_form_plus,
.chat_p_body .message_form_smiley_plus,
.chat_p_body .nanosSend .message_form_plus {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 14px;
  background: var(--chat-toolbar);
  color: var(--chat-ink-soft);
}

.chat_p_body .message_form_items .message_form_plus:hover,
.chat_p_body .message_form_smiley_plus:hover,
.chat_p_body .nanosSend .message_form_plus:hover {
  background: var(--chat-accent-soft);
  border-color: var(--chat-accent);
  color: var(--chat-accent-strong);
}

.chat_p_body .message_form_plus.sendmes {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
  width: 44px !important;
  min-width: 44px !important;
  height: auto !important;
  min-height: 44px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background: var(--chat-accent) !important;
  border-color: var(--chat-accent) !important;
  color: #ffffff !important;
}

.chat_p_body .message_form_plus.sendmes:hover {
  background: var(--chat-accent-strong) !important;
  border-color: var(--chat-accent-strong) !important;
  color: #ffffff !important;
}

.chat_p_body .message_form_plus.sendmes.send-disabled {
  background: var(--chat-toolbar) !important;
  border-color: var(--chat-border-soft) !important;
  color: var(--chat-ink-soft) !important;
  opacity: 0.45;
  pointer-events: none;
}

.chat_p_body .nanosSend {
  gap: 8px;
  padding: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 0;
  background: transparent;
}

.chat_p_body .nanosSend .message_form_plus {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.chat_p_body .nanosSend .message_form_plus .message_pls {
  padding: 0 !important;
}

.chat_p_body .message_form_plus,
.chat_p_body .message_form_smiley_plus {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.chat_p_body .message_pls {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  line-height: 0;
  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;
}

.chat_p_body .message_pls svg,
.chat_p_body .message_smiley .message_form_smiley_plus .message_pls svg,
.chat_p_body .nanosSend .message_form_plus .message_pls svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

.chat_p_body .message_form_plus.sendmes .message_pls,
.chat_p_body .message_form_plus.sendmes .message_pls svg {
  color: inherit !important;
  fill: currentColor !important;
  opacity: 1 !important;
}

.chat_p_body .fl_btns {
  top: -68px;
  left: 0;
}

.chat_p_body .ch_fl_btns_container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 238px;
  max-width: min(238px, calc(100vw - 24px));
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 14px;
  background: var(--chat-panel-elevated);
}

.chat_p_body .ch_btn_item {
  position: relative;
  width: 100%;
  min-height: 46px;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent !important;
  color: var(--chat-ink);
  overflow: hidden;
}

.chat_p_body .ch_btn_item:hover,
.chat_p_body .ch_btn_item:focus-within {
  background: var(--chat-toolbar) !important;
  border-color: var(--chat-border-soft);
  transform: none;
}

.chat_p_body .ch_attachment_action {
  position: relative;
  width: 100%;
  min-height: 46px;
  padding: 6px 10px;
  border: 0;
  background: transparent;
  color: inherit;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.chat_p_body .ch_fl_btns_container .ch_attachment_action {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
}

.chat_p_body .ch_attachment_icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--chat-accent-soft);
  color: var(--chat-accent-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat_p_body .ch_btn_item form,
.chat_p_body .ch_attachment_icon .ch_svg {
  width: 100%;
  height: 100%;
}

.chat_p_body .ch_attachment_icon .ch_svg {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.chat_p_body .ch_btn_vault_item .ch_attachment_icon {
  background: rgba(246, 81, 105, 0.12);
  color: var(--dizzy-theme-brand-primary, #f65169);
}

.chat_p_body .ch_attachment_icon .ch_svg svg,
.chat_p_body .ch_attachment_icon svg {
  width: 18px;
  height: 18px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  fill: currentColor !important;
  color: currentColor !important;
  stroke: currentColor;
}

.chat_p_body .ch_attachment_text {
  display: block;
  min-width: 0;
}

.chat_p_body .ch_attachment_title {
  display: block;
  overflow: hidden;
  color: var(--chat-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat_p_body .ch_btn_item input.ci_image {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  pointer-events: auto;
  z-index: 3;
}

.chat_p_body .Message_stickersContainer {
  width: 100%;
  height: auto;
  max-height: min(420px, 52vh);
  padding: 12px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 18px;
  background: var(--chat-panel-elevated);
  overflow: hidden;
}

.chat_p_body .Message_stickers_wrapper {
  padding: 0;
}

.chat_p_body .chat_stickers_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-height: calc(min(420px, 52vh) - 24px);
  overflow: auto;
}

.chat_p_body .chat_gif_panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat_p_body .Message_stickers_wrapper .sticker,
.chat_p_body .Message_stickers_wrapper .Message_sticker {
  width: 100%;
  min-height: 84px;
  height: auto;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 14px;
  background: var(--chat-toolbar);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat_p_body .Message_stickers_wrapper .sticker img,
.chat_p_body .Message_stickers_wrapper .Message_sticker img {
  max-width: 100%;
  max-height: 84px;
  object-fit: contain;
}

.chat_p_body .emojis_Container {
  display: grid;
  gap: 14px;
  max-height: calc(min(420px, 52vh) - 24px);
  overflow: auto;
  padding-right: 4px;
}

.chat_p_body .emojis_Container > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chat_p_body .emTitle {
  width: 100%;
  margin-bottom: 2px;
  color: var(--chat-ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chat_p_body .emoji_item_m {
  width: 38px;
  height: 38px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--chat-toolbar);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.chat_p_body .emoji_item_m:hover {
  border-color: var(--chat-accent);
  background: var(--chat-accent-soft);
}

.chat_p_body .giphy_search_bar {
  width: 100%;
  margin-bottom: 10px;
}

.chat_p_body .giphy_search_form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat_p_body .giphy_search_input {
  flex: 1 1 auto;
  min-width: 0;
  background: var(--chat-toolbar);
  border-color: var(--chat-border-soft);
  color: var(--chat-ink);
}

.chat_p_body .giphy_search_input:focus {
  background: #ffffff;
  border-color: var(--chat-accent);
  box-shadow: none;
}

.chat_p_body .giphy_search_btn {
  background: var(--chat-toolbar);
  border-color: var(--chat-border-soft);
  color: var(--chat-ink);
  font-weight: 600;
}

.chat_p_body .giphy_search_btn:hover {
  background: var(--chat-accent-soft);
  border-color: var(--chat-accent);
  color: var(--chat-accent-strong);
  transform: none;
  box-shadow: none;
}

.chat_p_body .giphy_results_container_conversation {
  max-height: calc(min(420px, 52vh) - 70px);
  overflow: auto;
  padding-right: 4px;
}

.chat_p_body .giphy_results_container_conversation .mrGif {
  border: 1px solid var(--chat-border-soft);
  border-radius: 14px;
  background: var(--chat-media);
}

.chat_p_body .giphy_results_container_conversation .mrGif:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--chat-accent);
}

.chat_p_body .no-gif-found {
  background: var(--chat-toolbar);
  border-style: solid;
  border-color: var(--chat-border-soft);
  color: var(--chat-ink-soft);
}

.chat_p_body .i_upload_progress {
  left: 16px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--chat-accent);
}

.chat_p_body .chat_empty {
  flex: 1 1 auto;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.06), transparent 28%),
    linear-gradient(180deg, #f8faff 0%, #f4f7fb 100%);
}

.chat_p_body .chat_empty_state {
  min-height: 100%;
}

.chat_p_body .chat_empty_card {
  width: min(420px, 100%);
  padding: 28px 24px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 24px;
  background: var(--chat-panel-elevated);
  box-shadow: none;
  text-align: center;
}

.chat_p_body .chat_empty_panel {
  width: min(420px, 100%);
  padding: 32px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 28px;
  background: var(--chat-panel-elevated);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.chat_p_body .chat_empty_logo {
  position: relative;
  width: 88px;
  height: 64px;
}

.chat_p_body .chat_empty_state .chat_empty_logo {
  width: 150px;
  max-width: 150px;
  height: 150px;
  margin: 0 auto 14px;
  background-image: url("img/chat.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .92;
}

.chat_p_body .chat_empty_logo span {
  position: absolute;
  display: block;
  border: 1px solid var(--chat-border-strong);
  background: var(--chat-toolbar);
}

.chat_p_body .chat_empty_logo span:nth-child(1) {
  inset: 10px 0 0 22px;
  border-radius: 18px;
}

.chat_p_body .chat_empty_logo span:nth-child(2) {
  width: 40px;
  height: 40px;
  left: 0;
  bottom: 0;
  border-radius: 14px;
  background: var(--chat-panel-elevated);
}

.chat_p_body .chat_empty_logo span:nth-child(3) {
  width: 14px;
  height: 14px;
  right: 8px;
  top: 0;
  border-radius: 999px;
  border-color: #bfd4ff;
  background: var(--chat-accent);
}

.chat_p_body .chat_empty_title {
  color: var(--chat-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.chat_p_body .chat_empty_text {
  color: var(--chat-ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.chat_p_body .chat_empty_actions {
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.chat_p_body .chat_empty_action {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 999px;
  background: var(--chat-toolbar);
  color: var(--chat-ink);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.chat_p_body .live_pp_camera_container {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 26px;
  background: var(--chat-panel-elevated);
  box-shadow: none;
}

.chat_p_body .friendsCam,
.chat_p_body .myCam {
  border: 1px solid var(--chat-border-soft);
  border-radius: 20px;
  overflow: hidden;
  background: #0f172a;
}

.chat_p_body .call_footer_buttons {
  gap: 12px;
  padding-top: 14px;
}

.chat_p_body .call_btn_icon,
.chat_p_body .call_btn_end_icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--chat-border-soft);
  border-radius: 18px;
  background: var(--chat-toolbar);
}

.chat_p_body .call_btn_icon svg,
.chat_p_body .call_btn_end_icon svg {
  width: 20px;
  height: 20px;
}

.chat_p_body .call_btn_end_icon {
  background: #fee2e2;
  border-color: #fecaca;
}

.chat_p_body .blocked_not {
  align-items: center;
  justify-content: center;
  color: var(--chat-ink-soft);
  font-size: 13px;
  font-weight: 500;
}

.chat_p_body .conversation_box_header,
.chat_p_body .i_message_wrapper,
.chat_p_body .message_send_form_wrapper,
.chat_p_body .chat_empty_panel,
.chat_p_body .Message_stickersContainer,
.chat_p_body .live_pp_camera_container {
  box-shadow: none !important;
}

@media screen and (max-width: 1100px) {
  .chat_p_body .chat_left_container {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
  }
}

@media screen and (max-width: 700px) {
  .chat_p_body .i_chat_wrapper {
    min-height: calc(100vh - 78px);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .chat_p_body .chat_left_container.flex_ {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    border-right: 0;
  }

  .chat_p_body .chat_left_container.flex_.chatDisplay {
    display: flex !important;
    width: 100% !important;
  }

  .chat_p_body .chat_left_header {
    padding: 16px;
  }

  .chat_p_body .cList {
    display: flex;
  }

  .chat_p_body .conversation_box_header {
    padding: 14px;
    gap: 10px;
  }

  .chat_p_body .conversation_avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .chat_p_body .c_u_f_nm a {
    font-size: 15px;
  }

  .chat_p_body .all_messages {
    padding: 14px 0 18px;
  }

  .chat_p_body .msg {
    padding: 2px 12px;
  }

  .chat_p_body .msg_me,
  .chat_p_body .msg_friend {
    max-width: calc(100% - 28px);
    padding-right: 42px;
  }

  .chat_p_body .msg_o_avatar {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 10px;
  }

  .chat_p_body .msg_time_fri {
    padding-left: 50px;
  }

  .chat_p_body .me_btns_cont,
  .chat_p_body .msg_me .me_btns_cont {
    top: 6px;
    right: 6px;
    left: auto;
    opacity: 1;
  }

  .chat_p_body .me_btns_cont_icon {
    width: 30px;
    height: 30px;
  }

  .chat_p_body .me_msg_plus,
  .chat_p_body .msg:last-child .msg_me .me_btns_cont .me_msg_plus {
    right: 0 !important;
    min-width: 164px !important;
  }

  .chat_p_body .message_send_form_wrapper {
    gap: 8px;
    padding: 10px 12px calc(12px + env(safe-area-inset-bottom));
  }

  .chat_p_body .message_form_items {
    gap: 6px;
  }

  .chat_p_body .message_text_textarea {
    min-height: 46px;
    border-radius: 16px;
  }

  .chat_p_body .message_text_textarea textarea.mSize {
    min-height: 44px;
    height: 44px;
  }

  .chat_p_body .message_form_plus.sendmes {
    width: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }

  .chat_p_body .nanosSend {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 2px 2px;
    scrollbar-width: thin;
  }

  .chat_p_body .nanosSend .message_form_plus {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }

  .chat_p_body .message_smiley .message_form_smiley_plus {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }

  .chat_p_body .message_pls svg,
  .chat_p_body .message_smiley .message_form_smiley_plus .message_pls svg,
  .chat_p_body .nanosSend .message_form_plus .message_pls svg {
    width: 14px;
    height: 14px;
  }

  .chat_p_body .Message_stickersContainer {
    max-height: 46vh;
  }

  .chat_p_body .chat_empty {
    padding: 18px;
  }

  .chat_p_body .chat_empty_panel {
    width: 100%;
    padding: 24px;
    border-radius: 22px;
  }

  .chat_p_body .live_pp_camera_container {
    margin-top: 0;
    border-radius: 0;
  }
}

.story_image_create_page .story_image_page_header,
.story_image_create_page .story_image_upload_shell,
.story_image_create_page .story_image_existing_section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 249, 252, 0.98) 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: none;
  overflow: hidden;
}

.story_image_create_page .story_image_page_header {
  margin-bottom: 18px;
  padding: 18px 22px;
}

.story_image_create_page .story_image_page_header .live_title_page {
  padding: 0;
}

.story_image_create_page .story_image_page_title_main {
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
}

.story_image_create_page .story_image_page_title_main svg {
  width: 22px;
  height: 22px;
}

.story_image_create_page .story_image_upload_shell {
  margin-bottom: 22px;
  padding: 22px;
}

.story_image_create_page .story_image_upload_area {
  position: relative;
  min-height: 280px;
  padding-top: 0;
  align-items: center;
  justify-content: center;
}

.story_image_create_page .story_image_upload_panel {
  width: 100%;
  min-height: 236px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(246, 81, 105, 0.26);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 249, 252, 0.92) 100%);
  transition: border-color 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.story_image_create_page .story_image_upload_area.is-uploading .story_image_upload_panel {
  opacity: 0.8;
  border-color: rgba(246, 81, 105, 0.4);
}

.story_image_create_page .story_image_upload_area .i_upload_progress {
  top: auto;
  left: 18px;
  right: 18px;
  bottom: 18px;
  width: calc(100% - 36px);
}

.story_image_create_page .story_image_upload_area .dizzy-upload-status {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  margin: 0;
  max-width: 430px;
  width: calc(100% - 64px);
  z-index: 3;
}

.story_image_create_page .upload_story_image {
  width: 210px !important;
  min-height: auto;
}

.story_image_create_page .label_storyUpload {
  display: block;
  height: auto;
}

.story_image_create_page .story-view-item {
  width: 210px !important;
  min-height: 320px;
  max-height: none;
  border-radius: 22px !important;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.story_image_create_page .story_image_upload_panel .story-view-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 18px 22px 18px;
  gap: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.story_image_create_page .story_image_upload_panel .story-bubble {
  --story-size: 126px;
  width: var(--story-size);
  height: var(--story-size);
  margin: 0 auto;
  box-shadow: none;
}

.story_image_create_page .story_image_upload_panel .story-add {
  background: linear-gradient(180deg, #eef2f8 0%, #dde4ef 100%);
  box-shadow: none;
}

.story_image_create_page .story_image_upload_panel .story-add .story-ring {
  background: #ffffff;
}

.story_image_create_page .story_image_upload_panel .story-view-pr-avatar {
  position: relative;
  top: auto;
  left: auto;
  width: 112px;
  height: 112px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.story_image_create_page .story_image_upload_panel .story-add-cta {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story_image_create_page .newSto {
  padding: 54px 16px 16px 16px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.95);
}

.story_image_create_page .story_image_upload_panel .newSto {
  position: static;
  width: 100%;
  padding: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #000000;
}

.story_image_create_page .plstr {
  width: 48px;
  height: 48px;
  box-shadow: none;
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.story_image_create_page .story_image_upload_panel .plstr {
  position: relative;
  width: 32px;
  height: 32px;
  margin: 0;
  border: none;
  background: #3b6ff4;
}

.story_image_create_page .story_image_upload_panel .plstr::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #ffffff;
}

.story_image_create_page .story_image_upload_panel .plstr svg {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  fill: #3b6ff4;
}

.story_image_create_page .i_uploading_not_story {
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  color: #000000;
}

.story_image_create_page .story_image_upload_area.is-uploading .i_uploading_not_story {
  display: flex !important;
}

.story_image_create_page .story_image_existing_section {
  padding: 22px;
}

.story_image_create_page .story_image_existing_section .live_title_page {
  padding: 0 0 18px 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.story_image_create_page .story_image_section_heading {
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.story_image_create_page .story_image_section_heading svg {
  width: 20px;
  height: 20px;
}

.story_image_create_page .story_image_section_count {
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: #000000;
  font-size: 13px;
  font-weight: 700;
}

.story_image_create_page .story_image_draft_list {
  padding-top: 18px;
}

.story_image_create_page .story_image_empty_state {
  margin-top: 18px;
  padding: 28px 20px;
  border: 1px dashed rgba(15, 23, 42, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  text-align: center;
}

.story_image_create_page .story_image_empty_icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px auto;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.story_image_create_page .story_image_empty_icon svg {
  width: 24px;
  height: 24px;
  fill: #f65169;
}

.story_image_create_page .story_image_empty_text {
  max-width: 340px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.55;
  color: #5b667a;
  font-weight: 500;
}

.story_image_create_page .non-shared-yet {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story_image_create_page .uploaded_storie_container {
  margin-bottom: 0;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 252, 0.9) 100%);
  box-shadow: none;
  overflow: hidden;
}

.story_image_create_page .shared_storie_time {
  padding: 2px 0 14px 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: transparent;
  color: #65676b;
}

.story_image_create_page .shared_storie_time svg {
  margin-right: 8px;
  fill: #65676b;
}

.story_image_create_page .dmyStory {
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: none;
}

.story_image_create_page .dmyStory .i_h_in {
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.story_image_create_page .dmyStory_extra {
  top: 60px;
}

.story_image_create_page .dmyStory:hover {
  background: #138ff5;
  box-shadow: none;
  transform: none;
}

.story_image_create_page .uploaded_storie_image {
  min-height: clamp(380px, 62vw, 560px);
  height: clamp(380px, 62vw, 560px);
  max-height: none;
  border-radius: 20px !important;
  background: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.story_image_create_page .uploaded_storie_before {
  border-radius: 20px !important;
}

.story_image_create_page .uploaded_storie_image img,
.story_image_create_page .uploaded_storie_image video {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.story_image_create_page .uploaded_storie_image video {
  width: 100%;
  height: 100%;
}

.story_image_create_page .add_a_text {
  padding-top: 16px;
}

.story_image_create_page .uploaded_storie_container .add_my_text {
  min-height: 88px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 252, 0.92) 100%);
  box-shadow: none;
}

.story_image_create_page .uploaded_storie_container .add_my_text::placeholder {
  color: rgba(101, 103, 107, 0.8);
}

.story_image_create_page .uploaded_storie_container .add_my_text:focus {
  outline: none;
  border-color: rgba(19, 143, 245, 0.34);
  box-shadow: 0 0 0 4px rgba(19, 143, 245, 0.1);
}

.story_image_create_page .story_options {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 249, 252, 0.78) 100%);
  box-shadow: none;
}

.story_image_create_page .story_option_group {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.story_image_create_page .story_option_group + .story_option_group {
  margin-top: 12px;
}

.story_image_create_page .story_option_label {
  margin-bottom: 11px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(101, 103, 107, 0.9);
}

.story_image_create_page .story_overlay_fields,
.story_image_create_page .story_quick_reply_inputs {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.story_image_create_page .story_overlay_sticker_field,
.story_image_create_page .story_audio_field,
.story_image_create_page .story_option_select,
.story_image_create_page .story_privacy,
.story_image_create_page .story_overlay_fields input,
.story_image_create_page .story_quick_reply_inputs input {
  min-height: 48px;
  padding: 0 14px;
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  font-size: 13px;
  box-shadow: none;
}

.story_image_create_page .story_privacy,
.story_image_create_page .story_overlay_fields input,
.story_image_create_page .story_quick_reply_inputs input {
  color: #000000;
}

.story_image_create_page .story_privacy,
.story_image_create_page .story_option_select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  font-weight: 600;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.5 5.25L7 8.75L10.5 5.25' stroke='%2365676B' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
  cursor: pointer;
}

.story_image_create_page .story_privacy:focus,
.story_image_create_page .story_overlay_fields input:focus,
.story_image_create_page .story_quick_reply_inputs input:focus {
  border-color: rgba(19, 143, 245, 0.34);
  box-shadow: 0 0 0 4px rgba(19, 143, 245, 0.1);
  background: #ffffff;
}

.story_image_create_page .story_option_group.story_quick_replies_toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.story_image_create_page .story_option_group.story_quick_replies_toggle .story_option_label {
  margin-bottom: 0;
}

.story_image_create_page .story_quick_replies_trigger {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(19, 143, 245, 0.08);
  border-color: rgba(19, 143, 245, 0.14);
  color: #1170c4;
  font-size: 12px;
  font-weight: 700;
}

.story_image_create_page .story_quick_replies_trigger:hover {
  background: rgba(19, 143, 245, 0.12);
  border-color: rgba(19, 143, 245, 0.18);
}

.story_image_create_page .story_sticker_trigger,
.story_image_create_page .story_audio_trigger,
.story_image_create_page .story_sticker_clear,
.story_image_create_page .story_audio_clear,
.story_image_create_page .story_quick_replies_trigger {
  box-shadow: none;
}

.story_image_create_page .story_sticker_trigger:hover,
.story_image_create_page .story_audio_trigger:hover,
.story_image_create_page .story_sticker_clear:hover,
.story_image_create_page .story_audio_clear:hover,
.story_image_create_page .story_quick_replies_trigger:hover {
  transform: none;
  box-shadow: none;
}

.story_image_create_page .share_story_btn_cnt {
  margin-top: 16px;
  min-height: 52px;
  padding: 13px 18px;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  background: #138ff5;
  box-shadow: none;
  font-weight: 700;
}

.story_image_create_page .share_story_btn_cnt svg {
  margin-right: 0;
}

.story_image_create_page .share_story_btn_cnt:hover {
  background: #1170c4;
}

.story_image_create_page .share_story_btn_cnt.is-submitting {
  opacity: 0.7;
  cursor: progress;
}

.story_text_create_page .story_text_page_header,
.story_text_create_page .story_text_editor_shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 249, 252, 0.98) 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: none;
  overflow: hidden;
}

.story_text_create_page .story_text_page_header {
  margin-bottom: 18px;
  padding: 18px 22px;
}

.story_text_create_page .story_text_page_header .live_title_page {
  padding: 0;
}

.story_text_create_page .story_text_page_title_block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.story_text_create_page .story_text_page_title_main {
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #14171d;
}

.story_text_create_page .story_text_page_title_main svg {
  width: 22px;
  height: 22px;
}

.story_text_create_page .story_text_page_title_sub {
  font-size: 13px;
  line-height: 1.5;
  color: #5b667a;
  font-weight: 500;
}

.story_text_create_page .story_text_editor_shell {
  padding: 22px;
}

.story_text_create_page .story_text_editor_container {
  width: 100%;
}

.story_text_create_page .create_text_story_bg_wrapper.story_text_workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.story_text_create_page .story_text_background_panel,
.story_text_create_page .story_text_input_panel,
.story_text_create_page .story_text_preview_shell {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 252, 0.92) 100%);
  box-shadow: none;
}

.story_text_create_page .story_text_background_panel {
  padding: 18px;
  position: static;
}

.story_text_create_page .story_text_panel_heading {
  margin-bottom: 14px;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(91, 102, 122, 0.9);
}

.story_text_create_page .story_text_background_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(44px, 44px));
  gap: 10px;
  justify-content: flex-start;
}

.story_text_create_page .st_bg_cont {
  padding: 0;
}

.story_text_create_page .story_text_background_panel .st_img_wrapper {
  width: 100%;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: none;
  transform: none;
}

.story_text_create_page .story_text_background_panel .st_img_wrapper:hover {
  box-shadow: none;
  transform: translateY(-1px);
}

.story_text_create_page .story_text_background_panel .choosed_bg {
  border-color: rgba(59, 111, 244, 0.42);
  box-shadow: 0 0 0 3px rgba(59, 111, 244, 0.12);
  transform: none;
}

.story_text_create_page .story_text_main_stage {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.story_text_create_page .story_text_main_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.story_text_create_page .typing_textarea_story.story_text_input_panel,
.story_text_create_page .choosed_image.story_text_preview_shell {
  margin-top: 0;
  padding: 18px;
}

.story_text_create_page .typing_textarea_story.story_text_input_panel {
  min-height: 100%;
}

.story_text_create_page .story_text_input_panel .strt_typing {
  min-height: 120px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  color: #14171d;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  resize: vertical;
  box-shadow: none;
}

.story_text_create_page .story_text_input_panel .strt_typing::placeholder {
  color: rgba(91, 102, 122, 0.82);
}

.story_text_create_page .story_text_input_panel .strt_typing:focus {
  outline: none;
  border-color: rgba(19, 143, 245, 0.34);
  box-shadow: 0 0 0 4px rgba(19, 143, 245, 0.1);
}

.story_text_create_page .choosed_image.story_text_preview_shell {
  display: flex;
  flex-direction: column;
}

.story_text_create_page .story_text_preview_card {
  position: relative;
  width: 100%;
  min-height: 380px;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #101828;
  aspect-ratio: 9/16;
}

.story_text_create_page .story_text_preview_card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  box-shadow: none;
}

.story_text_create_page .story_text_preview_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.18) 100%);
  z-index: 1;
}

.story_text_create_page .story_text_preview_card .text_typed {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  text-align: center;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(15, 23, 42, 0.22);
  white-space: break-spaces;
  word-break: break-word;
}

.story_text_create_page .story_text_preview_card .text_typed.is-empty {
  color: rgba(255, 255, 255, 0.76);
}

.story_text_create_page .story_text_options {
  margin-top: 0;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 249, 252, 0.78) 100%);
  box-shadow: none;
}

.story_text_create_page .story_text_options .story_option_group {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.story_text_create_page .story_text_options .story_option_group + .story_option_group {
  margin-top: 12px;
}

.story_text_create_page .story_text_options .story_option_label {
  margin-bottom: 11px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(91, 102, 122, 0.9);
}

.story_text_create_page .story_text_options .story_overlay_fields,
.story_text_create_page .story_text_options .story_quick_reply_inputs {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.story_text_create_page .story_text_options .story_overlay_sticker_field,
.story_text_create_page .story_text_options .story_audio_field,
.story_text_create_page .story_text_options .story_option_select,
.story_text_create_page .story_text_options .story_privacy,
.story_text_create_page .story_text_options .story_overlay_fields input,
.story_text_create_page .story_text_options .story_quick_reply_inputs input {
  min-height: 48px;
  padding: 0 14px;
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  font-size: 13px;
  box-shadow: none;
}

.story_text_create_page .story_text_options .story_privacy,
.story_text_create_page .story_text_options .story_overlay_fields input,
.story_text_create_page .story_text_options .story_quick_reply_inputs input {
  color: #14171d;
}

.story_text_create_page .story_text_options .story_privacy,
.story_text_create_page .story_text_options .story_option_select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  font-weight: 600;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.5 5.25L7 8.75L10.5 5.25' stroke='%2365676B' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
  cursor: pointer;
}

.story_text_create_page .story_text_options .story_privacy:focus,
.story_text_create_page .story_text_options .story_overlay_fields input:focus,
.story_text_create_page .story_text_options .story_quick_reply_inputs input:focus {
  border-color: rgba(19, 143, 245, 0.34);
  box-shadow: 0 0 0 4px rgba(19, 143, 245, 0.1);
  background: #ffffff;
}

.story_text_create_page .story_text_options .story_option_group.story_quick_replies_toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.story_text_create_page .story_text_options .story_option_group.story_quick_replies_toggle .story_option_label {
  margin-bottom: 0;
}

.story_text_create_page .story_text_options .story_quick_replies_trigger {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(19, 143, 245, 0.08);
  border-color: rgba(19, 143, 245, 0.14);
  color: #1170c4;
  font-size: 12px;
  font-weight: 700;
  box-shadow: none;
}

.story_text_create_page .story_text_options .story_quick_replies_trigger:hover {
  background: rgba(19, 143, 245, 0.12);
  border-color: rgba(19, 143, 245, 0.18);
  box-shadow: none;
  transform: none;
}

.story_text_create_page .story_text_options .story_sticker_trigger,
.story_text_create_page .story_text_options .story_audio_trigger,
.story_text_create_page .story_text_options .story_sticker_clear,
.story_text_create_page .story_text_options .story_audio_clear {
  box-shadow: none;
}

.story_text_create_page .story_text_publish_wrap {
  padding-top: 0;
  padding-bottom: 0;
}

.story_text_create_page .story_text_publish_wrap .share_text_story {
  margin-top: 0;
  min-height: 52px;
  padding: 13px 18px;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  background: #138ff5;
  box-shadow: none;
  font-weight: 700;
}

.story_text_create_page .story_text_publish_wrap .share_text_story svg {
  margin-right: 0;
}

.story_text_create_page .story_text_publish_wrap .share_text_story:hover {
  background: #1170c4;
  box-shadow: none;
  transform: none;
}

.story_text_create_page .story_text_publish_wrap .share_text_story.is-submitting {
  opacity: 0.7;
  cursor: progress;
}

.delete_story_modal .delete_confirm_modal_content {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid #e6eaf2;
}

.delete_story_modal .delete_confirm_modal_body {
  color: #5b667a;
}

@media screen and (max-width: 700px) {
  .story_image_create_page .story_image_page_header,
  .story_image_create_page .story_image_upload_shell,
  .story_image_create_page .story_image_existing_section {
    border-radius: 20px;
  }

  .story_image_create_page .story_image_page_header,
  .story_image_create_page .story_image_upload_shell,
  .story_image_create_page .story_image_existing_section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .story_image_create_page .story_image_page_title_main {
    font-size: 20px;
  }

  .story_image_create_page .story_image_upload_area {
    min-height: 240px;
  }

  .story_image_create_page .story_image_upload_panel {
    min-height: 212px;
    padding: 12px;
  }

  .story_image_create_page .upload_story_image,
  .story_image_create_page .story-view-item {
    width: 180px !important;
  }

  .story_image_create_page .story-view-item {
    min-height: 280px;
  }

  .story_image_create_page .uploaded_storie_container {
    padding: 12px;
    border-radius: 20px;
  }

  .story_image_create_page .uploaded_storie_image {
    min-height: clamp(320px, 92vw, 460px);
    height: clamp(320px, 92vw, 460px);
    border-radius: 18px !important;
  }

  .story_image_create_page .story_options,
  .story_image_create_page .story_option_group {
    border-radius: 16px;
  }

  .story_image_create_page .story_overlay_fields,
  .story_image_create_page .story_quick_reply_inputs {
    grid-template-columns: 1fr;
  }

  .story_image_create_page .story_image_section_count {
    min-width: 30px;
    height: 30px;
    padding: 0 10px;
  }

  .story_text_create_page .story_text_page_header,
  .story_text_create_page .story_text_editor_shell {
    border-radius: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .story_text_create_page .story_text_page_title_main {
    font-size: 17px;
  }

  .story_text_create_page .create_text_story_bg_wrapper.story_text_workspace,
  .story_text_create_page .story_text_main_grid {
    grid-template-columns: 1fr;
  }

  .story_text_create_page .story_text_background_panel {
    position: static;
  }

  .story_text_create_page .story_text_background_grid {
    grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
  }

  .story_text_create_page .story_text_input_panel,
  .story_text_create_page .choosed_image.story_text_preview_shell,
  .story_text_create_page .story_text_options,
  .story_text_create_page .story_text_options .story_option_group {
    border-radius: 18px;
  }

  .story_text_create_page .story_text_input_panel .strt_typing {
    min-height: 120px;
    border-radius: 18px;
  }

  .story_text_create_page .story_text_preview_card {
    min-height: 320px;
    border-radius: 22px;
  }

  .story_text_create_page .story_text_preview_card .text_typed {
    font-size: 24px;
    padding: 28px 22px;
  }

  .story_text_create_page .story_text_options .story_overlay_fields,
  .story_text_create_page .story_text_options .story_quick_reply_inputs {
    grid-template-columns: 1fr;
  }
}

.settings_main_wrapper.settings_video_call_page {
  --settings-video-call-border: rgba(15, 23, 42, 0.08);
  --settings-video-call-border-strong: rgba(15, 23, 42, 0.12);
  --settings-video-call-surface: #ffffff;
  --settings-video-call-surface-muted: #f8fafc;
  --settings-video-call-surface-soft: #f3f6fb;
  --settings-video-call-text: #172033;
  --settings-video-call-text-muted: #66758f;
  --settings-video-call-accent: #f65169;
  --settings-video-call-accent-soft: rgba(246, 81, 105, 0.1);
  --settings-video-call-success-bg: rgba(47, 122, 51, 0.1);
  --settings-video-call-success-text: #2f7a33;
  --settings-video-call-warning-bg: rgba(176, 113, 0, 0.1);
  --settings-video-call-warning-text: #9a6500;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-video-call-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 30%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_header_meta {
  display: grid;
  gap: 10px;
  max-width: 780px;
  min-width: 0;
}

.settings_main_wrapper.settings_video_call_page .i_settings_wrapper_title_txt {
  color: var(--settings-video-call-text);
}

.settings_main_wrapper.settings_video_call_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-video-call-accent-soft);
  fill: var(--settings-video-call-accent);
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_header_note {
  color: var(--settings-video-call-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_fee_note {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--settings-video-call-border);
  border-radius: 999px;
  background: var(--settings-video-call-surface-soft);
  color: var(--settings-video-call-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_body {
  padding: 22px;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--settings-video-call-border);
  border-radius: 26px;
  background: var(--settings-video-call-surface);
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_card_head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_card_icon {
  display: grid;
  place-items: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  border: 1px solid var(--settings-video-call-border);
  border-radius: 16px;
  background: var(--settings-video-call-surface-soft);
  color: var(--settings-video-call-accent);
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_card_icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_card_meta {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_card_title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--settings-video-call-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_inline_success {
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--settings-video-call-success-bg);
  color: var(--settings-video-call-success-text);
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_card_copy {
  color: var(--settings-video-call-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_warning,
.settings_main_wrapper.settings_video_call_page .settings_video_call_success,
.settings_main_wrapper.settings_video_call_page .settings_video_call_earning {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_warning {
  border: 1px solid rgba(176, 113, 0, 0.18);
  background: var(--settings-video-call-warning-bg);
  color: var(--settings-video-call-warning-text);
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_success,
.settings_main_wrapper.settings_video_call_page .settings_video_call_earning {
  border: 1px solid rgba(47, 122, 51, 0.18);
  background: var(--settings-video-call-success-bg);
  color: var(--settings-video-call-success-text);
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_earning span {
  font-weight: 700;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_input_shell {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(180px, auto);
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--settings-video-call-border-strong);
  border-radius: 20px;
  background: var(--settings-video-call-surface-muted);
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_input_icon,
.settings_main_wrapper.settings_video_call_page .settings_video_call_preview {
  min-height: 62px;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_input_icon {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--settings-video-call-border);
  background: transparent;
  color: var(--settings-video-call-text-muted);
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_input_icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_input_wrap {
  width: 100%;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_input {
  width: 100%;
  height: 62px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--settings-video-call-text);
  font-size: 15px;
  font-weight: 600;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_input::placeholder {
  color: var(--settings-video-call-text-muted);
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_preview {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px 18px;
  border-left: 1px solid var(--settings-video-call-border);
  background: rgba(255, 255, 255, 0.7);
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_preview_label {
  color: var(--settings-video-call-text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_preview_value {
  color: var(--settings-video-call-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_footer {
  padding-top: 0;
}

.settings_main_wrapper.settings_video_call_page .settings_video_call_save_btn {
  min-width: 180px;
  border-radius: 16px;
}

@media (max-width: 860px) {
  .settings_main_wrapper.settings_video_call_page .settings_video_call_input_shell {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .settings_main_wrapper.settings_video_call_page .settings_video_call_preview {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid var(--settings-video-call-border);
  }
}

@media (max-width: 700px) {
  .settings_main_wrapper.settings_video_call_page .settings_video_call_header,
  .settings_main_wrapper.settings_video_call_page .settings_video_call_body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .settings_main_wrapper.settings_video_call_page .settings_video_call_card {
    padding: 18px;
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_video_call_page .settings_video_call_card_head {
    align-items: center;
  }

.settings_main_wrapper.settings_video_call_page .settings_video_call_fee_note,
  .settings_main_wrapper.settings_video_call_page .settings_video_call_save_btn {
    width: 100%;
  }
}

.settings_main_wrapper.settings_block_country_page {
  --settings-block-country-border: rgba(15, 23, 42, 0.08);
  --settings-block-country-border-strong: rgba(15, 23, 42, 0.12);
  --settings-block-country-surface: #ffffff;
  --settings-block-country-surface-muted: #f8fafc;
  --settings-block-country-surface-soft: #f3f6fb;
  --settings-block-country-text: #172033;
  --settings-block-country-text-muted: #66758f;
  --settings-block-country-accent: #f65169;
  --settings-block-country-accent-soft: rgba(246, 81, 105, 0.1);
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-block-country-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 30%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_header_meta {
  display: grid;
  gap: 10px;
  max-width: 820px;
  min-width: 0;
}

.settings_main_wrapper.settings_block_country_page .i_settings_wrapper_title_txt {
  color: var(--settings-block-country-text);
}

.settings_main_wrapper.settings_block_country_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-block-country-accent-soft);
  fill: var(--settings-block-country-accent);
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_header_note {
  color: var(--settings-block-country-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_selected_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--settings-block-country-border);
  border-radius: 18px;
  background: var(--settings-block-country-surface-soft);
  color: var(--settings-block-country-text);
  font-size: 18px;
  font-weight: 700;
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_body {
  padding: 22px;
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_groups {
  display: grid;
  gap: 18px;
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_group {
  padding: 18px;
  border: 1px solid var(--settings-block-country-border);
  border-radius: 24px;
  background: var(--settings-block-country-surface);
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_letter {
  padding: 0;
  margin-bottom: 14px;
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_letter .i_a_body {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--settings-block-country-border);
  border-radius: 14px;
  background: var(--settings-block-country-surface-soft);
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_letter .i_h_in {
  color: var(--settings-block-country-text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  float: none;
}

.settings_main_wrapper.settings_block_country_page .i_block_country_item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid var(--settings-block-country-border);
  border-radius: 999px;
  background: var(--settings-block-country-surface-muted);
  color: var(--settings-block-country-text);
  float: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.settings_main_wrapper.settings_block_country_page .i_block_country_item:hover {
  transform: none;
  color: var(--settings-block-country-text);
  background: rgba(246, 81, 105, 0.08);
  border-color: rgba(246, 81, 105, 0.16);
}

.settings_main_wrapper.settings_block_country_page .i_block_country_item.chsed {
  border-color: rgba(246, 81, 105, 0.18);
  background: rgba(246, 81, 105, 0.12);
  color: var(--settings-block-country-accent);
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_item_name {
  white-space: nowrap;
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_item_check {
  display: none;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: currentColor;
}

.settings_main_wrapper.settings_block_country_page .settings_block_country_item_check svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.settings_main_wrapper.settings_block_country_page .i_block_country_item.chsed .settings_block_country_item_check {
  display: inline-flex;
}

@media (max-width: 700px) {
  .settings_main_wrapper.settings_block_country_page .settings_block_country_header,
  .settings_main_wrapper.settings_block_country_page .settings_block_country_body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .settings_main_wrapper.settings_block_country_page .settings_block_country_group {
    padding: 16px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_block_country_page .settings_block_country_selected_badge {
    width: 100%;
  }
}

.settings_left_menu.settings_sidebar {
  align-self: flex-start;
}

.settings_left_menu.settings_sidebar .settings_sidebar_panel {
  position: sticky;
  top: 92px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  scrollbar-width: thin;
}

.settings_left_menu.settings_sidebar .settings_sidebar_title {
  padding: 4px 4px 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.settings_left_menu.settings_sidebar .settings_sidebar_sections {
  gap: 14px;
}

.settings_left_menu.settings_sidebar .settings_sidebar_section_title {
  padding: 0 4px;
  margin-bottom: 8px;
  background: transparent;
  color: #6b7285;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.settings_left_menu.settings_sidebar .settings_sidebar_section {
  padding: 8px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  background: rgba(243, 246, 251, 0.85);
}

.settings_left_menu.settings_sidebar .settings_sidebar_section a {
  display: block;
}

.settings_left_menu.settings_sidebar .settings_sidebar_section a + a {
  margin-top: 6px;
}

.settings_left_menu.settings_sidebar .settings_sidebar_item {
  position: relative;
  min-height: 48px;
  padding: 10px 12px;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  background: transparent;
  color: #4f5d75;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.settings_left_menu.settings_sidebar .settings_sidebar_item:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.08);
}

.settings_left_menu.settings_sidebar .settings_sidebar_item svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-right: 0;
  padding: 8px;
  box-sizing: content-box;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: rgba(15, 23, 42, 0.05);
  fill: #4f5d75;
  transition: background-color 0.2s ease, fill 0.2s ease;
}

.settings_left_menu.settings_sidebar .settings_sidebar_item.active_p {
  border-color: rgba(246, 81, 105, 0.16);
  background: rgba(246, 81, 105, 0.1);
  color: #f65169 !important;
  font-weight: 700 !important;
  box-shadow: inset 0 0 0 1px rgba(246, 81, 105, 0.03);
}

.settings_left_menu.settings_sidebar .settings_sidebar_item.active_p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: #f65169;
}

.settings_left_menu.settings_sidebar .settings_sidebar_item.active_p svg {
  opacity: 1;
  background: rgba(246, 81, 105, 0.14);
  fill: #f65169 !important;
}

.settings_left_menu.settings_sidebar .settings_sidebar_mobile_toggle {
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: #242526;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.settings_left_menu.settings_sidebar .settings_sidebar_mobile_toggle svg {
  width: 20px;
  height: 20px;
  margin-right: 0;
  fill: #f65169;
}

@media only screen and (max-width: 700px) {
  .settings_left_menu.settings_sidebar .settings_sidebar_panel {
    position: static;
    top: auto;
    padding: 14px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  }

  .settings_left_menu.settings_sidebar .settings_sidebar_title {
    font-size: 22px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .settings_left_menu.settings_sidebar .settings_sidebar_section {
    border-radius: 18px;
    -webkit-border-radius: 18px;
  }

  .settings_left_menu.settings_sidebar .settings_sidebar_item {
    min-height: 46px;
    padding: 10px 12px;
  }

  .settings_left_menu.settings_sidebar .settings_sidebar_mobile_toggle {
    max-width: 360px;
    padding: 0 18px;
    border-radius: 18px;
    -webkit-border-radius: 18px;
  }
}

.settings_main_wrapper.settings_purchased_points_page {
  --settings-purchased-surface: #ffffff;
  --settings-purchased-surface-soft: #fbfcff;
  --settings-purchased-surface-muted: #f5f7fb;
  --settings-purchased-surface-strong: #eef3fa;
  --settings-purchased-border: #e2e8f2;
  --settings-purchased-border-strong: #d5deea;
  --settings-purchased-text: #172033;
  --settings-purchased-text-muted: #6f7d92;
  --settings-purchased-text-soft: #8d98ab;
  --settings-purchased-accent: #f65169;
  --settings-purchased-accent-soft: rgba(246, 81, 105, 0.1);
  --settings-purchased-action: #0f2442;
  --settings-purchased-action-hover: #162d4f;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_shell {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow: hidden;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_header {
  display: grid;
  gap: 22px;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-purchased-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 30%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_header_main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_header_copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
  min-width: 0;
}

.settings_main_wrapper.settings_purchased_points_page .i_settings_wrapper_title_txt {
  color: var(--settings-purchased-text);
}

.settings_main_wrapper.settings_purchased_points_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-purchased-accent-soft);
  fill: var(--settings-purchased-accent);
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_header_note {
  max-width: 680px;
  color: var(--settings-purchased-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_summary_card {
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid var(--settings-purchased-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_summary_value {
  color: var(--settings-purchased-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_summary_label {
  margin-top: 4px;
  color: var(--settings-purchased-text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_body {
  min-width: 0;
  overflow-x: hidden;
  padding: 22px;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_table_frame {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--settings-purchased-border);
  border-radius: 28px;
  background: var(--settings-purchased-surface-muted);
  overflow: hidden;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_table_scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_table_inner {
  width: max-content;
  min-width: 100%;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_table_head {
  display: grid;
  grid-template-columns: 90px minmax(220px, 1.5fr) 120px 130px 190px 170px;
  gap: 0;
  padding: 0 22px;
  border-bottom: 1px solid var(--settings-purchased-border);
  background: var(--settings-purchased-surface-soft);
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_head_cell {
  padding: 14px 12px;
  color: var(--settings-purchased-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_table_body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_row {
  display: grid;
  grid-template-columns: 90px minmax(220px, 1.5fr) 120px 130px 190px 170px;
  gap: 0;
  align-items: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: var(--settings-purchased-surface);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_row:hover {
  border-color: var(--settings-purchased-border);
  background: var(--settings-purchased-surface-soft);
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_cell {
  min-width: 0;
  padding: 16px 10px;
  color: var(--settings-purchased-text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_mobile_label {
  display: none;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_id {
  display: inline-flex;
  align-items: center;
  color: var(--settings-purchased-text);
  font-weight: 800;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_plan_name {
  color: var(--settings-purchased-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_plan_meta {
  margin-top: 4px;
  color: var(--settings-purchased-text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_amount {
  color: var(--settings-purchased-text);
  font-weight: 800;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.1;
  white-space: nowrap;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_status.is-completed {
  border-color: #d9e9df;
  background: #f1f8f3;
  color: #376f47;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_status.is-pending {
  border-color: #f3dfbf;
  background: #fff8ed;
  color: #b67317;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_status.is-declined {
  border-color: #efd0d0;
  background: #fff2f2;
  color: #bc4747;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_invoice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--settings-purchased-border);
  border-radius: 999px;
  background: var(--settings-purchased-surface-soft);
  color: var(--settings-purchased-text);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_invoice:hover {
  border-color: var(--settings-purchased-border-strong);
  background: var(--settings-purchased-surface-strong);
  color: var(--settings-purchased-text);
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_invoice_empty {
  color: var(--settings-purchased-text-soft);
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_empty_state {
  min-height: 340px;
  margin: 0;
  padding: 34px 24px;
  border: 1px solid var(--settings-purchased-border);
  border-radius: 28px;
  background: radial-gradient(circle at top center, rgba(246, 81, 105, 0.08), transparent 42%), linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_empty_inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 420px;
  text-align: center;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_empty_state .no_c_icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0;
  border: 1px solid var(--settings-purchased-border);
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(246, 81, 105, 0.12), transparent 72%), var(--settings-purchased-surface);
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_empty_state .no_c_icon svg {
  width: 42px;
  height: 42px;
  fill: #7d89a5;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_empty_title {
  margin-top: 0;
  color: var(--settings-purchased-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_empty_state .n_c_t {
  color: var(--settings-purchased-text-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_footer {
  padding: 0 24px 24px;
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_pagination li a {
  border-color: var(--settings-purchased-border);
  background: var(--settings-purchased-surface-soft);
  color: var(--settings-purchased-text);
}

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_pagination li a:hover,
.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_pagination li.active a {
  border-color: var(--settings-purchased-action);
  background: var(--settings-purchased-action);
  color: #ffffff;
}

@media only screen and (max-width: 1024px) {
  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_table_head,
  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_row {
    grid-template-columns: 82px minmax(180px, 1.4fr) 110px 120px 180px 150px;
  }
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_header {
    padding: 20px 18px 18px;
    gap: 16px;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_summary {
    gap: 10px;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_summary_card {
    padding: 14px;
    border-radius: 16px;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_summary_value {
    font-size: 20px;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_body {
    padding: 16px;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_table_frame {
    border-width: 1px;
    border-radius: 22px;
    background: var(--settings-purchased-surface-muted);
    overflow: hidden;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_table_scroll {
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_table_inner {
    width: max-content;
    min-width: 860px;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_table_head {
    display: grid;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_table_body {
    gap: 8px;
    padding: 8px;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_row {
    grid-template-columns: 82px minmax(180px, 1.4fr) 110px 120px 180px 150px;
    gap: 0;
    padding: 0 14px;
    border-color: var(--settings-purchased-border);
    border-radius: 20px;
    background: var(--settings-purchased-surface);
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_cell {
    padding: 14px 10px;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_mobile_label {
    display: none;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_status,
  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_invoice {
    width: auto;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_empty_state {
    min-height: 240px;
    padding: 28px 18px;
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_empty_state .no_c_icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_empty_state .no_c_icon svg {
    width: 36px;
    height: 36px;
  }

  .settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_empty_title {
    font-size: 20px;
  }

.settings_main_wrapper.settings_purchased_points_page .settings_purchased_points_footer {
  padding: 0 16px 16px;
}
}

.settings_main_wrapper.settings_subscriptions_page {
  --settings-subscriptions-surface: #ffffff;
  --settings-subscriptions-surface-soft: #fbfcff;
  --settings-subscriptions-surface-muted: #f5f7fb;
  --settings-subscriptions-surface-strong: #eef3fa;
  --settings-subscriptions-border: #e2e8f2;
  --settings-subscriptions-border-strong: #d5deea;
  --settings-subscriptions-text: #172033;
  --settings-subscriptions-text-muted: #6f7d92;
  --settings-subscriptions-text-soft: #8d98ab;
  --settings-subscriptions-accent: #f65169;
  --settings-subscriptions-accent-soft: rgba(246, 81, 105, 0.1);
  --settings-subscriptions-button: #0f2442;
  --settings-subscriptions-button-hover: #162d4f;
  --settings-subscriptions-button-soft: #eef3ff;
  --settings-subscriptions-button-soft-text: #223a67;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_shell {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-subscriptions-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 30%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_header_meta {
  display: grid;
  gap: 10px;
  max-width: 760px;
  min-width: 0;
}

.settings_main_wrapper.settings_subscriptions_page .i_settings_wrapper_title_txt {
  color: var(--settings-subscriptions-text);
}

.settings_main_wrapper.settings_subscriptions_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-subscriptions-accent-soft);
  fill: var(--settings-subscriptions-accent);
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_header_note {
  max-width: 680px;
  color: var(--settings-subscriptions-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_total_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--settings-subscriptions-border);
  border-radius: 999px;
  background: var(--settings-subscriptions-surface-muted);
  color: var(--settings-subscriptions-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_body {
  min-width: 0;
  overflow-x: hidden;
  padding: 22px;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_table_frame {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--settings-subscriptions-border);
  border-radius: 28px;
  background: var(--settings-subscriptions-surface-muted);
  overflow: hidden;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_table_scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_table_inner {
  width: max-content;
  min-width: 100%;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_table_head {
  display: grid;
  grid-template-columns: 88px minmax(250px, 1.5fr) 120px 120px 170px 170px;
  gap: 0;
  padding: 0 22px;
  border-bottom: 1px solid var(--settings-subscriptions-border);
  background: var(--settings-subscriptions-surface-soft);
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_head_cell {
  padding: 14px 12px;
  color: var(--settings-subscriptions-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_table_body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_row {
  display: grid;
  grid-template-columns: 88px minmax(250px, 1.5fr) 120px 120px 170px 170px;
  gap: 0;
  align-items: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: var(--settings-subscriptions-surface);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_row:hover {
  border-color: var(--settings-subscriptions-border);
  background: var(--settings-subscriptions-surface-soft);
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_cell {
  min-width: 0;
  padding: 7px 10px;
  color: var(--settings-subscriptions-text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_mobile_label {
  display: none;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_id {
  display: inline-flex;
  align-items: center;
  color: var(--settings-subscriptions-text);
  font-weight: 800;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_profile_link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_profile_media {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_profile_avatar {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--settings-subscriptions-surface-strong);
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_profile_avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_profile_identity {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_profile_name {
  overflow: hidden;
  color: var(--settings-subscriptions-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_profile_username {
  overflow: hidden;
  color: var(--settings-subscriptions-text-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_cell_amount {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_amount_value {
  color: var(--settings-subscriptions-text);
  font-weight: 800;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_amount_meta {
  color: var(--settings-subscriptions-text-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_cell_action {
  padding-left: 0;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_action {
  display: flex;
  justify-content: flex-end;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_action .i_follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 150px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_action .i_follow svg {
  width: 14px;
  height: 14px;
  margin: 0;
  fill: currentColor;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_action .free_follow {
  background: var(--settings-subscriptions-button);
  color: #ffffff;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_action .free_follow:hover {
  background: var(--settings-subscriptions-button-hover);
  color: #ffffff;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_action .i_btn_like_item_flw {
  background: var(--settings-subscriptions-button-soft);
  color: var(--settings-subscriptions-button-soft-text);
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_action .i_btn_unsubscribe {
  border: 1px solid #f1c7cf;
  background: #fff3f5;
  color: #c4475b;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_action .i_btn_unsubscribe:hover {
  border-color: #e7b1bc;
  background: #ffe9ee;
  color: #af3148;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_empty_state {
  min-height: 320px;
  margin: 0;
  padding: 34px 24px;
  border: 1px solid var(--settings-subscriptions-border);
  border-radius: 28px;
  background: radial-gradient(circle at top center, rgba(246, 81, 105, 0.08), transparent 42%), linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_empty_inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 420px;
  text-align: center;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_empty_state .no_c_icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0;
  border: 1px solid var(--settings-subscriptions-border);
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(246, 81, 105, 0.12), transparent 72%), var(--settings-subscriptions-surface);
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_empty_state .no_c_icon svg {
  width: 42px;
  height: 42px;
  fill: #7d89a5;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_empty_title {
  margin-top: 0;
  color: var(--settings-subscriptions-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_empty_state .n_c_t {
  color: var(--settings-subscriptions-text-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_footer {
  padding: 0 24px 24px;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_pagination li a {
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--settings-subscriptions-border);
  border-radius: 14px;
  background: var(--settings-subscriptions-surface-soft);
  color: var(--settings-subscriptions-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_pagination li a:hover,
.settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_pagination li.active a {
  border-color: var(--settings-subscriptions-button);
  background: var(--settings-subscriptions-button);
  color: #ffffff;
}

@media only screen and (max-width: 1024px) {
  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_table_head,
  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_row {
    grid-template-columns: 82px minmax(220px, 1.45fr) 112px 112px 160px 160px;
  }
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_header {
    padding: 20px 18px 18px;
    gap: 16px;
  }

  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_total_badge {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    font-size: 15px;
  }

  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_body {
    padding: 16px;
  }

  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_table_frame {
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_table_inner {
    width: max-content;
    min-width: 900px;
  }

  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_row {
    padding: 0 12px;
    border-color: var(--settings-subscriptions-border);
  }

  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_cell {
    padding: 7px 10px;
  }

  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_action .i_follow {
    max-width: 140px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 13px;
    font-size: 12px;
  }

  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_empty_state {
    min-height: 240px;
    padding: 28px 18px;
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_empty_state .no_c_icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_empty_state .no_c_icon svg {
    width: 36px;
    height: 36px;
  }

  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_empty_title {
    font-size: 20px;
  }

  .settings_main_wrapper.settings_subscriptions_page .settings_subscriptions_footer {
    padding: 0 16px 16px;
  }
}

.settings_main_wrapper.settings_products_page {
  --settings-products-surface: #ffffff;
  --settings-products-surface-soft: #fbfcff;
  --settings-products-surface-muted: #f5f7fb;
  --settings-products-surface-strong: #ecf1f8;
  --settings-products-border: #e2e8f2;
  --settings-products-border-strong: #d5deea;
  --settings-products-text: #172033;
  --settings-products-text-muted: #6f7d92;
  --settings-products-text-soft: #8b97aa;
  --settings-products-accent: #f65169;
  --settings-products-accent-soft: rgba(246, 81, 105, 0.1);
  --settings-products-action: #0f2442;
  --settings-products-action-hover: #162d4f;
  --settings-products-action-soft: #edf2fb;
  --settings-products-action-soft-text: #243b64;
  --settings-products-danger-surface: #fff4f6;
  --settings-products-danger-border: #f1c9cf;
  --settings-products-danger-text: #bf4558;
}

.settings_main_wrapper.settings_products_page .settings_products_shell {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.settings_main_wrapper.settings_products_page .settings_products_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-products-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_products_page .settings_products_header_meta {
  display: grid;
  gap: 10px;
  max-width: 760px;
  min-width: 0;
}

.settings_main_wrapper.settings_products_page .i_settings_wrapper_title_txt {
  color: var(--settings-products-text);
}

.settings_main_wrapper.settings_products_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-products-accent-soft);
  fill: var(--settings-products-accent);
}

.settings_main_wrapper.settings_products_page .settings_products_header_note {
  max-width: 680px;
  color: var(--settings-products-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_products_page .settings_products_total_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--settings-products-border);
  border-radius: 999px;
  background: var(--settings-products-surface-muted);
  color: var(--settings-products-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.settings_main_wrapper.settings_products_page .settings_products_body {
  min-width: 0;
  overflow-x: hidden;
  padding: 22px;
}

.settings_main_wrapper.settings_products_page .settings_products_table_frame {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--settings-products-border);
  border-radius: 28px;
  background: var(--settings-products-surface-muted);
  overflow: hidden;
}

.settings_main_wrapper.settings_products_page .settings_products_table_scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.settings_main_wrapper.settings_products_page .settings_products_table_inner {
  width: max-content;
  min-width: 100%;
}

.settings_main_wrapper.settings_products_page .settings_products_table_head {
  display: grid;
  grid-template-columns: 88px minmax(280px, 1.8fr) 110px 110px 140px 180px 190px;
  gap: 0;
  padding: 0 22px;
  border-bottom: 1px solid var(--settings-products-border);
  background: var(--settings-products-surface-soft);
}

.settings_main_wrapper.settings_products_page .settings_products_head_cell {
  padding: 14px 12px;
  color: var(--settings-products-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_products_page .settings_products_table_body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
}

.settings_main_wrapper.settings_products_page .settings_products_row {
  display: grid;
  grid-template-columns: 88px minmax(280px, 1.8fr) 110px 110px 140px 180px 190px;
  gap: 0;
  align-items: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: var(--settings-products-surface);
  transition: border-color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.settings_main_wrapper.settings_products_page .settings_products_row:hover {
  border-color: var(--settings-products-border);
  background: var(--settings-products-surface-soft);
}

.settings_main_wrapper.settings_products_page .settings_products_cell {
  min-width: 0;
  padding: 10px 10px;
  color: var(--settings-products-text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.settings_main_wrapper.settings_products_page .settings_products_mobile_label {
  display: none;
}

.settings_main_wrapper.settings_products_page .settings_products_id,
.settings_main_wrapper.settings_products_page .settings_products_metric_value,
.settings_main_wrapper.settings_products_page .settings_products_amount_value {
  color: var(--settings-products-text);
  font-weight: 800;
}

.settings_main_wrapper.settings_products_page .settings_products_product_link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.settings_main_wrapper.settings_products_page .settings_products_product_media {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.settings_main_wrapper.settings_products_page .settings_products_product_thumb {
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--settings-products-surface-strong);
}

.settings_main_wrapper.settings_products_page .settings_products_product_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings_main_wrapper.settings_products_page .settings_products_product_thumb_icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.settings_main_wrapper.settings_products_page .settings_products_product_thumb_icon svg {
  width: 20px;
  height: 20px;
  fill: var(--settings-products-accent);
}

.settings_main_wrapper.settings_products_page .settings_products_product_identity {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.settings_main_wrapper.settings_products_page .settings_products_product_name {
  overflow: hidden;
  color: var(--settings-products-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings_main_wrapper.settings_products_page .settings_products_product_type,
.settings_main_wrapper.settings_products_page .settings_products_status_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15, 36, 66, 0.06);
  color: #274063;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  width: fit-content;
}

.settings_main_wrapper.settings_products_page .settings_products_product_type.digitaldownload,
.settings_main_wrapper.settings_products_page .settings_products_status_badge.digitaldownload {
  background: rgba(17, 140, 92, 0.12);
  color: #137552;
}

.settings_main_wrapper.settings_products_page .settings_products_product_type.bookazoom,
.settings_main_wrapper.settings_products_page .settings_products_status_badge.bookazoom {
  background: rgba(181, 124, 24, 0.14);
  color: #9a6512;
}

.settings_main_wrapper.settings_products_page .settings_products_product_type.artcommission,
.settings_main_wrapper.settings_products_page .settings_products_status_badge.artcommission {
  background: rgba(107, 76, 181, 0.12);
  color: #6544b0;
}

.settings_main_wrapper.settings_products_page .settings_products_product_type.joininstagramclosefriends,
.settings_main_wrapper.settings_products_page .settings_products_status_badge.joininstagramclosefriends {
  background: rgba(39, 111, 178, 0.12);
  color: #215f9c;
}

.settings_main_wrapper.settings_products_page .settings_products_product_type.liveeventticket,
.settings_main_wrapper.settings_products_page .settings_products_status_badge.liveeventticket {
  background: rgba(187, 67, 94, 0.12);
  color: #b13d57;
}

.settings_main_wrapper.settings_products_page .settings_products_product_type.scratch,
.settings_main_wrapper.settings_products_page .settings_products_status_badge.scratch {
  background: rgba(94, 108, 132, 0.12);
  color: #55647b;
}

.settings_main_wrapper.settings_products_page .settings_products_cell_amount {
  white-space: nowrap;
}

.settings_main_wrapper.settings_products_page .settings_products_cell_status {
  position: relative;
}

.settings_main_wrapper.settings_products_page .settings_products_status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--settings-products-border);
  border-radius: 16px;
  background: var(--settings-products-surface-soft);
}

.settings_main_wrapper.settings_products_page .settings_products_switch {
  flex: 0 0 auto;
}

.settings_main_wrapper.settings_products_page .settings_products_cell_status .loaderWrapper {
  position: absolute;
  inset: 10px 10px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  z-index: 2;
}

.settings_main_wrapper.settings_products_page .settings_products_cell_action {
  padding-left: 0;
}

.settings_main_wrapper.settings_products_page .settings_products_action_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.settings_main_wrapper.settings_products_page .settings_products_action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--settings-products-border);
  border-radius: 14px;
  background: var(--settings-products-surface-soft);
  color: var(--settings-products-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.settings_main_wrapper.settings_products_page .settings_products_action svg {
  width: 14px;
  height: 14px;
  margin: 0;
  fill: currentColor;
}

.settings_main_wrapper.settings_products_page .settings_products_action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.settings_main_wrapper.settings_products_page .settings_products_action_edit {
  background: var(--settings-products-action-soft);
  color: var(--settings-products-action-soft-text);
}

.settings_main_wrapper.settings_products_page .settings_products_action_edit:hover {
  border-color: #d8e2f1;
  background: #e7eef9;
}

.settings_main_wrapper.settings_products_page .settings_products_action_delete {
  border-color: var(--settings-products-danger-border);
  background: var(--settings-products-danger-surface);
  color: var(--settings-products-danger-text);
}

.settings_main_wrapper.settings_products_page .settings_products_action_delete:hover {
  border-color: #ebb8c0;
  background: #ffecef;
}

.settings_main_wrapper.settings_products_page .settings_products_empty_state {
  min-height: 320px;
  margin: 0;
  padding: 34px 24px;
  border: 1px solid var(--settings-products-border);
  border-radius: 28px;
  background: radial-gradient(circle at top center, rgba(246, 81, 105, 0.08), transparent 42%), linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.settings_main_wrapper.settings_products_page .settings_products_empty_inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 420px;
  text-align: center;
}

.settings_main_wrapper.settings_products_page .settings_products_empty_state .no_c_icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0;
  border: 1px solid var(--settings-products-border);
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(246, 81, 105, 0.12), transparent 72%), var(--settings-products-surface);
}

.settings_main_wrapper.settings_products_page .settings_products_empty_state .no_c_icon svg {
  width: 42px;
  height: 42px;
  fill: #7d89a5;
}

.settings_main_wrapper.settings_products_page .settings_products_empty_title {
  margin-top: 0;
  color: var(--settings-products-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.settings_main_wrapper.settings_products_page .settings_products_empty_state .n_c_t {
  color: var(--settings-products-text-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
}

.settings_main_wrapper.settings_products_page .settings_products_footer {
  padding: 0 24px 24px;
}

.settings_main_wrapper.settings_products_page .settings_products_pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.settings_main_wrapper.settings_products_page .settings_products_pagination li a {
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--settings-products-border);
  border-radius: 14px;
  background: var(--settings-products-surface-soft);
  color: var(--settings-products-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.settings_main_wrapper.settings_products_page .settings_products_pagination li a:hover,
.settings_main_wrapper.settings_products_page .settings_products_pagination li.active a {
  border-color: var(--settings-products-action);
  background: var(--settings-products-action);
  color: #ffffff;
}

@media only screen and (max-width: 1180px) {
  .settings_main_wrapper.settings_products_page .settings_products_table_head,
  .settings_main_wrapper.settings_products_page .settings_products_row {
    grid-template-columns: 82px minmax(260px, 1.7fr) 96px 96px 132px 172px 180px;
  }
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_products_page .settings_products_header {
    padding: 20px 18px 18px;
    gap: 16px;
  }

  .settings_main_wrapper.settings_products_page .settings_products_total_badge {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    font-size: 15px;
  }

  .settings_main_wrapper.settings_products_page .settings_products_body {
    padding: 16px;
  }

  .settings_main_wrapper.settings_products_page .settings_products_table_frame {
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_products_page .settings_products_table_inner {
    width: max-content;
    min-width: 1060px;
  }

  .settings_main_wrapper.settings_products_page .settings_products_row {
    padding: 0 12px;
    border-color: var(--settings-products-border);
  }

  .settings_main_wrapper.settings_products_page .settings_products_cell {
    padding: 10px 10px;
  }

  .settings_main_wrapper.settings_products_page .settings_products_product_thumb {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .settings_main_wrapper.settings_products_page .settings_products_status {
    min-height: 46px;
    padding: 9px 10px;
    border-radius: 15px;
  }

  .settings_main_wrapper.settings_products_page .settings_products_action_group {
    flex-wrap: nowrap;
  }

  .settings_main_wrapper.settings_products_page .settings_products_action {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 13px;
    font-size: 12px;
  }

  .settings_main_wrapper.settings_products_page .settings_products_empty_state {
    min-height: 240px;
    padding: 28px 18px;
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_products_page .settings_products_empty_state .no_c_icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_products_page .settings_products_empty_state .no_c_icon svg {
    width: 36px;
    height: 36px;
  }

  .settings_main_wrapper.settings_products_page .settings_products_empty_title {
    font-size: 20px;
  }

  .settings_main_wrapper.settings_products_page .settings_products_footer {
    padding: 0 16px 16px;
  }
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_shell {
  width: calc(100% - 32px);
  max-width: 460px;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 18px 48px rgba(15, 23, 42, 0.16),
    0 4px 16px rgba(15, 23, 42, 0.08);
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_content,
.i_modal_bg_in.product_delete_modal .product_delete_modal_header,
.i_modal_bg_in.product_delete_modal .product_delete_modal_body,
.i_modal_bg_in.product_delete_modal .product_delete_modal_actions {
  background: #ffffff;
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_content {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_heading {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(246, 81, 105, 0.1);
  color: #c4495c;
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_title {
  color: #172033;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_close {
  position: static;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #f5f7fb;
  color: #6f7d92;
  padding: 0;
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_close svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_body {
  display: block;
  width: auto;
  padding: 0;
  margin: 0;
  color: #56657d;
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  border: 0;
  width: auto;
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_cancel,
.i_modal_bg_in.product_delete_modal .product_delete_modal_confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_cancel {
  border: 1px solid #dbe3ee;
  background: #f8fafc;
  color: #31425f;
}

.i_modal_bg_in.product_delete_modal .product_delete_modal_confirm {
  border: 1px solid #efc1c9;
  background: #fff1f4;
  color: #c4475b;
}

@media only screen and (max-width: 700px) {
  .i_modal_bg_in.product_delete_modal .product_delete_modal_content {
    padding: 20px;
  }

  .i_modal_bg_in.product_delete_modal .product_delete_modal_actions {
    flex-direction: column-reverse;
  }

  .i_modal_bg_in.product_delete_modal .product_delete_modal_cancel,
  .i_modal_bg_in.product_delete_modal .product_delete_modal_confirm {
    width: 100%;
  }
}

.settings_main_wrapper.settings_sales_page {
  --settings-sales-surface: #ffffff;
  --settings-sales-surface-soft: #fbfcff;
  --settings-sales-surface-muted: #f5f7fb;
  --settings-sales-surface-strong: #ecf1f8;
  --settings-sales-border: #e2e8f2;
  --settings-sales-border-strong: #d5deea;
  --settings-sales-text: #172033;
  --settings-sales-text-muted: #6f7d92;
  --settings-sales-text-soft: #8b97aa;
  --settings-sales-accent: #f65169;
  --settings-sales-accent-soft: rgba(246, 81, 105, 0.1);
  --settings-sales-highlight: #0f2442;
  --settings-sales-highlight-soft: #eef3ff;
  --settings-sales-highlight-text: #233b66;
}

.settings_main_wrapper.settings_sales_page .settings_sales_shell {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.settings_main_wrapper.settings_sales_page .settings_sales_header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-sales-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_sales_page .settings_sales_header_meta {
  display: grid;
  gap: 10px;
  max-width: 780px;
  min-width: 0;
}

.settings_main_wrapper.settings_sales_page .i_settings_wrapper_title_txt {
  color: var(--settings-sales-text);
}

.settings_main_wrapper.settings_sales_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-sales-accent-soft);
  fill: var(--settings-sales-accent);
}

.settings_main_wrapper.settings_sales_page .settings_sales_header_note {
  color: var(--settings-sales-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_sales_page .settings_sales_processing_note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--settings-sales-border);
  border-radius: 999px;
  background: var(--settings-sales-surface-muted);
  color: var(--settings-sales-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.settings_main_wrapper.settings_sales_page .settings_sales_body {
  min-width: 0;
  overflow-x: hidden;
  padding: 22px;
}

.settings_main_wrapper.settings_sales_page .settings_sales_table_frame {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--settings-sales-border);
  border-radius: 28px;
  background: var(--settings-sales-surface-muted);
  overflow: hidden;
}

.settings_main_wrapper.settings_sales_page .settings_sales_table_scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.settings_main_wrapper.settings_sales_page .settings_sales_table_inner {
  width: max-content;
  min-width: 100%;
}

.settings_main_wrapper.settings_sales_page .settings_sales_table_head {
  display: grid;
  grid-template-columns: 88px 240px minmax(240px, 1.5fr) 135px 135px 135px 150px;
  gap: 0;
  padding: 0 22px;
  border-bottom: 1px solid var(--settings-sales-border);
  background: var(--settings-sales-surface-soft);
}

.settings_main_wrapper.settings_sales_page .settings_sales_head_cell {
  padding: 14px 12px;
  color: var(--settings-sales-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_sales_page .settings_sales_table_body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
}

.settings_main_wrapper.settings_sales_page .settings_sales_row {
  display: grid;
  grid-template-columns: 88px 240px minmax(240px, 1.5fr) 135px 135px 135px 150px;
  gap: 0;
  align-items: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: var(--settings-sales-surface);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.settings_main_wrapper.settings_sales_page .settings_sales_row:hover {
  border-color: var(--settings-sales-border);
  background: var(--settings-sales-surface-soft);
}

.settings_main_wrapper.settings_sales_page .settings_sales_cell {
  min-width: 0;
  padding: 10px 10px;
  color: var(--settings-sales-text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.settings_main_wrapper.settings_sales_page .settings_sales_mobile_label {
  display: none;
}

.settings_main_wrapper.settings_sales_page .settings_sales_id,
.settings_main_wrapper.settings_sales_page .settings_sales_amount_value {
  color: var(--settings-sales-text);
  font-weight: 800;
}

.settings_main_wrapper.settings_sales_page .settings_sales_buyer_link,
.settings_main_wrapper.settings_sales_page .settings_sales_product_link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.settings_main_wrapper.settings_sales_page .settings_sales_buyer_media {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.settings_main_wrapper.settings_sales_page .settings_sales_buyer_avatar {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--settings-sales-surface-strong);
}

.settings_main_wrapper.settings_sales_page .settings_sales_buyer_avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings_main_wrapper.settings_sales_page .settings_sales_buyer_identity {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.settings_main_wrapper.settings_sales_page .settings_sales_buyer_name,
.settings_main_wrapper.settings_sales_page .settings_sales_product_name {
  overflow: hidden;
  color: var(--settings-sales-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings_main_wrapper.settings_sales_page .settings_sales_buyer_username {
  overflow: hidden;
  color: var(--settings-sales-text-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings_main_wrapper.settings_sales_page .settings_sales_cell_amount,
.settings_main_wrapper.settings_sales_page .settings_sales_cell_fee,
.settings_main_wrapper.settings_sales_page .settings_sales_cell_net {
  white-space: nowrap;
}

.settings_main_wrapper.settings_sales_page .settings_sales_fee_value {
  color: var(--settings-sales-text-muted);
  font-weight: 700;
}

.settings_main_wrapper.settings_sales_page .settings_sales_net_value {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 12px;
  background: var(--settings-sales-highlight-soft);
  color: var(--settings-sales-highlight-text);
  font-weight: 800;
}

.settings_main_wrapper.settings_sales_page .settings_sales_empty_state {
  min-height: 320px;
  margin: 0;
  padding: 34px 24px;
  border: 1px solid var(--settings-sales-border);
  border-radius: 28px;
  background: radial-gradient(circle at top center, rgba(246, 81, 105, 0.08), transparent 42%), linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.settings_main_wrapper.settings_sales_page .settings_sales_empty_inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 420px;
  text-align: center;
}

.settings_main_wrapper.settings_sales_page .settings_sales_empty_state .no_c_icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0;
  border: 1px solid var(--settings-sales-border);
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(246, 81, 105, 0.12), transparent 72%), var(--settings-sales-surface);
}

.settings_main_wrapper.settings_sales_page .settings_sales_empty_state .no_c_icon svg {
  width: 42px;
  height: 42px;
  fill: #7d89a5;
}

.settings_main_wrapper.settings_sales_page .settings_sales_empty_title {
  margin-top: 0;
  color: var(--settings-sales-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.settings_main_wrapper.settings_sales_page .settings_sales_empty_state .n_c_t {
  color: var(--settings-sales-text-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
}

.settings_main_wrapper.settings_sales_page .settings_sales_footer {
  padding: 0 24px 24px;
}

.settings_main_wrapper.settings_sales_page .settings_sales_pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.settings_main_wrapper.settings_sales_page .settings_sales_pagination li a {
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--settings-sales-border);
  border-radius: 14px;
  background: var(--settings-sales-surface-soft);
  color: var(--settings-sales-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.settings_main_wrapper.settings_sales_page .settings_sales_pagination li a:hover,
.settings_main_wrapper.settings_sales_page .settings_sales_pagination li.active a {
  border-color: var(--settings-sales-highlight);
  background: var(--settings-sales-highlight);
  color: #ffffff;
}

@media only screen and (max-width: 1180px) {
  .settings_main_wrapper.settings_sales_page .settings_sales_table_head,
  .settings_main_wrapper.settings_sales_page .settings_sales_row {
    grid-template-columns: 82px 220px minmax(220px, 1.4fr) 126px 126px 126px 142px;
  }
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_sales_page .settings_sales_header {
    padding: 20px 18px 18px;
    gap: 16px;
  }

  .settings_main_wrapper.settings_sales_page .settings_sales_processing_note {
    min-height: 32px;
    padding: 0 11px;
    border-radius: 14px;
    font-size: 11px;
  }

  .settings_main_wrapper.settings_sales_page .settings_sales_body {
    padding: 16px;
  }

  .settings_main_wrapper.settings_sales_page .settings_sales_table_frame {
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_sales_page .settings_sales_table_inner {
    width: max-content;
    min-width: 1100px;
  }

  .settings_main_wrapper.settings_sales_page .settings_sales_row {
    padding: 0 12px;
    border-color: var(--settings-sales-border);
  }

  .settings_main_wrapper.settings_sales_page .settings_sales_cell {
    padding: 10px 10px;
  }

  .settings_main_wrapper.settings_sales_page .settings_sales_buyer_avatar {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .settings_main_wrapper.settings_sales_page .settings_sales_net_value {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 11px;
  }

  .settings_main_wrapper.settings_sales_page .settings_sales_empty_state {
    min-height: 240px;
    padding: 28px 18px;
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_sales_page .settings_sales_empty_state .no_c_icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_sales_page .settings_sales_empty_state .no_c_icon svg {
    width: 36px;
    height: 36px;
  }

  .settings_main_wrapper.settings_sales_page .settings_sales_empty_title {
    font-size: 20px;
  }

  .settings_main_wrapper.settings_sales_page .settings_sales_footer {
    padding: 0 16px 16px;
  }
}

.settings_main_wrapper.settings_qrcode_page {
  --settings-qrcode-surface: #ffffff;
  --settings-qrcode-surface-soft: #fbfcff;
  --settings-qrcode-surface-muted: #f5f7fb;
  --settings-qrcode-border: #e2e8f2;
  --settings-qrcode-border-strong: #d5deea;
  --settings-qrcode-text: #172033;
  --settings-qrcode-text-muted: #6f7d92;
  --settings-qrcode-text-soft: #8d98ab;
  --settings-qrcode-accent: #f65169;
  --settings-qrcode-accent-soft: rgba(246, 81, 105, 0.1);
  --settings-qrcode-action: #0f2442;
  --settings-qrcode-action-hover: #162d4f;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_shell {
  display: block;
  overflow: hidden;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-qrcode-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 30%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_header_copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
  min-width: 0;
}

.settings_main_wrapper.settings_qrcode_page .i_settings_wrapper_title_txt {
  color: var(--settings-qrcode-text);
}

.settings_main_wrapper.settings_qrcode_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-qrcode-accent-soft);
  fill: var(--settings-qrcode-accent);
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_header_note {
  color: var(--settings-qrcode-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_header_badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--settings-qrcode-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--settings-qrcode-text);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_body {
  padding: 22px;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_card {
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--settings-qrcode-border);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_card_head {
  display: grid;
  gap: 8px;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_card_title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--settings-qrcode-text);
  font-size: 16px;
  font-weight: 700;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_card_title svg {
  display: block;
  flex: 0 0 22px;
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  overflow: visible;
  fill: var(--settings-qrcode-accent);
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_card_text {
  color: var(--settings-qrcode-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_preview_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  margin: 18px 0 16px;
  padding: 18px;
  border: 1px dashed var(--settings-qrcode-border-strong);
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(246, 81, 105, 0.06), transparent 65%), var(--settings-qrcode-surface-soft);
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 260px;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_image img {
  display: block;
  width: 100%;
  max-width: 270px;
  height: auto;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--settings-qrcode-border);
  border-radius: 24px;
  background: #ffffff;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_placeholder {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 320px;
  text-align: center;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_placeholder_icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid var(--settings-qrcode-border);
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(246, 81, 105, 0.12), transparent 72%), var(--settings-qrcode-surface);
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_placeholder_icon svg {
  width: 40px;
  height: 40px;
  fill: #7d89a5;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_placeholder_title {
  color: var(--settings-qrcode-text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_placeholder_text {
  color: var(--settings-qrcode-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_action_row {
  display: grid;
  gap: 12px;
}

.settings_main_wrapper.settings_qrcode_page .qrCodeGenerator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 44px;
  margin: 0;
  padding: 0 18px;
  border: 1px solid var(--settings-qrcode-action);
  border-radius: 14px;
  background: var(--settings-qrcode-action);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  font-family: inherit;
  box-shadow: none;
  transform: none;
}

.settings_main_wrapper.settings_qrcode_page .qrCodeGenerator:hover {
  background: var(--settings-qrcode-action-hover);
  border-color: var(--settings-qrcode-action-hover);
  box-shadow: none;
  transform: none;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_help {
  margin: 0;
  color: var(--settings-qrcode-text-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_meta_card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_meta_section {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--settings-qrcode-border);
  border-radius: 20px;
  background: var(--settings-qrcode-surface-soft);
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_share_section_hidden {
  display: none;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_meta_title {
  color: var(--settings-qrcode-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_meta_list {
  display: grid;
  gap: 10px;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_meta_item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--settings-qrcode-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_meta_index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 8px;
  border: 1px solid var(--settings-qrcode-border);
  border-radius: 12px;
  background: var(--settings-qrcode-surface);
  color: var(--settings-qrcode-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_share_buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
}

.settings_main_wrapper.settings_qrcode_page .qrSocialIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0;
  border: 1px solid var(--settings-qrcode-border);
  border-radius: 16px;
  background: var(--settings-qrcode-surface);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.settings_main_wrapper.settings_qrcode_page .qrSocialIcon:hover {
  border-color: var(--settings-qrcode-border-strong);
  background: var(--settings-qrcode-surface-muted);
}

.settings_main_wrapper.settings_qrcode_page .qrSocialIcon svg {
  width: 20px;
  height: 20px;
  fill: var(--settings-qrcode-text);
}

.settings_main_wrapper.settings_qrcode_page .settings_qrcode_empty_share_text {
  color: var(--settings-qrcode-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

@media only screen and (max-width: 1024px) {
  .settings_main_wrapper.settings_qrcode_page .settings_qrcode_layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_qrcode_page .settings_qrcode_header {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 18px 18px;
  }

  .settings_main_wrapper.settings_qrcode_page .settings_qrcode_header_badge {
    align-self: flex-start;
  }

  .settings_main_wrapper.settings_qrcode_page .settings_qrcode_body {
    padding: 16px;
  }

  .settings_main_wrapper.settings_qrcode_page .settings_qrcode_layout {
    gap: 14px;
  }

  .settings_main_wrapper.settings_qrcode_page .settings_qrcode_card {
    padding: 16px;
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_qrcode_page .settings_qrcode_preview_wrap {
    min-height: 280px;
    margin: 16px 0 14px;
    padding: 14px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_qrcode_page .settings_qrcode_image img {
    max-width: 230px;
    padding: 12px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_qrcode_page .settings_qrcode_share_buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_shell {
  overflow: hidden;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_header {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 24px 14px;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_header_copy {
  display: grid;
  gap: 14px;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_header_note {
  max-width: 760px;
  color: #6f7f98;
  font-size: 14px;
  line-height: 1.65;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_body {
  padding: 14px 24px 24px;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_card {
  min-width: 0;
  padding: 20px;
  border: 1px solid #e4ecf7;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_card_head {
  display: grid;
  gap: 8px;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_card_title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: #16233b;
  font-size: 16px;
  font-weight: 700;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_card_title svg {
  width: 18px;
  height: 18px;
  fill: #f35f74;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_card_text,
.settings_main_wrapper.settings_affiliate_page .settings_affiliate_share_text {
  color: #74839d;
  font-size: 13px;
  line-height: 1.65;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_visual {
  margin: 18px 0 16px;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_visual_surface {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 308px;
  padding: 22px;
  border: 1px dashed #d8e3f1;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(243, 95, 116, 0.08), transparent 45%), linear-gradient(180deg, #fbfcff 0%, #f5f8fc 100%);
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_visual_art {
  position: absolute;
  inset: 12px;
  width: auto;
  height: auto;
  opacity: 0.12;
  background-size: 78%;
  background-position: center right;
  pointer-events: none;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_balance_card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 340px;
  padding: 18px;
  border: 1px solid #e2eaf6;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_metric_label {
  color: #71819b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_metric_value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #e3ebf6;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: none;
  color: #15233d;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_metric_value svg {
  width: 18px;
  height: 18px;
  margin-left: 0;
  fill: #f35f74;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_metric_note {
  margin: 0;
  color: #5f6f8a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_section_title {
  color: #16233b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_link_section {
  display: grid;
  gap: 10px;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_link_row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_link_input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #dbe5f2;
  border-radius: 18px;
  background: #f8fbff;
  box-shadow: none;
  color: #24324a;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_copy_btn {
  flex: 0 0 auto;
  min-width: 112px;
  padding: 14px 18px;
  border: 1px solid #d9e3f1;
  border-radius: 18px;
  background: #ffffff;
  color: #1c2a43;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_copy_btn:hover {
  background: #f7faff;
  border-color: #cfdced;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_action_row {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_move_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid #1a2e4d;
  border-radius: 18px;
  background: #162c4d;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_move_btn:hover {
  background: #132640;
  border-color: #132640;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_move_btn:disabled {
  opacity: 0.72;
  cursor: default;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_feedback[hidden] {
  display: none !important;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_feedback {
  padding: 12px 14px;
  border: 1px solid #dfe7f3;
  border-radius: 16px;
  background: #f8fbff;
  color: #61718c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_feedback.is-processing {
  border-color: #d9e3f0;
  background: #f8fbff;
  color: #5f6f89;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_feedback.is-success {
  border-color: #cfe2d6;
  background: #f3faf5;
  color: #2f6f47;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_feedback.is-error {
  border-color: #efdadf;
  background: #fff7f8;
  color: #995062;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_share_card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_meta_section {
  display: grid;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e7eef8;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_meta_section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_share_buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_share_buttons .qrSocialIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border: 1px solid #dee7f3;
  border-radius: 18px;
  background: #f8fbff;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_share_buttons .qrSocialIcon:hover {
  background: #ffffff;
  border-color: #d0dceb;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_share_buttons .qrSocialIcon svg {
  width: 20px;
  height: 20px;
  fill: #16233b;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_guide_list {
  display: grid;
  gap: 10px;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_guide_item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid #e6edf7;
  border-radius: 18px;
  background: #f9fbff;
  color: #5d6d88;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.settings_main_wrapper.settings_affiliate_page .settings_affiliate_guide_index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #16233b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 1024px) {
  .settings_main_wrapper.settings_affiliate_page .settings_affiliate_layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_affiliate_page .settings_affiliate_header {
    padding: 22px 18px 12px;
  }

  .settings_main_wrapper.settings_affiliate_page .settings_affiliate_body {
    padding: 12px 16px 16px;
  }

  .settings_main_wrapper.settings_affiliate_page .settings_affiliate_card {
    padding: 16px;
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_affiliate_page .settings_affiliate_visual_surface {
    min-height: 250px;
    padding: 18px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_affiliate_page .settings_affiliate_visual_art {
    background-size: 88%;
    background-position: center center;
  }

  .settings_main_wrapper.settings_affiliate_page .settings_affiliate_balance_card {
    max-width: 100%;
    padding: 16px;
    border-radius: 18px;
  }

  .settings_main_wrapper.settings_affiliate_page .settings_affiliate_metric_value {
    font-size: 24px;
  }

  .settings_main_wrapper.settings_affiliate_page .settings_affiliate_link_row {
    flex-direction: column;
    align-items: stretch;
  }

  .settings_main_wrapper.settings_affiliate_page .settings_affiliate_copy_btn {
    width: 100%;
    min-width: 0;
  }

  .settings_main_wrapper.settings_affiliate_page .settings_affiliate_share_buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_shell {
  overflow: hidden;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_header {
  display: grid;
  gap: 22px;
  padding: 26px 28px 22px;
  border-bottom: 1px solid #e7eef8;
  background: radial-gradient(circle at top right, rgba(243, 95, 116, 0.08), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_header_copy {
  display: grid;
  gap: 10px;
  max-width: 780px;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_header_note {
  max-width: 720px;
  color: #6f7f98;
  font-size: 13px;
  line-height: 1.7;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_summary_card {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid #e3ebf6;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_summary_value {
  color: #16233b;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_summary_label {
  margin-top: 6px;
  color: #72819c;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_body {
  padding: 22px 28px 28px;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 18px;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_main,
.settings_main_wrapper.settings_earned_points_page .settings_earned_points_side {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 16px;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_info_card,
.settings_main_wrapper.settings_earned_points_page .settings_earned_points_transfer_card,
.settings_main_wrapper.settings_earned_points_page .settings_earned_points_policy_card {
  padding: 20px;
  border: 1px solid #e4ecf7;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_section_title {
  color: #16233b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_info_text {
  margin-top: 10px;
  color: #6d7d97;
  font-size: 13px;
  line-height: 1.65;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_rules {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_rules li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border: 1px solid #e8eef7;
  border-radius: 18px;
  background: #f8fbff;
  color: #5f6f89;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_rules li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f35f74;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_card {
  min-width: 0;
  padding: 18px;
  border: 1px solid #e5edf8;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_card_head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_card_icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 1px solid #e2eaf6;
  border-radius: 16px;
  background: #f8fbff;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_card_icon svg {
  width: 20px;
  height: 20px;
  fill: #f35f74;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_card_title {
  min-width: 0;
  color: #16233b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_stats {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid #e7edf7;
  border-radius: 16px;
  background: #f8fbff;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_stat_label {
  color: #72819b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_stat_value {
  color: #16233b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_transfer_card {
  display: grid;
  gap: 12px;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_transfer_value {
  color: #16233b;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_transfer_note {
  color: #71819b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_move_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid #1a2e4d;
  border-radius: 18px;
  background: #162c4d;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_move_btn:hover {
  background: #132640;
  border-color: #132640;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_move_btn:disabled {
  opacity: 0.72;
  cursor: default;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_feedback[hidden] {
  display: none !important;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_feedback {
  padding: 12px 14px;
  border: 1px solid #dfe7f3;
  border-radius: 16px;
  background: #f8fbff;
  color: #61718c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_feedback.is-processing {
  border-color: #d9e3f0;
  background: #f8fbff;
  color: #5f6f89;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_feedback.is-success {
  border-color: #cfe2d6;
  background: #f3faf5;
  color: #2f6f47;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_feedback.is-error {
  border-color: #efdadf;
  background: #fff7f8;
  color: #995062;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_policy_card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_policy_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border: 1px solid #e5edf8;
  border-radius: 14px;
  background: #f8fbff;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_policy_icon svg {
  width: 18px;
  height: 18px;
  fill: #f35f74;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_policy_text {
  color: #647490;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_empty_state {
  padding: 12px 0 0;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_empty_inner {
  padding: 30px 24px;
  border: 1px dashed #dbe5f3;
  border-radius: 24px;
  background: #fbfcff;
  text-align: center;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_empty_state .no_c_icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 14px;
  border-radius: 24px;
  background: #f7faff;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_empty_state .no_c_icon svg {
  width: 32px;
  height: 32px;
  fill: #f35f74;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_empty_title {
  color: #16233b;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.settings_main_wrapper.settings_earned_points_page .settings_earned_points_empty_state .n_c_t {
  max-width: 540px;
  margin: 10px auto 0;
  color: #70819c;
  font-size: 14px;
  line-height: 1.65;
}

@media only screen and (max-width: 1024px) {
  .settings_main_wrapper.settings_earned_points_page .settings_earned_points_layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_earned_points_page .settings_earned_points_header {
    padding: 22px 18px 18px;
  }

  .settings_main_wrapper.settings_earned_points_page .settings_earned_points_body {
    padding: 18px 16px 16px;
  }

  .settings_main_wrapper.settings_earned_points_page .settings_earned_points_summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .settings_main_wrapper.settings_earned_points_page .settings_earned_points_summary_card:last-child {
    grid-column: 1 / -1;
  }

  .settings_main_wrapper.settings_earned_points_page .settings_earned_points_info_card,
  .settings_main_wrapper.settings_earned_points_page .settings_earned_points_transfer_card,
  .settings_main_wrapper.settings_earned_points_page .settings_earned_points_policy_card,
  .settings_main_wrapper.settings_earned_points_page .settings_earned_points_card {
    padding: 16px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_earned_points_page .settings_earned_points_grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .settings_main_wrapper.settings_earned_points_page .settings_earned_points_stat {
    padding: 11px 12px;
  }

  .settings_main_wrapper.settings_earned_points_page .settings_earned_points_transfer_value {
    font-size: 28px;
  }
}

.settings_main_wrapper.settings_password_page .settings_password_shell {
  overflow: hidden;
}

.settings_main_wrapper.settings_password_page .settings_password_header {
  padding: 26px 28px 18px;
  border-bottom: 1px solid #e7eef8;
  background: radial-gradient(circle at top right, rgba(243, 95, 116, 0.08), transparent 30%), linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.settings_main_wrapper.settings_password_page .settings_password_header_copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.settings_main_wrapper.settings_password_page .settings_password_header_note {
  max-width: 700px;
  color: #6f7f98;
  font-size: 13px;
  line-height: 1.7;
}

.settings_main_wrapper.settings_password_page .settings_password_body {
  padding: 22px 28px 0;
}

.settings_main_wrapper.settings_password_page .settings_password_layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 18px;
}

.settings_main_wrapper.settings_password_page .settings_password_main,
.settings_main_wrapper.settings_password_page .settings_password_side {
  min-width: 0;
}

.settings_main_wrapper.settings_password_page .settings_password_form_card,
.settings_main_wrapper.settings_password_page .settings_password_info_card {
  padding: 20px;
  border: 1px solid #e4ecf7;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.settings_main_wrapper.settings_password_page .settings_password_form_card {
  display: grid;
  gap: 14px;
}

.settings_main_wrapper.settings_password_page .settings_password_field {
  display: grid;
  gap: 8px;
}

.settings_main_wrapper.settings_password_page .settings_password_label {
  color: #16233b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.settings_main_wrapper.settings_password_page .settings_password_input_wrap {
  position: relative;
}

.settings_main_wrapper.settings_password_page .settings_password_input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #dbe5f2;
  border-radius: 18px;
  background: #f8fbff;
  box-shadow: none;
  color: #24324a;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.settings_main_wrapper.settings_password_page .settings_password_input:focus {
  border-color: #f35f74;
  background: #ffffff;
}

.settings_main_wrapper.settings_password_page .settings_password_alerts {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.settings_main_wrapper.settings_password_page .settings_password_alert {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #e4ecf7;
  border-radius: 16px;
  background: #f8fbff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.settings_main_wrapper.settings_password_page .settings_password_alert.warning_not_mach,
.settings_main_wrapper.settings_password_page .settings_password_alert.warning_not_correct,
.settings_main_wrapper.settings_password_page .settings_password_alert.warning_write_current_password,
.settings_main_wrapper.settings_password_page .settings_password_alert.no_new_password_wrote,
.settings_main_wrapper.settings_password_page .settings_password_alert.minimum_character_not,
.settings_main_wrapper.settings_password_page .settings_password_alert.not_contain_whitespace {
  border-color: #efdadf;
  background: #fff7f8;
  color: #995062;
}

.settings_main_wrapper.settings_password_page .settings_password_alert.successNot {
  border-color: #cfe2d6;
  background: #f3faf5;
  color: #2f6f47;
}

.settings_main_wrapper.settings_password_page .settings_password_section_title {
  color: #16233b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.settings_main_wrapper.settings_password_page .settings_password_info_text {
  margin-top: 10px;
  color: #6d7d97;
  font-size: 13px;
  line-height: 1.65;
}

.settings_main_wrapper.settings_password_page .settings_password_rules {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.settings_main_wrapper.settings_password_page .settings_password_rule {
  position: relative;
  padding: 12px 14px 12px 40px;
  border: 1px solid #e8eef7;
  border-radius: 18px;
  background: #f8fbff;
  color: #5f6f89;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.settings_main_wrapper.settings_password_page .settings_password_rule::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f35f74;
}

.settings_main_wrapper.settings_password_page .settings_password_footer {
  display: flex;
  justify-content: flex-end;
  padding: 18px 28px 28px;
}

.settings_main_wrapper.settings_password_page .settings_password_submit {
  min-width: 200px;
  float: none;
}

@media only screen and (max-width: 1024px) {
  .settings_main_wrapper.settings_password_page .settings_password_layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_password_page .settings_password_header {
    padding: 22px 18px 16px;
  }

  .settings_main_wrapper.settings_password_page .settings_password_body {
    padding: 18px 16px 0;
  }

  .settings_main_wrapper.settings_password_page .settings_password_form_card,
  .settings_main_wrapper.settings_password_page .settings_password_info_card {
    padding: 16px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_password_page .settings_password_footer {
    padding: 16px 16px 18px;
  }

  .settings_main_wrapper.settings_password_page .settings_password_submit {
    width: 100%;
    min-width: 0;
  }
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_shell {
  overflow: hidden;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_header_main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_header_copy {
  min-width: 0;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_header_note {
  max-width: 620px;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_starting_price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid #e5edf7;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_starting_price_value {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #15233d;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_starting_price_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_starting_price_icon svg {
  width: 18px;
  height: 18px;
  fill: #f26b5b;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_starting_price_label {
  color: #73819a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_summary_card {
  padding: 16px 18px;
  border: 1px solid #e5edf7;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_summary_value {
  color: #15233d;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_summary_label {
  margin-top: 8px;
  color: #73819a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_body {
  padding: 0 24px 24px;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  justify-content: initial;
  align-items: stretch;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_item {
  width: 100%;
  min-width: 0;
  padding: 0;
  margin: 0;
  float: none;
  flex: initial;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid #e5edf7;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.settings_main_wrapper.settings_myframes_page .settings_frame_item_owned .settings_frame_card {
  border-color: #dce7f5;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_item_locked .settings_frame_card {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.settings_main_wrapper.settings_myframes_page .settings_frame_preview_shell {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_state_chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid #e5edf7;
  border-radius: 999px;
  background: #f8fbff;
  color: #52627d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_item_owned .settings_frame_state_chip {
  border-color: #dce7f5;
  background: #eef5ff;
  color: #28446f;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_preview {
  position: relative;
  min-height: 208px;
  padding: 22px;
  border: 1px solid #e6edf7;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff3f2 0%, #f6f9ff 100%);
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_preview_avatar {
  position: relative;
  width: 126px;
  height: 126px;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd7da 0%, #f7cad3 100%);
  overflow: hidden;
  z-index: 1;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_preview_avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_art {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_meta {
  text-align: left;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_price_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 14px;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_price {
  color: #15233d;
  font-size: 34px;
  line-height: 1;
  text-align: left;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_price_inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_point_icon {
  position: static;
  margin: 0;
  opacity: 1;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_point_icon svg {
  width: 18px;
  height: 18px;
  fill: #f26b5b;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_point_label {
  justify-content: flex-start;
  color: #73819a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: left;
  text-transform: none;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_action_label {
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_action_note {
  margin-top: 0;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  opacity: 0.76;
  text-align: left;
  text-transform: none;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_action_use {
  border-color: #193254;
  background: #183153;
  color: #ffffff;
  cursor: pointer;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_action_use:hover {
  background: #132745;
  border-color: #132745;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_action_locked {
  border-color: #dce6f3;
  background: #f8fbff;
  color: #1c3050;
  cursor: default;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_action_points {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_action_points .prcsic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_action_points .prcsic svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.settings_main_wrapper.settings_myframes_page .settings_frame_locked_note {
  margin-top: 8px;
  color: #73819a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_empty_state {
  min-height: 280px;
  border: 1px dashed #d7e1ef;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_empty_inner {
  max-width: 360px;
  text-align: center;
}

.settings_main_wrapper.settings_myframes_page .settings_myframes_empty_title {
  margin-top: 12px;
  color: #15233d;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

@media only screen and (max-width: 1024px) {
  .settings_main_wrapper.settings_myframes_page .settings_myframes_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_myframes_page .settings_myframes_header {
    padding: 18px 16px;
    gap: 14px;
  }

  .settings_main_wrapper.settings_myframes_page .settings_myframes_header_main {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .settings_main_wrapper.settings_myframes_page .settings_myframes_starting_price {
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .settings_main_wrapper.settings_myframes_page .settings_myframes_summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .settings_main_wrapper.settings_myframes_page .settings_myframes_summary_card {
    padding: 14px;
    border-radius: 18px;
  }

  .settings_main_wrapper.settings_myframes_page .settings_myframes_summary_value {
    font-size: 24px;
  }

  .settings_main_wrapper.settings_myframes_page .settings_myframes_body {
    padding: 0 16px 16px;
  }

  .settings_main_wrapper.settings_myframes_page .settings_myframes_grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .settings_main_wrapper.settings_myframes_page .settings_frame_card {
    padding: 14px;
    border-radius: 20px;
    gap: 12px;
  }

  .settings_main_wrapper.settings_myframes_page .settings_frame_preview {
    min-height: 188px;
    padding: 18px;
    border-radius: 18px;
  }

  .settings_main_wrapper.settings_myframes_page .settings_frame_preview_avatar {
    width: 108px;
    height: 108px;
    border-width: 7px;
  }

  .settings_main_wrapper.settings_myframes_page .settings_frame_price {
    font-size: 30px;
  }

  .settings_main_wrapper.settings_myframes_page .settings_frame_action {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .settings_main_wrapper.settings_myframes_page .settings_myframes_empty_state {
    min-height: 220px;
    border-radius: 20px;
  }
}

.settings_dashboard_page {
  --dashboard-surface: #ffffff;
  --dashboard-surface-muted: #f8fafc;
  --dashboard-surface-strong: #f3f6fb;
  --dashboard-border: #e3e8f2;
  --dashboard-border-strong: #d4ddea;
  --dashboard-text: #172033;
  --dashboard-text-muted: #66758d;
  --dashboard-text-soft: #8a96aa;
  --dashboard-accent: #f65169;
  --dashboard-accent-soft: rgba(246, 81, 105, 0.1);
  --dashboard-chart-text: #172033;
  --dashboard-chart-muted: #8693a8;
  --dashboard-chart-grid: #e7edf4;
  --dashboard-chart-tooltip-bg: #172033;
  --dashboard-chart-tooltip-text: #ffffff;
  --dashboard-chart-tooltip-border: rgba(23, 32, 51, 0.16);
  --dashboard-chart-subscription: #d97745;
  --dashboard-chart-point: #f65169;
  --dashboard-chart-product: #6d5dfc;
  --dashboard-chart-campaign: #2f7cc1;
}
.settings_dashboard_page .i_settings_wrapper_title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px 26px;
  border: 0;
  border-bottom: 1px solid var(--dashboard-border);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  margin-bottom: 18px;
}
.settings_dashboard_page .dashboard_header_meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.settings_dashboard_page .i_settings_wrapper_title_txt {
  gap: 12px;
  margin: 0;
  color: var(--dashboard-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}
.settings_dashboard_page .i_settings_wrapper_title_txt svg {
  width: 18px;
  height: 18px;
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--dashboard-accent-soft);
  fill: var(--dashboard-accent);
  flex: 0 0 auto;
}
.settings_dashboard_page .i_moda_header_nt {
  margin: 0;
  max-width: 620px;
  color: var(--dashboard-text-muted);
  font-size: 13px;
  line-height: 1.55;
}
.settings_dashboard_page .dashboard_header_stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 360px);
}
.settings_dashboard_page .dashboard_header_stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 11px 13px;
  border-radius: 16px;
  border: 1px solid var(--dashboard-border);
  background: var(--dashboard-surface-muted);
}
.settings_dashboard_page .dashboard_header_stat_label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dashboard-text-soft);
}
.settings_dashboard_page .dashboard_header_stat_value {
  font-size: 17px;
  line-height: 1.2;
  color: var(--dashboard-text);
}
.settings_dashboard_page .dashboard_page_content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.settings_dashboard_page .dashboard_earnings_cards,
.settings_dashboard_page .dashboard_revenue_cards {
  margin-bottom: 0;
}
.settings_dashboard_page .dashboard_earnings_cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.settings_dashboard_page .dashboard_earnings_cards .chart_row_box {
  width: 100%;
  min-width: 0;
  padding: 0;
}
.settings_dashboard_page .dashboard_earnings_cards .chart_row_box_item.dashboard_metric_card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid var(--dashboard-border);
  background: var(--dashboard-surface);
  color: var(--dashboard-text);
  box-shadow: none;
  overflow: visible;
}
.settings_dashboard_page .dashboard_earnings_cards .chart_row_box_item.dashboard_metric_card.c1 {
  --dashboard-card-bg: #fff8f3;
  --dashboard-card-border: #f3dfcf;
  --dashboard-card-accent: #d97745;
}
.settings_dashboard_page .dashboard_earnings_cards .chart_row_box_item.dashboard_metric_card.c2 {
  --dashboard-card-bg: #f6fbff;
  --dashboard-card-border: #d9e8f6;
  --dashboard-card-accent: #2f7cc1;
}
.settings_dashboard_page .dashboard_earnings_cards .chart_row_box_item.dashboard_metric_card.c3 {
  --dashboard-card-bg: #f8fafc;
  --dashboard-card-border: #dbe3ee;
  --dashboard-card-accent: #516178;
}
.settings_dashboard_page .dashboard_earnings_cards .chart_row_box_item.dashboard_metric_card.c4 {
  --dashboard-card-bg: #fff7fb;
  --dashboard-card-border: #f0dce7;
  --dashboard-card-accent: #b76089;
  background: var(--dashboard-card-bg) !important;
}
.settings_dashboard_page .dashboard_earnings_cards .chart_row_box_item.dashboard_metric_card.c1,
.settings_dashboard_page .dashboard_earnings_cards .chart_row_box_item.dashboard_metric_card.c2,
.settings_dashboard_page .dashboard_earnings_cards .chart_row_box_item.dashboard_metric_card.c3,
.settings_dashboard_page .dashboard_earnings_cards .chart_row_box_item.dashboard_metric_card.c4 {
  background: var(--dashboard-card-bg);
  border-color: var(--dashboard-card-border);
}
.settings_dashboard_page .dashboard_metric_card .chart_question {
  right: 14px;
  top: 14px;
  z-index: 8;
}
.settings_dashboard_page .dashboard_metric_card .chart_question_icon {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 32, 51, 0.06);
}
.settings_dashboard_page .dashboard_metric_card .chart_question_icon svg {
  width: 12px;
  height: 12px;
  fill: var(--dashboard-text-soft);
}
.settings_dashboard_page .dashboard_metric_card .answer_bubble {
  width: min(240px, calc(100vw - 48px));
  max-width: 240px;
  min-width: 0;
  border: 1px solid var(--dashboard-border);
  border-radius: 14px;
  box-shadow: none;
  color: var(--dashboard-text-muted);
  font-size: 12px;
  line-height: 1.5;
}
.settings_dashboard_page .dashboard_metric_card .qb {
  top: calc(100% + 10px);
  right: 0;
  z-index: 12;
}
.settings_dashboard_page .dashboard_metric_card .answer_bubble:after {
  left: auto;
  right: 18px;
  margin-left: 0;
  border-color: #ffffff transparent;
}
.settings_dashboard_page .dashboard_metric_head {
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding-right: 34px;
}
.settings_dashboard_page .dashboard_metric_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--dashboard-card-accent, var(--dashboard-accent));
  flex: 0 0 auto;
}
.settings_dashboard_page .dashboard_metric_icon svg {
  width: 18px;
  height: 18px;
  margin-right: 0;
  fill: currentColor;
}
.settings_dashboard_page .dashboard_metric_label {
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dashboard-text);
}
.settings_dashboard_page .dashboard_metric_value {
  min-width: 0;
  padding-top: 18px;
  font-size: 28px;
  line-height: 1.1;
  overflow-wrap: anywhere;
  color: var(--dashboard-text);
}
.settings_dashboard_page .dashboard_metric_action {
  margin-top: auto;
  padding-top: 14px;
}
.settings_dashboard_page .dashboard_metric_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--dashboard-text);
  font-size: 12px;
  font-weight: 700;
}
.settings_dashboard_page .dashboard_metric_link svg {
  width: 9px;
  height: 9px;
  margin-left: 0;
  fill: currentColor;
}
.settings_dashboard_page .dashboard_chart_panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 22px 22px;
  border-radius: 24px;
  border: 1px solid var(--dashboard-border);
  background: var(--dashboard-surface);
}
.settings_dashboard_page .dashboard_chart_panel_kicker {
  margin: 0;
  color: var(--dashboard-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.settings_dashboard_page .chart_wrapper {
  height: 320px;
  padding: 14px 12px 10px;
  border: 1px solid var(--dashboard-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #fcfdff 0%, #f8fafc 100%);
}
.settings_dashboard_page .chart_wrapper canvas {
  width: 100% !important;
  height: 100% !important;
}
.settings_dashboard_page .dashboard_revenue_cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.settings_dashboard_page .dashboard_revenue_cards .chart_row_box {
  width: auto;
  padding: 0;
}
.settings_dashboard_page .dashboard_revenue_cards .chart_row_box.dashboard_revenue_card {
  width: 100%;
  min-height: 0;
  padding: 16px 18px;
  border: 1px solid var(--dashboard-border);
  border-radius: 18px;
  background: var(--dashboard-surface-muted);
  align-items: flex-start !important;
}
.settings_dashboard_page .dashboard_revenue_card .revenue_sum_u {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dashboard-text);
}
.settings_dashboard_page .dashboard_revenue_card .revenue_title_u {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--dashboard-text-muted);
}
.settings_dashboard_page .dashboard_earnings_breakdown {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 24px;
  border: 1px solid var(--dashboard-border);
  border-radius: 24px;
  background: var(--dashboard-surface);
}
.settings_dashboard_page .dashboard_earnings_breakdown .i_settings_item_title {
  width: 100%;
  margin-bottom: 0;
  color: var(--dashboard-text);
  font-size: 16px;
  font-weight: 800;
}
.settings_dashboard_page .dashboard_earnings_breakdown .i_settings_item_title_for {
  width: 100%;
  padding-left: 0;
}
.settings_dashboard_page .i_overflow_x_auto {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.settings_dashboard_page .dashboard_breakdown_table {
  min-width: 560px;
}
.settings_dashboard_page .dashboard_breakdown_table .i_tab_header,
.settings_dashboard_page .dashboard_breakdown_table .i_tab_list_item {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
}
.settings_dashboard_page .dashboard_breakdown_table .i_tab_header {
  padding-bottom: 10px;
}
.settings_dashboard_page .dashboard_breakdown_table .tab_item {
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--dashboard-surface-muted);
  color: var(--dashboard-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
}
.settings_dashboard_page .dashboard_breakdown_table .i_tab_list_item {
  margin-top: 10px;
  padding-bottom: 10px;
}
.settings_dashboard_page .dashboard_breakdown_table .tab_detail_item {
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid var(--dashboard-border);
  background: var(--dashboard-surface);
  color: var(--dashboard-text);
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 1100px) {
  .settings_dashboard_page .dashboard_earnings_cards {
    grid-template-columns: minmax(0, 1fr);
  }
  .settings_dashboard_page .dashboard_revenue_cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .settings_dashboard_page .i_settings_wrapper_title {
    padding: 20px 18px;
  }
  .settings_dashboard_page .i_settings_wrapper_title_txt {
    font-size: 20px;
  }
  .settings_dashboard_page .dashboard_header_stats {
    width: 100%;
  }
  .settings_dashboard_page .dashboard_chart_panel,
  .settings_dashboard_page .dashboard_earnings_breakdown {
    padding: 18px;
    border-radius: 20px;
  }
  .settings_dashboard_page .chart_wrapper {
    height: 300px;
    padding: 12px 10px 8px;
  }
}
@media (max-width: 640px) {
  .settings_dashboard_page .i_settings_wrapper_title {
    gap: 14px;
    padding: 18px 16px;
  }
  .settings_dashboard_page .i_settings_wrapper_title_txt {
    font-size: 18px;
  }
  .settings_dashboard_page .i_settings_wrapper_title_txt svg {
    padding: 9px;
    border-radius: 12px;
  }
  .settings_dashboard_page .dashboard_header_stats,
  .settings_dashboard_page .dashboard_revenue_cards {
    grid-template-columns: minmax(0, 1fr);
  }
  .settings_dashboard_page .dashboard_earnings_cards .chart_row_box_item.dashboard_metric_card {
    padding: 16px;
    border-radius: 18px;
  }
  .settings_dashboard_page .dashboard_metric_icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }
  .settings_dashboard_page .dashboard_metric_value {
    padding-top: 16px;
    font-size: 24px;
  }
  .settings_dashboard_page .dashboard_chart_panel,
  .settings_dashboard_page .dashboard_earnings_breakdown {
    padding: 16px;
    border-radius: 18px;
  }
  .settings_dashboard_page .chart_wrapper {
    height: 280px;
    border-radius: 16px;
  }
  .settings_dashboard_page .i_overflow_x_auto {
    overflow-x: hidden;
  }
  .settings_dashboard_page .dashboard_breakdown_table {
    width: 100%;
    min-width: 0;
  }
  .settings_dashboard_page .dashboard_breakdown_table .i_tab_header,
  .settings_dashboard_page .dashboard_breakdown_table .i_tab_list_item {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .settings_dashboard_page .dashboard_breakdown_table .tab_item,
  .settings_dashboard_page .dashboard_breakdown_table .tab_detail_item {
    min-width: 0;
  }
  .settings_dashboard_page .dashboard_breakdown_table .tab_item {
    padding: 10px;
    font-size: 10px;
    letter-spacing: 0.04em;
  }
  .settings_dashboard_page .dashboard_breakdown_table .tab_detail_item {
    padding: 13px 10px;
    font-size: 14px;
    text-align: center;
  }
}

/* Product page marketplace cards */
.other_items_by_owner {
  padding-top: 18px;
}

.other_items_by_owner .other_items_by_owner_title {
  margin-top: 18px;
  margin-bottom: 14px;
  padding-left: 0;
  font-size: 15px;
  font-weight: 700;
  color: #18233d;
}

.other_items_by_owner .other_items_by_owner_title a {
  color: #18233d;
}

.other_items_by_owner .i_other_products_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  padding: 0;
}

.other_items_by_owner .s_p_product_container {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 0;
}

.other_items_by_owner .marketplace-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid #e4eaf2;
  border-radius: 24px;
  box-shadow: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.other_items_by_owner .marketplace-card:hover {
  transform: translateY(-3px);
  border-color: #d4dde8;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.other_items_by_owner .marketplace-card .product_image {
  height: auto;
  aspect-ratio: 4 / 4.25;
  background: linear-gradient(180deg, #e9eef5 0%, #dde5ef 100%);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.other_items_by_owner .marketplace-card .product_image img {
  transition: transform 0.45s ease;
}

.other_items_by_owner .marketplace-card:hover .product_image img {
  transform: scale(1.03);
}

.other_items_by_owner .marketplace-card .image_tag {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.other_items_by_owner .marketplace-card .s_p_details {
  padding: 14px 14px 15px;
  gap: 10px;
}

.other_items_by_owner .marketplace-card .s_p_title {
  min-height: 42px;
  padding-bottom: 0;
  overflow: hidden;
  color: #162033;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.other_items_by_owner .s_p_submeta {
  margin-top: 0;
  gap: 6px;
}

.other_items_by_owner .s_p_chip,
.other_items_by_owner .s_p_chip.soft {
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid #e5ebf2;
  background: #f6f8fb;
  box-shadow: none;
  color: #617186;
  font-size: 11px;
  font-weight: 700;
}

.other_items_by_owner .s_p_chip svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.other_items_by_owner .s_p_meta {
  padding-top: 10px;
  border-top: 1px solid #eef2f7;
  justify-content: flex-end;
}

.other_items_by_owner .marketplace-card .s_p_product_type {
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.other_items_by_owner .marketplace-price {
  color: #18233d;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

@media screen and (max-width: 700px) {
  .other_items_by_owner .i_other_products_container {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .other_items_by_owner .marketplace-card .s_p_details {
    padding: 12px 12px 13px;
  }
  .other_items_by_owner .marketplace-card .s_p_title {
    min-height: 0;
    font-size: 14px;
  }
}

/* Marketplace page redesign */
.marketplace-page-body {
  background:
    radial-gradient(
      circle at top left,
      rgba(247, 225, 220, 0.58) 0%,
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(221, 232, 245, 0.72) 0%,
      transparent 30%
    ),
    #f5f7fb;
}

.marketplace-page {
  position: relative;
  display: flex;
  display: -webkit-flex;
  gap: 24px;
  align-items: flex-start;
  padding-top: 26px;
}

.marketplace-page .shopping_left_menu {
  flex: 0 0 292px;
  max-width: 292px;
  position: sticky;
  top: 94px;
  align-self: flex-start;
}

.marketplace-page .i_shopping_menu_wrapper {
  min-height: 0;
  padding: 14px;
  border: 1px solid #e4eaf2;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  box-shadow: none;
}

.marketplace-page .i_shop_title {
  padding: 0 4px 10px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #77859a;
}

.marketplace-page .i_sh_menu_wrapper {
  padding: 0;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 8px;
}

.marketplace-page .i_sp_menu_box {
  gap: 10px;
  padding: 12px 13px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: #1f2b45;
  font-size: 13px;
  font-weight: 600;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    color 0.18s ease;
}

.marketplace-page .i_sp_menu_box:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: #dce4ee;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.marketplace-page .i_sp_menu_box svg {
  width: 20px;
  height: 20px;
  margin-right: 0;
  fill: currentColor;
}

.marketplace-page .shopping_left_menu .active_p {
  background: #18233d;
  border-color: #18233d;
  color: #ffffff !important;
  box-shadow: none;
}

.marketplace-page .shopping_left_menu .active_p svg {
  fill: #ffffff !important;
}

.marketplace-page .shop_main_wrapper {
  min-width: 0;
  padding-left: 0;
}

.marketplace-page .shop_main_wrapper_container {
  justify-content: flex-start;
}

.marketplace-page .marketplace-hero {
  padding: 20px 22px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(250, 245, 240, 0.98) 0%,
    rgba(241, 246, 252, 0.98) 56%,
    rgba(252, 253, 255, 0.98) 100%
  );
  border: 1px solid #e4ebf4;
  box-shadow: none;
  gap: 26px;
  align-items: flex-end;
}

.marketplace-page .marketplace-hero:after {
  right: -86px;
  top: auto;
  bottom: -132px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(24, 35, 61, 0.08), transparent 66%);
  transform: none;
}

.marketplace-page .marketplace-hero__content {
  gap: 16px;
  align-items: flex-start;
}

.marketplace-page .marketplace-hero__icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(217, 227, 239, 0.92);
  box-shadow: none;
}

.marketplace-page .marketplace-hero__icon svg {
  width: 22px;
  height: 22px;
  fill: #18233d;
}

.marketplace-page .marketplace-hero__text {
  gap: 6px;
  max-width: 460px;
}

.marketplace-page .marketplace-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #6f7f94;
}

.marketplace-page .marketplace-hero__title {
  font-size: 24px;
  letter-spacing: -0.03em;
  color: #18233d;
}

.marketplace-page .marketplace-hero__subtitle {
  font-size: 13px;
  line-height: 1.5;
  color: #607086;
}

.marketplace-page .marketplace-hero__highlights {
  max-width: 320px;
  justify-content: flex-end;
  gap: 8px;
}

.marketplace-page .hero-highlight {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e3eaf3;
  box-shadow: none;
  color: #24324b;
  font-size: 12px;
  font-weight: 700;
}

.marketplace-page .hero-highlight.alt {
  background: rgba(249, 250, 252, 0.78);
}

.marketplace-page .pulse-dot,
.marketplace-page .pulse-dot.alt {
  width: 8px;
  height: 8px;
  box-shadow: none;
}

.marketplace-page .pulse-dot {
  background: #18233d;
}

.marketplace-page .pulse-dot.alt {
  background: #70849d;
}

.marketplace-page .marketplace-grid,
.marketplace-page #moreType[data-po="products"] {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  padding: 16px 0 8px;
  justify-items: stretch;
  justify-content: flex-start;
}

.marketplace-page .marketplace-grid .s_p_product_container,
.marketplace-page #moreType[data-po="products"] .s_p_product_container {
  width: min(100%, 360px);
  max-width: 360px;
  margin: 0;
  justify-self: flex-start;
}

.marketplace-page .marketplace-card,
.marketplace-page #moreType[data-po="products"] .marketplace-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid #e4eaf2;
  border-radius: 24px;
  box-shadow: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.marketplace-page .marketplace-card:hover,
.marketplace-page #moreType[data-po="products"] .marketplace-card:hover {
  transform: translateY(-3px);
  border-color: #d4dde8;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.marketplace-page .marketplace-card .product_image {
  height: auto;
  aspect-ratio: 4 / 4.65;
  background: linear-gradient(180deg, #e9eef5 0%, #dde5ef 100%);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.marketplace-page .marketplace-card .product_image img {
  transition: transform 0.45s ease;
}

.marketplace-page .marketplace-card:hover .product_image img {
  transform: scale(1.03);
}

.marketplace-page .marketplace-card .image_tag {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.marketplace-page .marketplace-card .s_p_details {
  padding: 14px 14px 15px;
  gap: 10px;
}

.marketplace-page .marketplace-card .s_p_title {
  min-height: 42px;
  padding-bottom: 0;
  overflow: hidden;
  color: #162033;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.marketplace-page .s_p_submeta {
  margin-top: 0;
  gap: 6px;
}

.marketplace-page .s_p_chip,
.marketplace-page .s_p_chip.soft {
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid #e5ebf2;
  background: #f6f8fb;
  box-shadow: none;
  color: #617186;
  font-size: 11px;
  font-weight: 700;
}

.marketplace-page .s_p_chip svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.marketplace-page .s_p_meta {
  padding-top: 10px;
  border-top: 1px solid #eef2f7;
  justify-content: flex-end;
}

.marketplace-page .marketplace-card .s_p_product_type {
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.marketplace-page .marketplace-price {
  color: #18233d;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.marketplace-page .marketplace-empty-card {
  gap: 16px;
  padding: 34px 24px;
  background: linear-gradient(135deg, #f7f2eb 0%, #eef4fb 100%);
  border: 1px solid #e4eaf2;
  box-shadow: none;
}

.marketplace-page .marketplace-empty-card__badge {
  padding: 6px 11px;
  background: rgba(24, 35, 61, 0.06);
  box-shadow: none;
  color: #18233d;
  font-size: 11px;
}

.marketplace-page .marketplace-empty-card__body {
  gap: 10px;
}

.marketplace-page .marketplace-empty-card__icon {
  width: 48px;
  height: 48px;
  border: 1px solid #e3eaf3;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.marketplace-page .marketplace-empty-card__icon svg {
  width: 20px;
  height: 20px;
  fill: #18233d;
}

.marketplace-page .marketplace-empty-card__title {
  color: #18233d;
  font-size: 18px;
}

.marketplace-page .marketplace-empty-card__subtitle {
  color: #607086;
  font-size: 13px;
}

.marketplace-page .marketplace-empty-card__cta {
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #18233d;
  box-shadow: none;
  color: #ffffff;
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease,
    background-color 0.18s ease;
}

.marketplace-page .marketplace-empty-card__cta:hover {
  background: #101a30;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.marketplace-page .marketplace-sentinel {
  height: 6px;
}

@media screen and (max-width: 1024px) {
  .marketplace-page {
    gap: 16px;
    padding-top: 18px;
  }
  .marketplace-page .shopping_left_menu {
    position: static;
    flex: none;
    max-width: 100%;
  }
  .marketplace-page .shop_main_wrapper {
    padding: 0;
  }
  .marketplace-page .marketplace-hero {
    padding: 18px;
    border-radius: 24px;
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .marketplace-page .marketplace-hero__highlights {
    max-width: none;
    justify-content: flex-start;
  }
  .marketplace-page .marketplace-grid,
  .marketplace-page #moreType[data-po="products"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .marketplace-page .settings_mobile_ope_menu {
    margin-bottom: 12px;
  }
  .marketplace-page .settings_mobile_menu_container {
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #dfe7f1;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    font-size: 13px;
    font-weight: 700;
    color: #18233d;
  }
  .marketplace-page .settings_mobile_menu_container svg {
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 680px) {
  .marketplace-page .marketplace-grid,
  .marketplace-page #moreType[data-po="products"] {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .marketplace-page .marketplace-grid .s_p_product_container,
  .marketplace-page #moreType[data-po="products"] .s_p_product_container {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
  .marketplace-page .marketplace-hero {
    padding: 16px;
  }
  .marketplace-page .marketplace-hero__title {
    font-size: 20px;
  }
  .marketplace-page .hero-highlight {
    padding: 8px 10px;
    font-size: 11px;
  }
  .marketplace-page .marketplace-card .product_image {
    aspect-ratio: 4 / 4.2;
  }
  .marketplace-page .marketplace-card .s_p_details {
    padding: 12px 12px 13px;
  }
  .marketplace-page .marketplace-card .s_p_title {
    min-height: 0;
    font-size: 14px;
  }
  .marketplace-page .marketplace-price {
    font-size: 18px;
  }
}

/* Who can see modal shell fix */
.who_can_see_modal .i_modal_in_in.who_can_see_modal_shell {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%) !important;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16) !important;
  border-radius: 28px !important;
  -webkit-border-radius: 28px !important;
  overflow: hidden;
}

.who_can_see_modal .who_can_see_modal_body {
  background: transparent;
}

/* Profile connection cards EOF final override */
:is(
  #moreType[data-po="following"],
  #moreType[data-po="followers"],
  #moreType[data-po="subscribers"]
) {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: start !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_card {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
  display: block !important;
  background: transparent !important;
  box-shadow: none !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_card
  .profile_connection_shell {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  min-height: 100% !important;
  padding: 0 18px 18px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%) !important;
  border-radius: 26px !important;
  overflow: hidden !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_card
  .i_sub_box_wrp_prof::before {
  display: none !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_cover {
  position: relative !important;
  display: block !important;
  width: calc(100% + 36px) !important;
  height: 126px !important;
  margin: 0 -18px !important;
  overflow: hidden !important;
  background: linear-gradient(
    135deg,
    #3b2ea6 0%,
    #7d3cf8 35%,
    #ff4f86 72%,
    #ffbf47 100%
  ) !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_cover::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.1) 0%,
    rgba(15, 23, 42, 0.26) 100%
  ) !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_cover_image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_avatar {
  position: relative !important;
  z-index: 2 !important;
  width: 92px !important;
  height: 92px !important;
  margin: -46px 0 14px !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_avatar
  .isubavatar {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 4px solid #ffffff !important;
  background: #ffffff !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 0 16px !important;
  text-align: center !important;
  align-items: center !important;
  gap: 6px !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .i_sub_box_name {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: 100% !important;
  margin: 0 !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #18233f !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .i_sub_box_name
  a {
  max-width: calc(100% - 48px) !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  color: inherit !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .i_sub_box_unm {
  width: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #7a859f !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_verified
  svg,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .i_plus_s
  svg,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .publisherGender
  svg {
  width: 18px !important;
  height: 18px !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action {
  width: 100% !important;
  margin-top: auto !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_follow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  min-height: 46px !important;
  padding: 0 16px !important;
  border-radius: 15px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_follow
  svg {
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  fill: currentColor !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .free_follow {
  background: #0f2442 !important;
  color: #ffffff !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_btn_like_item_flw,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_btn_unsubscribe {
  background: #eef3ff !important;
  color: #223a67 !important;
}

@media (max-width: 740px) {
  :is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  ) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_card
    .profile_connection_shell {
    padding: 0 12px 14px !important;
    border-radius: 20px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_cover {
    width: calc(100% + 24px) !important;
    height: 98px !important;
    margin: 0 -12px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_avatar {
    width: 72px !important;
    height: 72px !important;
    margin-top: -36px !important;
    margin-bottom: 10px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_avatar
    .isubavatar {
    border-width: 3px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_identity
    .i_sub_box_name {
    font-size: 15px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_identity
    .i_sub_box_unm {
    font-size: 12px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_action
    .i_follow {
    min-height: 40px !important;
    padding: 0 12px !important;
    border-radius: 13px !important;
    font-size: 14px !important;
    gap: 6px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_action
    .i_follow
    svg {
    width: 14px !important;
    height: 14px !important;
  }
}

@media (max-width: 980px) {
  :is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  ) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Profile connection cards final override */
:is(
  #moreType[data-po="following"],
  #moreType[data-po="followers"],
  #moreType[data-po="subscribers"]
) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: start;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_card {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_card
  .profile_connection_shell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 0 18px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border-radius: 26px;
  overflow: hidden;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_card
  .i_sub_box_wrp_prof::before {
  display: none;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_cover {
  position: relative;
  display: block;
  width: calc(100% + 36px);
  margin: 0 -18px;
  height: 126px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #3b2ea6 0%,
    #7d3cf8 35%,
    #ff4f86 72%,
    #ffbf47 100%
  );
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.1) 0%,
    rgba(15, 23, 42, 0.26) 100%
  );
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_cover_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_avatar {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  margin-top: -46px;
  margin-bottom: 14px;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_avatar
  a {
  display: block;
  width: 100%;
  height: 100%;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_avatar
  .isubavatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity {
  width: 100%;
  min-width: 0;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin: 0 0 16px;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .i_sub_box_name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: #18233f;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .i_sub_box_name
  a {
  max-width: calc(100% - 48px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: inherit;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_verified,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .i_plus_s,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .publisherGender {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_verified
  svg,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .i_plus_s
  svg,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .publisherGender
  svg {
  width: 18px;
  height: 18px;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .i_sub_box_unm {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  color: #7a859f;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action {
  width: 100%;
  margin-top: auto;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_follow
  svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .free_follow {
  background: #0f2442;
  color: #ffffff;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .free_follow:hover {
  background: #162e55;
  transform: translateY(-1px);
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_btn_like_item_flw,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_btn_unsubscribe {
  background: #eef3ff;
  color: #223a67;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_btn_like_item_flw:hover,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_btn_unsubscribe:hover {
  background: #e4ecff;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_btn_like_item_flw
  svg,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_btn_unsubscribe
  svg,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .free_follow
  svg {
  fill: currentColor;
}

@media (max-width: 740px) {
  :is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  ) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_card
    .profile_connection_shell {
    padding: 0 12px 14px;
    border-radius: 20px;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_cover {
    width: calc(100% + 24px);
    margin: 0 -12px;
    height: 98px;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_avatar {
    width: 72px;
    height: 72px;
    margin-top: -36px;
    margin-bottom: 10px;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_avatar
    .isubavatar {
    border-width: 3px;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_identity {
    margin-bottom: 12px;
    gap: 4px;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_identity
    .i_sub_box_name {
    font-size: 15px;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_identity
    .i_sub_box_name
    a {
    max-width: calc(100% - 42px);
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_identity
    .i_sub_box_unm {
    font-size: 12px;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_action
    .i_follow {
    min-height: 40px;
    padding: 0 12px;
    border-radius: 13px;
    font-size: 14px;
    gap: 6px;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_action
    .i_follow
    svg {
    width: 14px;
    height: 14px;
  }
}

/* Following page UX tightening */
:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_box_wrp_prof {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 14px;
  border-radius: 22px;
  -webkit-border-radius: 22px;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_box_wrp_prof::before {
  top: 10px;
  bottom: 10px;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .isubavatar {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_box_name_time {
  gap: 3px;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_box_name {
  font-size: 15px;
  line-height: 1.1;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_box_unm {
  font-size: 13px;
  line-height: 1.2;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_flw
  .i_follow {
  min-width: 112px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 13px;
  -webkit-border-radius: 13px;
  font-size: 13px;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_flw
  .i_follow
  svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

@media screen and (max-width: 740px) {
  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .i_sub_box_wrp_prof {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 10px 12px 12px;
  }

  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .i_sub_box_wrp_prof::before {
    top: 10px;
    bottom: 10px;
  }

  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .isubavatar {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
  }

  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .i_sub_box_name_time {
    gap: 2px;
  }

  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .i_sub_box_name {
    font-size: 14px;
  }

  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .i_sub_box_unm {
    font-size: 12px;
  }

  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .i_sub_flw {
    grid-column: 1 / -1;
    width: 100%;
  }

  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .i_sub_flw
    .i_follow {
    width: 100%;
    min-width: 0;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    font-size: 12px;
  }
}

.start_chat_modal {
  padding: 24px 16px;
}

.start_chat_modal .start_chat_modal_shell {
  width: min(560px, calc(100vw - 32px));
  max-width: 560px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.start_chat_modal .start_chat_modal_content {
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: min(760px, calc(100vh - 48px));
  background: transparent;
}

.start_chat_modal .start_chat_modal_header {
  position: relative;
  justify-content: flex-start;
  padding: 20px 20px 14px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  text-align: left;
}

.start_chat_modal .start_chat_modal_title_wrap {
  min-width: 0;
  padding-right: 64px;
}

.start_chat_modal .start_chat_modal_title {
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.start_chat_modal .start_chat_modal_close {
  right: 18px;
  top: 50%;
  padding: 10px;
  transform: translateY(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  box-shadow: none;
}

.start_chat_modal .start_chat_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}

.start_chat_modal .start_chat_modal_close svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}

.start_chat_modal .start_chat_modal_body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px 15px;
  overflow: auto;
  background-color: #f8fafc;
}

.start_chat_modal .start_chat_modal_recipient {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  border: 1px solid #dde6f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.start_chat_modal .start_chat_modal_recipient_avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: #e9eef6;
}

.start_chat_modal .start_chat_modal_recipient_avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.start_chat_modal .start_chat_modal_recipient_meta {
  min-width: 0;
}

.start_chat_modal .start_chat_modal_recipient_name {
  color: #18233d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
}

.start_chat_modal .start_chat_modal_field {
  padding: 0;
}

.start_chat_modal .start_chat_modal_label {
  display: block;
  margin-bottom: 8px;
  color: #53627c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.start_chat_modal .start_chat_modal_textarea_shell {
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  border: 1px solid #dde6f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.start_chat_modal .start_chat_modal_textarea_shell:focus-within {
  border-color: #cad8ea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 0 0 4px rgba(226, 232, 240, 0.55);
}

.start_chat_modal .start_chat_modal_textarea {
  min-height: 156px;
  padding: 14px 16px 16px;
  border: none;
  background: transparent;
  border-radius: 24px;
  font-size: 15px;
  line-height: 1.65;
  color: #1f2b45;
}

.start_chat_modal .start_chat_modal_textarea::placeholder {
  color: #9aa5b8;
}

.start_chat_modal .start_chat_modal_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 18px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-top: 1px solid #e8eef7;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.start_chat_modal .start_chat_modal_footer .alertBtnLeft,
.start_chat_modal .start_chat_modal_footer .alertBtnRightWithIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 126px;
  height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

.start_chat_modal .start_chat_modal_footer .alertBtnLeft {
  background: #e9eef6;
  border: 1px solid #d6dfec;
  color: #55657f;
}

.start_chat_modal .start_chat_modal_footer .alertBtnLeft:hover {
  background: #e2e9f2;
  border-color: #cbd6e5;
}

.start_chat_modal .start_chat_modal_footer .alertBtnRightWithIcon {
  background: linear-gradient(135deg, #ff587c 0%, #ff7b92 100%);
  border: 1px solid #ff587c;
  color: #ffffff;
}

.start_chat_modal .start_chat_modal_footer .alertBtnRightWithIcon:hover {
  background: linear-gradient(135deg, #ff4d73 0%, #ff7089 100%);
  border-color: #ff4d73;
}

.start_chat_modal .start_chat_modal_footer .alertBtnRightWithIcon svg {
  width: 15px;
  height: 15px;
  margin-right: 0;
  fill: #ffffff;
}

@media only screen and (max-width: 700px) {
  .start_chat_modal {
    padding: 12px 10px;
  }

  .start_chat_modal .start_chat_modal_shell {
    width: min(100%, calc(100vw - 24px));
    border-radius: 22px;
  }

  .start_chat_modal .start_chat_modal_content {
    max-height: calc(100vh - 24px);
  }

  .start_chat_modal .start_chat_modal_header {
    padding: 16px 16px 11px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }

  .start_chat_modal .start_chat_modal_title_wrap {
    padding-right: 56px;
  }

  .start_chat_modal .start_chat_modal_title {
    font-size: 17px;
  }

  .start_chat_modal .start_chat_modal_close {
    right: 12px;
    padding: 9px;
    border-radius: 14px;
  }

  .start_chat_modal .start_chat_modal_body {
    gap: 12px;
    padding: 16px 16px 0;
  }

  .start_chat_modal .start_chat_modal_recipient {
    padding: 11px 12px;
    border-radius: 18px;
  }

  .start_chat_modal .start_chat_modal_recipient_avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .start_chat_modal .start_chat_modal_textarea {
    min-height: 128px;
    padding: 12px 13px;
    font-size: 15px;
  }

  .start_chat_modal .start_chat_modal_footer {
    flex-direction: column;
    padding: 12px 16px 16px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }

  .start_chat_modal .start_chat_modal_footer .start_chat_modal_submit,
  .start_chat_modal .start_chat_modal_footer .start_chat_modal_cancel {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .start_chat_modal .start_chat_modal_footer .start_chat_modal_submit {
    order: 1;
  }

  .start_chat_modal .start_chat_modal_footer .start_chat_modal_cancel {
    order: 2;
  }
}

.tip_point_modal {
  padding: 24px 16px;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
}

body.tip_point_modal_open {
  overflow: hidden;
}

.i_modal_bg_in.tip_point_modal .i_modal_in_in.tip_point_modal_shell {
  width: min(520px, calc(100vw - 32px)) !important;
  margin: 24px auto;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.i_modal_bg_in.tip_point_modal .i_modal_content.tip_point_modal_content {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.tip_point_modal .tip_point_modal_header {
  position: relative;
  justify-content: flex-start;
  padding: 20px 20px 14px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  text-align: left;
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.tip_point_modal .tip_point_modal_close {
  right: 18px;
  top: 50%;
  padding: 10px;
  transform: translateY(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  box-shadow: none;
}

.tip_point_modal .tip_point_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}

.tip_point_modal .tip_point_modal_close svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}

.tip_point_modal .tip_point_modal_body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px;
  background: #f8fafc;
}

.tip_point_modal .i_set_subscription_fee_box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.tip_point_modal .i_set_subscription_fee {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 58px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  border: 1px solid #dde6f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.tip_point_modal .i_set_subscription_fee:focus-within {
  border-color: #cad8ea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 0 0 4px rgba(226, 232, 240, 0.55);
}

.tip_point_modal .i_subs_currency {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  min-width: 62px;
  background: rgba(230, 236, 245, 0.72);
  border-right: 1px solid #dde6f1;
}

.tip_point_modal .i_subs_currency svg {
  width: 20px;
  height: 20px;
  fill: #5b6781;
}

.tip_point_modal .i_subs_price {
  flex: 1;
  min-width: 0;
}

.tip_point_modal .i_subs_price .aval {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #1f2b45;
}

.tip_point_modal .i_subs_price .aval::placeholder {
  color: #9aa5b8;
  font-weight: 500;
}

.tip_point_modal .i_subs_price .aval:focus {
  outline: none;
}

.tip_point_modal .border-right-radius {
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
}

.tip_point_modal .i_tip_not {
  font-size: 12px;
  line-height: 1.45;
  color: #7b88a1;
}

.tip_point_modal .tip_point_modal_footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 20px 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #f5f7fb 100%);
}

.tip_point_modal .tip_point_modal_footer--single {
  grid-template-columns: minmax(0, 1fr);
}

.tip_point_modal .send_tip_btn,
.tip_point_modal .send_tip_btn_profile,
.tip_point_modal .send_tip_btn_message,
.tip_point_modal .send_tip_methods_btn {
  width: 100%;
  height: 46px;
  min-height: 46px;
  margin: 0;
  padding: 0 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  box-sizing: border-box;
  flex-wrap: nowrap;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  box-shadow: none;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.tip_point_modal .send_tip_btn,
.tip_point_modal .send_tip_btn_profile,
.tip_point_modal .send_tip_btn_message {
  background: linear-gradient(135deg, #ff587c 0%, #ff8667 52%, #ffbc45 100%);
  border: 1px solid #ff6a79;
  color: #ffffff;
}

.tip_point_modal .send_tip_btn:hover,
.tip_point_modal .send_tip_btn_profile:hover,
.tip_point_modal .send_tip_btn_message:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(255, 88, 124, 0.18);
}

.tip_point_modal .send_tip_methods_btn {
  background: #edf2f8;
  border: 1px solid #d8e1ed;
  color: #53627c;
}

.tip_point_modal .send_tip_methods_btn:hover {
  transform: translateY(-1px);
  background: #e7edf5;
  border-color: #cfd9e6;
}

.tip_point_modal .send_tip_btn svg,
.tip_point_modal .send_tip_btn_profile svg,
.tip_point_modal .send_tip_btn_message svg,
.tip_point_modal .send_tip_methods_btn svg {
  width: 16px;
  height: 16px;
  margin-right: 0;
}

.tip_point_modal .send_tip_btn svg,
.tip_point_modal .send_tip_btn_profile svg,
.tip_point_modal .send_tip_btn_message svg {
  fill: #ffffff;
}

.tip_point_modal .send_tip_methods_btn svg {
  fill: #64748b;
}

@media only screen and (max-width: 700px) {
  .tip_point_modal {
    padding: 12px 10px;
  }

  .i_modal_bg_in.tip_point_modal .i_modal_in_in.tip_point_modal_shell {
    width: min(100%, calc(100vw - 24px)) !important;
    margin: 12px auto 24px;
    border-radius: 22px;
  }

  .tip_point_modal .tip_point_modal_header {
    padding: 16px 16px 11px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    font-size: 17px;
  }

  .tip_point_modal .tip_point_modal_close {
    right: 12px;
    top: 50%;
    padding: 9px;
    transform: translateY(-50%);
    border-radius: 14px;
  }

  .tip_point_modal .tip_point_modal_body {
    padding: 16px;
  }

  .tip_point_modal .i_set_subscription_fee {
    min-height: 54px;
    border-radius: 18px;
  }

  .tip_point_modal .i_subs_currency {
    width: 58px;
    min-width: 58px;
  }

  .tip_point_modal .i_subs_price .aval {
    height: 54px;
    padding: 0 16px;
    font-size: 17px;
  }

  .tip_point_modal .border-right-radius {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
  }

  .tip_point_modal .tip_point_modal_footer {
    grid-template-columns: minmax(0, 1fr);
    padding: 0 16px 16px;
  }

  .tip_point_modal .send_tip_btn,
  .tip_point_modal .send_tip_btn_profile,
  .tip_point_modal .send_tip_btn_message,
  .tip_point_modal .send_tip_methods_btn {
    height: 44px;
    min-height: 44px;
    margin: 0;
    padding: 0 16px;
    border-radius: 14px;
  }
}

.frame_gift_modal {
  padding: 24px 16px;
  justify-content: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
}

.i_modal_bg_in.frame_gift_modal .i_modal_in_in.frame_gift_modal_shell {
  width: min(780px, calc(100vw - 32px)) !important;
  margin: 24px auto;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.i_modal_bg_in.frame_gift_modal .i_modal_content.frame_gift_modal_content {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.frame_gift_modal .frame_gift_modal_header {
  position: relative;
  justify-content: flex-start;
  padding: 20px 20px 14px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  text-align: left;
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.frame_gift_modal .frame_gift_modal_close {
  right: 18px;
  top: 50%;
  padding: 10px;
  transform: translateY(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  box-shadow: none;
}

.frame_gift_modal .frame_gift_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}

.frame_gift_modal .frame_gift_modal_close svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}

.frame_gift_modal .frame_gift_modal_body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background: #f8fafc;
  align-items: stretch;
}

.frame_gift_modal .credit_plan_box.frame_gift_modal_card {
  padding: 0;
  position: relative;
}

.frame_gift_modal .plan_box_frame.frame_gift_modal_card_inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  min-height: 100%;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid #dde6f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.frame_gift_modal
  .credit_plan_box.frame_gift_modal_card:hover
  .frame_gift_modal_card_inner {
  transform: translateY(-2px);
  border-color: #d0dbe9;
  box-shadow: 0 16px 28px rgba(148, 163, 184, 0.14);
}

.frame_gift_modal .a_image_area_live_gift.theaImage {
  width: 100%;
  min-height: 168px;
  padding: 12px;
  border: 1px solid #e1e9f4;
  border-radius: 18px;
  background-color: #eef3f9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
}

.frame_gift_modal .a-item-img_live_gift {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.frame_gift_modal .plan_value {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  text-align: left;
}

.frame_gift_modal .plan_price {
  font-size: 28px;
  line-height: 1;
  color: #1f2b45;
  text-align: left;
}

.frame_gift_modal .plan_price .ib {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.frame_gift_modal .plan_point_icon {
  position: static;
  opacity: 1;
  font-size: 0;
}

.frame_gift_modal .plan_point_icon svg {
  width: 18px;
  height: 18px;
  fill: #ff7b5f;
}

.frame_gift_modal .plan_point {
  padding-top: 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  justify-content: flex-start;
  color: #7b88a1;
}

.frame_gift_modal .purchaseButton.frame_gift_modal_purchase {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  min-height: 58px;
  margin: auto 0 0;
  padding: 10px 14px;
  border: 1px solid #ff6d78;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff587c 0%, #ff8667 52%, #ffbc45 100%);
  color: #ffffff;
  text-align: left;
  letter-spacing: normal;
  text-transform: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  box-shadow: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.frame_gift_modal .purchaseButton.frame_gift_modal_purchase:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(255, 88, 124, 0.2);
  filter: saturate(1.03);
}

.frame_gift_modal .purchaseButton.frame_gift_modal_purchase strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
}

.frame_gift_modal .purchaseButton.frame_gift_modal_purchase strong .prcsic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.frame_gift_modal .purchaseButton.frame_gift_modal_purchase strong .prcsic svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

.frame_gift_modal .purchaseButton.frame_gift_modal_purchase .foramount {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.84);
  white-space: nowrap;
}

.frame_gift_modal .frame_gift_modal_footer {
  padding: 14px 20px 18px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-top: 1px solid #e8eef7;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  font-size: 13px;
  line-height: 1.55;
  color: #6c7a92;
}

@media only screen and (max-width: 900px) {
  .i_modal_bg_in.frame_gift_modal .i_modal_in_in.frame_gift_modal_shell {
    width: min(640px, calc(100vw - 32px)) !important;
  }

  .frame_gift_modal .frame_gift_modal_body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 700px) {
  .frame_gift_modal {
    padding: 12px 10px;
  }

  .i_modal_bg_in.frame_gift_modal .i_modal_in_in.frame_gift_modal_shell {
    width: min(100%, calc(100vw - 24px)) !important;
    margin: 12px auto 24px;
    border-radius: 22px;
  }

  .frame_gift_modal .frame_gift_modal_header {
    padding: 16px 16px 11px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    font-size: 17px;
  }

  .frame_gift_modal .frame_gift_modal_close {
    right: 12px;
    top: 50%;
    padding: 9px;
    transform: translateY(-50%);
    border-radius: 14px;
  }

  .frame_gift_modal .frame_gift_modal_body {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .frame_gift_modal .plan_box_frame.frame_gift_modal_card_inner {
    padding: 12px;
    border-radius: 20px;
  }

  .frame_gift_modal .a_image_area_live_gift.theaImage {
    min-height: 156px;
    padding: 12px;
    border-radius: 18px;
  }

  .frame_gift_modal .plan_price {
    font-size: 26px;
  }

  .frame_gift_modal .purchaseButton.frame_gift_modal_purchase {
    min-height: 56px;
    padding: 10px 13px;
    border-radius: 18px;
    font-size: 13px;
  }

  .frame_gift_modal .frame_gift_modal_footer {
    padding: 12px 16px 16px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }
}

.block_notice_modal {
  padding: 24px 16px;
}

.block_notice_modal .block_notice_modal_shell {
  width: min(760px, calc(100vw - 32px));
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.block_notice_modal .block_notice_modal_content {
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: min(860px, calc(100vh - 48px));
  background: transparent;
}

.block_notice_modal .block_notice_modal_header {
  position: relative;
  justify-content: flex-start;
  padding: 20px 20px 14px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  text-align: left;
}

.block_notice_modal .block_notice_modal_title_wrap {
  min-width: 0;
  padding-right: 64px;
}

.block_notice_modal .block_notice_modal_title {
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.block_notice_modal .block_notice_modal_close {
  right: 18px;
  top: 50%;
  padding: 10px;
  transform: translateY(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  box-shadow: none;
}

.block_notice_modal .block_notice_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}

.block_notice_modal .block_notice_modal_close svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}

.block_notice_modal .block_notice_modal_body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px 15px;
  overflow: auto;
  background-color: #f8fafc;
}

.block_notice_modal .block_notice_modal_sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.block_notice_modal .block_notice_modal_section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.block_notice_modal .block_notice_modal_option {
  align-self: stretch;
  gap: 12px;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #18233d;
}

.block_notice_modal .block_notice_modal_option_indicator {
  padding-right: 0;
}

.block_notice_modal .block_notice_modal_option_text {
  min-width: 0;
}

.block_notice_modal .block_notice_modal_option .blockboxActive,
.block_notice_modal .block_notice_modal_option .blockboxPassive {
  width: 14px;
  height: 14px;
}

.block_notice_modal .block_notice_modal_option .blockboxActive {
  background: #ff587c;
}

.block_notice_modal .block_notice_modal_option .blockboxActive::after,
.block_notice_modal .block_notice_modal_option .blockboxPassive::after {
  width: 28px;
  height: 28px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-width: 2px;
}

.block_notice_modal .block_notice_modal_option .blockboxActive::after {
  border-color: rgba(255, 88, 124, 0.28);
}

.block_notice_modal .block_notice_modal_option .blockboxPassive::after {
  border-color: #d8e1ed;
}

.block_notice_modal .block_notice_modal_panel {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid #dfe7f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.block_notice_modal .block_notice_modal_panel .i_block_not_title {
  padding: 0;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #52627b;
}

.block_notice_modal
  .block_notice_modal_panel
  .i_block_not_title
  + .i_block_not_list {
  margin-bottom: 12px;
}

.block_notice_modal .block_notice_modal_panel .i_block_not_list {
  gap: 8px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
  color: #1f2b45;
}

.block_notice_modal .block_notice_modal_panel .i_block_not_list li {
  position: relative;
  padding: 0 0 0 16px;
}

.block_notice_modal .block_notice_modal_panel .i_block_not_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6b87;
}

.block_notice_modal .block_notice_modal_panel .i_block_not_title_plus {
  padding: 10px 12px;
  margin-top: 8px;
  border-radius: 14px;
  background: rgba(246, 81, 105, 0.06);
  border: 1px solid rgba(246, 81, 105, 0.12);
  font-size: 13px;
  line-height: 1.45;
  color: #4b5568;
}

.block_notice_modal .block_notice_modal_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 18px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-top: 1px solid #e8eef7;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.block_notice_modal .block_notice_modal_footer .alertBtnLeft,
.block_notice_modal .block_notice_modal_footer .alertBtnRightWithIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 126px;
  height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

.block_notice_modal .block_notice_modal_footer .alertBtnLeft {
  background: #e9eef6;
  border: 1px solid #d6dfec;
  color: #55657f;
}

.block_notice_modal .block_notice_modal_footer .alertBtnLeft:hover {
  background: #e2e9f2;
  border-color: #cbd6e5;
}

.block_notice_modal .block_notice_modal_footer .alertBtnRightWithIcon {
  background: linear-gradient(135deg, #ff587c 0%, #ff7b92 100%);
  border: 1px solid #ff587c;
  color: #ffffff;
}

.block_notice_modal .block_notice_modal_footer .alertBtnRightWithIcon:hover {
  background: linear-gradient(135deg, #ff4d73 0%, #ff7089 100%);
  border-color: #ff4d73;
}

.block_notice_modal .block_notice_modal_footer .alertBtnRightWithIcon svg {
  width: 15px;
  height: 15px;
  margin-right: 0;
  fill: #ffffff;
}

@media only screen and (max-width: 700px) {
  .block_notice_modal {
    padding: 12px 10px;
  }

  .block_notice_modal .block_notice_modal_shell {
    width: min(100%, calc(100vw - 24px));
    border-radius: 22px;
  }

  .block_notice_modal .block_notice_modal_content {
    max-height: calc(100vh - 24px);
  }

  .block_notice_modal .block_notice_modal_header {
    padding: 16px 16px 11px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }

  .block_notice_modal .block_notice_modal_title_wrap {
    padding-right: 56px;
  }

  .block_notice_modal .block_notice_modal_title {
    font-size: 17px;
  }

  .block_notice_modal .block_notice_modal_close {
    right: 12px;
    padding: 9px;
    border-radius: 14px;
  }

  .block_notice_modal .block_notice_modal_body {
    gap: 14px;
    padding: 16px 16px 14px;
  }

  .block_notice_modal .block_notice_modal_option {
    font-size: 15px;
  }

  .block_notice_modal .block_notice_modal_panel {
    padding: 16px 14px 14px;
    border-radius: 18px;
  }

  .block_notice_modal .block_notice_modal_panel .i_block_not_list {
    font-size: 13px;
  }

  .block_notice_modal .block_notice_modal_panel .i_block_not_title_plus {
    font-size: 12px;
  }

  .block_notice_modal .block_notice_modal_footer {
    flex-direction: column;
    padding: 12px 16px 16px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }

  .block_notice_modal .block_notice_modal_footer .block_notice_modal_submit,
  .block_notice_modal .block_notice_modal_footer .block_notice_modal_cancel {
    width: 100%;
    box-sizing: border-box;
  }

  .block_notice_modal .block_notice_modal_footer .block_notice_modal_submit {
    order: 1;
  }

  .block_notice_modal .block_notice_modal_footer .block_notice_modal_cancel {
    order: 2;
  }
}

.subscription_offer_modal {
  padding: 24px 16px;
  overflow-y: auto;
  overflow-x: hidden;
}

.subscription_offer_modal .subscription_offer_modal_shell {
  width: min(680px, calc(100vw - 32px));
  max-width: 680px;
  margin: 24px auto;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.subscription_offer_modal .subscription_offer_modal_content {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: transparent;
  max-height: none;
  overflow: visible;
}

.subscription_offer_modal .subscription_offer_modal_cover {
  position: relative;
  display: block;
  width: 100%;
  height: 178px;
  overflow: visible;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  background: #e6edf6;
}

.subscription_offer_modal .subscription_offer_modal_cover_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subscription_offer_modal .subscription_offer_modal_cover_overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.18) 0%,
      rgba(15, 23, 42, 0.48) 100%
    ),
    linear-gradient(
      135deg,
      rgba(246, 81, 105, 0.22) 0%,
      rgba(250, 180, 41, 0.16) 100%
    );
}

.subscription_offer_modal .subscription_offer_modal_close {
  right: 18px;
  top: 16px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.subscription_offer_modal .subscription_offer_modal_close:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: #ffffff;
}

.subscription_offer_modal .subscription_offer_modal_close svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: #4f5d77;
}

.subscription_offer_modal .subscription_offer_modal_avatar_container {
  bottom: -54px;
}

.subscription_offer_modal .subscription_offer_modal_avatar {
  width: 112px;
  height: 112px;
  border: 4px solid #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  background: #ffffff;
}

.subscription_offer_modal .subscription_offer_modal_avatar_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subscription_offer_modal .subscription_offer_modal_body {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 72px 32px 30px;
  background: linear-gradient(180deg, #fbfcff 0%, #f7f9fc 100%);
}

.subscription_offer_modal .subscription_offer_modal_name {
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #18233d;
  padding: 0;
}

.subscription_offer_modal .subscription_offer_modal_name a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.subscription_offer_modal .subscription_offer_modal_handle {
  padding-top: 4px;
  text-align: center;
}

.subscription_offer_modal .subscription_offer_modal_handle a {
  color: #7d8aa1;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.subscription_offer_modal .subscription_offer_modal_support {
  display: block;
  max-width: 460px;
  padding: 16px 0 0;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: #67758e;
}

.subscription_offer_modal .subscription_offer_modal_section_title {
  margin-top: 30px;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #52627b;
}

.subscription_offer_modal .subscription_offer_modal_section_title_offers {
  margin-bottom: 0;
}

.subscription_offer_modal .subscription_offer_modal_advantages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 16px 0 0;
  text-align: left;
}

.subscription_offer_modal .subscription_offer_modal_advantage {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 100%;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dee7f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.55;
  color: #22304a;
}

.subscription_offer_modal .subscription_offer_modal_advantage svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-right: 0;
  fill: #f65f7e;
}

.subscription_offer_modal .subscription_offer_modal_offers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
}

.subscription_offer_modal .subscription_offer_modal_offer_row {
  padding: 0;
}

.subscription_offer_modal .subscribe_price_btn {
  justify-content: center;
  min-height: 62px;
  padding: 0 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff5b7f 0%, #ff7b55 50%, #ffb82f 100%);
  box-shadow: 0 18px 34px rgba(255, 107, 130, 0.2);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.subscription_offer_modal .subscribe_price_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 38px rgba(255, 107, 130, 0.24);
}

.subscription_offer_modal .subscribe_price_btn svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: #ffffff;
}

.subscription_offer_modal--points .subscribe_price_btn {
  background: linear-gradient(135deg, #ff6487 0%, #ff8b63 50%, #ffc243 100%);
}

@media only screen and (max-width: 700px) {
  .subscription_offer_modal {
    padding: 12px 10px;
  }

  .subscription_offer_modal .subscription_offer_modal_shell {
    width: min(100%, calc(100vw - 24px));
    margin: 12px auto 24px;
    border-radius: 22px;
  }

  .subscription_offer_modal .subscription_offer_modal_content {
    max-height: none;
  }

  .subscription_offer_modal .subscription_offer_modal_cover {
    height: 148px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }

  .subscription_offer_modal .subscription_offer_modal_close {
    right: 12px;
    top: 12px;
    padding: 9px;
    border-radius: 14px;
  }

  .subscription_offer_modal .subscription_offer_modal_avatar_container {
    bottom: -46px;
  }

  .subscription_offer_modal .subscription_offer_modal_avatar {
    width: 96px;
    height: 96px;
  }

  .subscription_offer_modal .subscription_offer_modal_body {
    padding: 92px 18px 18px;
  }

  .subscription_offer_modal .subscription_offer_modal_name {
    font-size: 17px;
  }

  .subscription_offer_modal .subscription_offer_modal_handle a,
  .subscription_offer_modal .subscription_offer_modal_support {
    font-size: 13px;
  }

  .subscription_offer_modal .subscription_offer_modal_advantages {
    gap: 10px;
  }

  .subscription_offer_modal .subscription_offer_modal_advantage {
    padding: 14px 14px;
    border-radius: 18px;
    font-size: 13px;
  }

  .subscription_offer_modal .subscribe_price_btn {
    min-height: 56px;
    padding: 0 16px;
    border-radius: 18px;
    font-size: 14px;
  }
}

.free_follow_modal {
  padding: 24px 16px;
}

.i_modal_bg_in.free_follow_modal .i_modal_in_in.free_follow_modal_shell {
  width: min(520px, calc(100vw - 32px));
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.free_follow_modal .free_follow_modal_content {
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: min(860px, calc(100vh - 48px));
  background: transparent;
}

.free_follow_modal .free_follow_modal_header {
  position: relative;
  justify-content: flex-start;
  padding: 20px 20px 14px;
  background: linear-gradient(180deg, #fff8f8 0%, #f7f9ff 100%);
  border-bottom: 1px solid #e7edf6;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  text-align: left;
}

.free_follow_modal .free_follow_modal_title_wrap {
  min-width: 0;
  padding-right: 64px;
}

.free_follow_modal .free_follow_modal_title {
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.free_follow_modal .free_follow_modal_subtitle {
  margin-top: 4px;
  color: #7b88a1;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.free_follow_modal .free_follow_modal_close {
  right: 18px;
  top: 50%;
  padding: 10px;
  transform: translateY(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #dce5f0;
  box-shadow: none;
}

.free_follow_modal .free_follow_modal_close svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}

.free_follow_modal .free_follow_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}

.free_follow_modal .free_follow_modal_body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px 0;
  overflow: auto;
  background-color: #f8fafc;
}

.free_follow_modal .free_follow_modal_profile_card {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff4f5 0%, #ffffff 68%);
  border: 1px solid #e5eaf3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.free_follow_modal .free_follow_modal_cover {
  position: relative;
  min-height: 156px;
  background-color: #f1f5f9;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.free_follow_modal .free_follow_modal_cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.08) 0%,
      rgba(15, 23, 42, 0.42) 100%
    ),
    linear-gradient(
      135deg,
      rgba(246, 81, 105, 0.28) 0%,
      rgba(250, 180, 41, 0.16) 100%
    );
}

.free_follow_modal .free_follow_modal_cover::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0) 72%
  );
}

.free_follow_modal .free_follow_modal_identity {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: -50px;
  padding: 0 18px 20px;
  text-align: center;
}

.free_follow_modal .free_follow_modal_avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.free_follow_modal .free_follow_modal_user_meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.free_follow_modal .free_follow_modal_name_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #162033;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-decoration: none;
  flex-wrap: wrap;
}

.free_follow_modal .free_follow_modal_name_text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.free_follow_modal .free_follow_modal_name_icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.free_follow_modal .free_follow_modal_name_icons svg {
}

.free_follow_modal .free_follow_modal_username a {
  color: #7a869d;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.free_follow_modal .free_follow_modal_section_title {
  color: #42526b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.free_follow_modal .free_follow_modal_benefit_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 0 16px;
}

.free_follow_modal .free_follow_modal_benefit_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fe 100%);
  border: 1px solid #e3e9f3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.free_follow_modal .free_follow_modal_benefit_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(246, 81, 105, 0.14) 0%,
    rgba(250, 180, 41, 0.2) 100%
  );
  color: var(--dizzy-theme-brand-primary, #f65169);
}

.free_follow_modal .free_follow_modal_benefit_icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.free_follow_modal .free_follow_modal_benefit_text {
  color: #253247;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}

.free_follow_modal .free_follow_modal_footer {
  display: flex;
  align-items: center;
  padding: 16px 20px 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f6f8fc 100%);
  border-top: 1px solid #e8eef7;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.free_follow_modal .free_follow_modal_submit {
  width: 100%;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    var(--dizzy-theme-brand-primary, #f65169) 0%,
    var(--dizzy-theme-brand-secondary, #fab429) 100%
  );
  box-shadow: 0 20px 42px rgba(246, 81, 105, 0.24);
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.free_follow_modal .free_follow_modal_submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(246, 81, 105, 0.28);
}

.free_follow_modal .free_follow_modal_submit svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  margin-right: 8px;
}

@media only screen and (max-width: 700px) {
  .free_follow_modal {
    padding: 12px 10px;
  }

  .i_modal_bg_in.free_follow_modal .i_modal_in_in.free_follow_modal_shell {
    width: min(100%, calc(100vw - 24px));
    border-radius: 22px;
  }

  .free_follow_modal .free_follow_modal_content {
    max-height: calc(100vh - 24px);
  }

  .free_follow_modal .free_follow_modal_header {
    padding: 16px 16px 12px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }

  .free_follow_modal .free_follow_modal_title_wrap {
    padding-right: 56px;
  }

  .free_follow_modal .free_follow_modal_title {
    font-size: 17px;
  }

  .free_follow_modal .free_follow_modal_close {
    right: 12px;
    padding: 9px;
    border-radius: 14px;
  }

  .free_follow_modal .free_follow_modal_body {
    gap: 14px;
    padding: 16px 16px 0;
  }

  .free_follow_modal .free_follow_modal_profile_card {
    border-radius: 20px;
  }

  .free_follow_modal .free_follow_modal_cover {
    min-height: 134px;
  }

  .free_follow_modal .free_follow_modal_identity {
    margin-top: -42px;
    padding: 0 14px 16px;
  }

  .free_follow_modal .free_follow_modal_avatar {
    width: 92px;
    height: 92px;
  }

  .free_follow_modal .free_follow_modal_name_link {
    font-size: 21px;
  }

  .free_follow_modal .free_follow_modal_username a {
    font-size: 14px;
  }

  .free_follow_modal .free_follow_modal_benefit_list {
    gap: 10px;
    padding: 12px 0 14px;
  }

  .free_follow_modal .free_follow_modal_benefit_item {
    align-items: flex-start;
    padding: 13px;
    border-radius: 16px;
  }

  .free_follow_modal .free_follow_modal_benefit_icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .free_follow_modal .free_follow_modal_benefit_text {
    font-size: 14px;
  }

  .free_follow_modal .free_follow_modal_footer {
    padding: 14px 16px 16px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }

  .free_follow_modal .free_follow_modal_submit {
    min-height: 48px;
    padding: 13px 16px;
  }
}

/* Following page redesign */
:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card {
  width: calc(50% - 10px);
  width: -webkit-calc(50% - 10px);
  width: -moz-calc(50% - 10px);
  width: -ms-calc(50% - 10px);
  width: -o-calc(50% - 10px);
  padding: 10px;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_box_wrp_prof {
  position: relative;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fbfcff 100%);
  overflow: hidden;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_box_wrp_prof::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: linear-gradient(180deg, #f65169 0%, #fab429 100%);
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_box_avatar {
  position: relative;
  z-index: 1;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .isubavatar {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  background-color: #f6d0d0;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_box_name_time {
  min-width: 0;
  padding-left: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_box_name {
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_box_name
  a {
  display: block;
  color: #172033;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_box_unm {
  font-size: 14px;
  font-weight: 500;
  color: #95a2b7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_flw {
  flex: 0 0 auto;
  margin: 0;
  position: relative;
  z-index: 1;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_flw
  .i_follow {
  min-width: 132px;
  min-height: 44px;
  padding: 0 16px;
  justify-content: center;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_flw
  .i_follow
  svg {
  width: 17px;
  height: 17px;
  margin-right: 6px;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_flw
  .i_btn_like_item_flw {
  color: #ffffff;
  border: 0;
  background: linear-gradient(135deg, #f65169 0%, #ff6684 100%);
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_flw
  .i_btn_like_item_flw:hover {
  color: #ffffff;
  border: 0;
  background: linear-gradient(135deg, #ef4760 0%, #fb5b79 100%);
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_flw
  .i_btn_like_item_flw
  svg,
:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_flw
  .i_btn_like_item_flw:hover
  svg {
  fill: currentColor;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_flw
  .i_btn_like_item {
  color: #172033;
  background: #eef2f8;
  border: 0;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_flw
  .i_btn_like_item:hover {
  color: #ffffff;
  background: #172033;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_flw
  .i_btn_like_item
  svg {
  fill: currentColor;
}

:is(#moreType[data-po="following"], #moreType[data-po="followers"])
  .profile_following_card
  .i_sub_flw
  .i_btn_like_item:hover
  svg {
  fill: currentColor;
}

@media screen and (max-width: 1100px) {
  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card {
    width: calc(100% - 10px);
    width: -webkit-calc(100% - 10px);
    width: -moz-calc(100% - 10px);
    width: -ms-calc(100% - 10px);
    width: -o-calc(100% - 10px);
  }
}

@media screen and (max-width: 740px) {
  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card {
    width: 100%;
    padding: 0 0 14px;
  }

  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .i_sub_box_wrp_prof {
    gap: 12px;
    padding: 12px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
  }

  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .i_sub_box_wrp_prof::before {
    top: 12px;
    bottom: 12px;
    width: 3px;
  }

  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .isubavatar {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    -webkit-border-radius: 18px;
  }

  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .i_sub_box_name {
    font-size: 15px;
  }

  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .i_sub_box_unm {
    font-size: 13px;
  }

  :is(#moreType[data-po="following"], #moreType[data-po="followers"])
    .profile_following_card
    .i_sub_flw
    .i_follow {
    min-width: 118px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 13px;
    -webkit-border-radius: 13px;
    font-size: 13px;
  }
}

/* Profile follow section final override */
.profile_wrapper .profile_follow_section {
  margin-top: 18px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 0;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  box-shadow: none;
}

.profile_wrapper .profile_follow_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.profile_wrapper .profile_follow_title_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}

.profile_wrapper .profile_follow_section .profile_media_title {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  color: #172033;
}

.profile_wrapper .profile_follow_count {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.3;
}

.profile_wrapper .profile_follow_section .profile_media_link {
  margin-left: auto;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  background: #f4f7fc;
  border: 0;
  color: #536482;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.profile_wrapper .profile_follow_section .profile_media_link:hover {
  background: #eef2f8;
  color: #334155;
}

.profile_wrapper .profile_follow_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.profile_wrapper .profile_follow_item {
  display: block;
  text-decoration: none;
  color: #0f172a;
  padding: 10px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  background: #f8fafd;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}

.profile_wrapper .profile_follow_item:hover {
  background: #f1f5fb;
  transform: translateY(-1px);
}

.profile_wrapper .profile_follow_thumb {
  width: 100%;
  height: 72px;
  padding-top: 100%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid #e6eaf5;
}

.profile_wrapper .profile_follow_name {
  margin-top: 6px;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 720px) {
  .profile_wrapper .profile_follow_section {
    margin-top: 14px;
    padding: 16px;
    border-radius: 22px;
    -webkit-border-radius: 22px;
  }

  .profile_wrapper .profile_follow_header {
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .profile_wrapper .profile_follow_section .profile_media_title {
    font-size: 17px;
  }

  .profile_wrapper .profile_follow_section .profile_media_link {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    font-size: 11px;
  }

  .profile_wrapper .profile_follow_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile_wrapper .profile_follow_item {
    padding: 9px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
  }

  .profile_wrapper .profile_follow_thumb {
    height: 62px;
  }
}

.i_modal_in_in {
  background: transparent;
}

.i_modal_bg_in .i_modal_in_in {
  box-shadow: none;
}

div {
  display: block;
}

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

::-moz-selection {
  color: #ffffff;
  background: #f65169;
}

::selection {
  color: #ffffff;
  background: #f65169;
}

.flex_ {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
}

.justify-content {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-content-left {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}

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

.justify-content-right {
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}

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

.header {
  width: 100%;
  padding: 16px 22px 12px 22px;
  background: rgba(255, 255, 255, 0.92);
  position: fixed;
  z-index: 16;
  -webkit-box-shadow:
    0 12px 32px rgba(82, 92, 122, 0.08),
    0 2px 10px rgba(82, 92, 122, 0.05);
  box-shadow:
    0 12px 32px rgba(82, 92, 122, 0.08),
    0 2px 10px rgba(82, 92, 122, 0.05);
  top: 0px;
  border-bottom: 1px solid #e8ecf4;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header:before {
  content: "";
  width: 100%;
  height: 0.4rem;
  display: block;
  z-index: 4;
  position: absolute;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  left: 0px;
  top: 0px;
}

.leftSticky,
.rightSticky {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.rightSticky {
  position: relative;
  width: 100%;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding-bottom: var(--rs-space, 0px);
}

.th_middle {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  position: relative;
}

.section {
  min-height: 100%;
  overflow: hidden;
}

.wrapper {
  position: relative;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  min-height: 100%;
  min-height: calc(100vh - 72px);
  min-height: -o-calc(100vh - 72px);
  min-height: -ms-calc(100vh - 72px);
  top: 72px;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  margin-bottom: 52px;
}

.pageMiddle {
  display: inline-block;
  width: 100%;
  max-width: 680px;
  margin: 0px auto;
  padding-top: 25px;
}

.profile_wrapper .th_middle .pageMiddle {
  display: inline-block;
  width: 100%;
  max-width: 1240px;
  margin: 0px auto;
  padding-top: 25px;
}

.profile_wrapper .pageMiddleRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.profile_wrapper .pageMiddleRow .pageMiddleInfo {
  min-height: 1px;
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  position: sticky;
  top: 90px;
  align-self: flex-start;
  z-index: 2;
}
.profile_wrapper .pageMiddleRow .pageMiddleInfo.profile_info_stuck_bottom {
  top: auto;
  bottom: 16px;
}

.profile_wrapper .pageMiddleRow .pageMiddlePosts {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 740px;
  max-width: 740px;
}

.profile_wrapper .pageMiddleRow #moreType {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 740px;
  max-width: 740px;
}

@media (max-width: 1024px) {
  .profile_wrapper .pageMiddleRow .pageMiddleInfo {
    min-width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .profile_wrapper .pageMiddleRow {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .profile_wrapper .pageMiddleRow .pageMiddlePosts {
    min-width: 100%;
    max-width: 100%;
  }
  .profile_wrapper .pageMiddleRow #moreType {
    min-width: 100%;
    max-width: 100%;
  }

  .profile_wrapper .pageMiddleRow .pageMiddleInfo .footer_container {
    position: static;
    bottom: auto;
  }
}

.profile_wrapper .profile_meta_card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid #e6eaf5;
  border-radius: 16px;
  padding: 18px;
  -webkit-box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 14px;
}

.profile_wrapper .profile_meta_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 4px;
  border-bottom: none;
}

.profile_wrapper .profile_meta_title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.2px;
}

.profile_wrapper .profile_meta_category {
  font-size: 12px;
  color: #4b5563;
  background: #eef2ff;
  border: 1px solid #e6eaf5;
  padding: 7px 12px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25px;
}

.profile_wrapper .profile_meta_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 10px;
}

.profile_wrapper .profile_meta_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #111827;
  padding: 10px 0;
  border-bottom: 1px solid #eef2f7;
}

.profile_wrapper .profile_meta_row .label {
  color: #6b7280;
  font-weight: 700;
  display: block;
}

.profile_wrapper .profile_meta_row .value {
  font-weight: 700;
  text-align: left;
  color: #0f172a;
  white-space: normal;
}

.profile_wrapper .meta_text .value {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.profile_wrapper .profile_meta_row .value svg {
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 13px;
  fill: currentColor;
  stroke: currentColor;
}

.i_btn_become_fun.community_join_btn.communityJoinModal {
  border: none;
}

.i_nex_btn.editCommunityAvatarCover,
.i_nex_btn.communityManageSubmit,
.i_nex_btn.communityMemberSubmit {
  border: none;
}

.community_role_icon.community_owner_icon svg,
.i_nex_btn.communityEditModalBtn svg {
  fill: currentColor;
  stroke: currentColor;
}

.community_profile_wrapper button {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
}

.profile_wrapper .profile_meta_row:last-child {
  border-bottom: none;
}

.profile_wrapper .meta_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  gap: 6px;
  align-self: center;
  text-align: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.profile_wrapper .profile_meta_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: #e5e7eb;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.profile_wrapper .profile_meta_icon svg {
  width: 16px;
  height: 16px;
  fill: #0f172a;
}

.profile_wrapper .profile_meta_missing {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.profile_wrapper .profile_meta_missing:hover {
  text-decoration: underline;
}

.profile_wrapper .profile_media_section {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid #e6eaf5;
  border-radius: 14px;
  padding: 14px;
  -webkit-box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.profile_wrapper .profile_media_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.profile_wrapper .profile_media_title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.profile_wrapper .profile_media_link {
  font-size: 13px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
}

.profile_wrapper .profile_media_link:hover {
  text-decoration: underline;
}

.profile_wrapper .profile_media_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.profile_wrapper .profile_media_section_reels .profile_media_grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.profile_wrapper .profile_media_item {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border-radius: 0;
  overflow: hidden;
  display: block;
}

.profile_wrapper .profile_media_thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: inherit;
}

.profile_wrapper .profile_media_thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.profile_wrapper .profile_media_item_reel {
  padding-top: 165%;
}

.profile_wrapper .profile_media_section_reels .profile_media_item {
  border-radius: 0;
}

.profile_wrapper .profile_media_item_reel .profile_media_thumb {
  background-position: center center;
}

.profile_wrapper .profile_media_badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 6px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.profile_wrapper .profile_media_badge svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

@media (min-width: 721px) {
  .profile_wrapper .profile_media_item:nth-child(1) {
    border-radius: 8px 0 0 0;
  }
  .profile_wrapper .profile_media_item:nth-child(3) {
    border-radius: 0 8px 0 0;
  }
  .profile_wrapper .profile_media_item:nth-child(4) {
    border-radius: 0 0 0 8px;
  }
  .profile_wrapper .profile_media_item:nth-child(6) {
    border-radius: 0 0 8px 0;
  }
  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(1) {
    border-radius: 8px 0 0 0;
  }
  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(2) {
    border-radius: 0 8px 0 0;
  }
  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(5) {
    border-radius: 0 0 0 8px;
  }
  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(6) {
    border-radius: 0 0 8px 0;
  }
}

@media (max-width: 720px) {
  .profile_wrapper .profile_media_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .profile_wrapper .profile_media_item:nth-child(1) {
    border-radius: 8px 0 0 0;
  }
  .profile_wrapper .profile_media_item:nth-child(2) {
    border-radius: 0 8px 0 0;
  }
  .profile_wrapper .profile_media_item:nth-child(5) {
    border-radius: 0 0 0 8px;
  }
  .profile_wrapper .profile_media_item:nth-child(6) {
    border-radius: 0 0 8px 0;
  }
  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(1) {
    border-radius: 8px 0 0 0;
  }
  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(2) {
    border-radius: 0 8px 0 0;
  }
  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(5) {
    border-radius: 0 0 0 8px;
  }
  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(6) {
    border-radius: 0 0 8px 0;
  }
}
.profile_wrapper .profile_meta_bio {
  border-top: 1px solid #e6eaf5;
  padding-top: 8px;
}

.profile_wrapper .profile_meta_bio_title {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.profile_wrapper .profile_meta_bio_text {
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}

.profile_wrapper .profile_meta_social {
  border-top: 1px solid #e6eaf5;
  padding-top: 8px;
}

.profile_wrapper .profile_meta_social_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.profile_wrapper .profile_meta_social_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 36px;
  height: 36px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #e6eaf5;
  background: #f8fafc;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.profile_wrapper .profile_meta_social_link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.profile_wrapper .profile_meta_social_link:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.i_header_in {
  width: 100%;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
}

.i_logo {
  width: auto;
  height: 50px;
}

.mobile_hamburger,
.mobile_back,
.search_mobile {
  display: none;
}

.svg_active_icon svg {
  fill: #f65169 !important;
}

.i_logo img {
  width: 50px;
  height: 50px;
}

.i_search {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 12px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 360px;
  flex: 1 1 360px;
  max-width: 540px;
  min-width: 260px;
}

.search_mobile {
  display: none !important;
}

.i_s_input {
  outline: none;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -o-border-radius: 999px;
  background-color: #f6f7fb;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 12px 18px;
  border: 1px solid #e6e9f0;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABmJLR0QA/wD/AP+gvaeTAAACyElEQVRIie2WTUhUURTHf+fONFbQQkhLKohKIqFoEUi4LmrahNLkG61NUaTmzl3Bo2UfYKbmVpx5MwgRpH1Ai6JdEBFEtQrsOyKCKFBr3j0t3hsxy+a9ylb9N/ed+849v8u595574b/+kSSqo+u6pm5dw+qvydIqtfbzklTq1eFM5sOCgfuKxfWJku1B2AusmPVLgfugI3519VB3Oj39V8CqKoOed0KREwKpCnEm1Ehrl+Pc/SOwqspFzxtW5EDY5QNjgl5HEy+s+CnBbFU0I9AQ+kwp2tLV1nbtt8ED+fxJkFOh+ciqdY63tz+c6+e6rqndsPGIivYCVcAnEqaxs7X1SWxwX7G43vj2cZjeR8lFyaajmczHXwUZ8LxdKONAArjZ2ZbdWQls5nYkSrYnhPpWrVMJCtCZzd5A6A3NHf2FQmMssOu6Jty9gIz/LL3zBiqVThPsBUS1ORZ4eX39GsIjI9hIm6SsYwcPvkO5B6DKtlhgjFlZ/lSR53HAAIhOBA11scBGdXIGbGVJbDCyNGioWEy+A6eSyZcEFQljdHN8MOUxE7HAYe29D2CV/a7r/rDr59OFXK4JWBtYejsWOBw0AiDQULth45EoUPfWraQRcyY0J5Mi+dhgv7p6iDBVKto7mCvurgStef12CNgeTFjPHc1m38cGd6fT02qkFZgCqlTs2IDnne0bHa2Z63shl2uqef3mDuihmYmLPKgEDSY4j/rz+bQgRWBZOWZ4Tp+pYbEoW5hZ0+80LUZaOhzn6m+BAQaKxU349jyw4xduk4Ke80UeGCVPcFlUhEd6gfQXCo2i2qzKNlHqEL4iPFWV24tEvfKaDhYKe9TqpSjwyE+fqApvqsvAYoUvxsq+jgPOlQUHR4UvCBh+SPuUr7a+u739Zfl/5MoUVx2Oc1WMtBAcS6myqQVj/VQXh0dX9eVyq/8p9L9m6xtdNRQHwoG8EgAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-position: 18px 12px;
  padding-left: 54px;
  background-size: 22px;
  -webkit-transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  -webkit-box-shadow: 0 10px 30px rgba(82, 92, 122, 0.08);
  box-shadow: 0 10px 30px rgba(82, 92, 122, 0.08);
}

.i_s_input:focus {
  border: 1px solid #f65169;
  background-color: #ffffff;
  -webkit-box-shadow: 0 14px 32px rgba(246, 81, 105, 0.18);
  box-shadow: 0 14px 32px rgba(246, 81, 105, 0.18);
}

.i_header_right {
  display: -ms-flexbox;
  display: -webkit-box;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 10px;
}

.i_one {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  gap: 10px;
}

.i_login {
  padding: 10px 18px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  border: 1px solid #dfe4f2;
  color: #303858;
  cursor: pointer;
  background-color: #ffffff;
  -webkit-box-shadow: 0 6px 18px rgba(82, 92, 122, 0.08);
  box-shadow: 0 6px 18px rgba(82, 92, 122, 0.08);
  -webkit-transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    -webkit-box-shadow 0.25s ease,
    -webkit-transform 0.2s ease,
    color 0.25s ease;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    -webkit-box-shadow 0.25s ease,
    -webkit-transform 0.2s ease,
    color 0.25s ease;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease,
    color 0.25s ease;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease,
    color 0.25s ease,
    -webkit-box-shadow 0.25s ease,
    -webkit-transform 0.2s ease;
  margin-right: 10px;
}

.i_login:hover {
  color: #ffffff;
  background-color: #fab429;
  border-color: #fab429;
  -webkit-box-shadow: 0 12px 26px rgba(250, 180, 41, 0.3);
  box-shadow: 0 12px 26px rgba(250, 180, 41, 0.3);
  -webkit-transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    -webkit-box-shadow 0.25s ease,
    -webkit-transform 0.2s ease,
    color 0.25s ease;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    -webkit-box-shadow 0.25s ease,
    -webkit-transform 0.2s ease,
    color 0.25s ease;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease,
    color 0.25s ease;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease,
    color 0.25s ease,
    -webkit-box-shadow 0.25s ease,
    -webkit-transform 0.2s ease;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.i_singup {
  padding: 11px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  border: 1px solid transparent;
  background-image: linear-gradient(135deg, #f65169, #fab429);
  cursor: pointer;
  color: #ffffff;
  margin-right: 10px;
  -webkit-box-shadow: 0 12px 28px rgba(246, 81, 105, 0.28);
  box-shadow: 0 12px 28px rgba(246, 81, 105, 0.28);
  -webkit-transition:
    -webkit-box-shadow 0.25s ease,
    -webkit-transform 0.2s ease,
    filter 0.25s ease;
  transition:
    -webkit-box-shadow 0.25s ease,
    -webkit-transform 0.2s ease,
    filter 0.25s ease;
  transition:
    box-shadow 0.25s ease,
    transform 0.2s ease,
    filter 0.25s ease;
  transition:
    box-shadow 0.25s ease,
    transform 0.2s ease,
    filter 0.25s ease,
    -webkit-box-shadow 0.25s ease,
    -webkit-transform 0.2s ease;
}

.i_language {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 9px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  border: 1px solid #e4e7f0;
  cursor: pointer;
  -webkit-transition:
    background-color 0.25s ease,
    -webkit-box-shadow 0.25s ease,
    -webkit-transform 0.2s ease;
  transition:
    background-color 0.25s ease,
    -webkit-box-shadow 0.25s ease,
    -webkit-transform 0.2s ease;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease,
    -webkit-box-shadow 0.25s ease,
    -webkit-transform 0.2s ease;
  background-color: #ffffff;
  -webkit-box-shadow: 0 8px 20px rgba(82, 92, 122, 0.08);
  box-shadow: 0 8px 20px rgba(82, 92, 122, 0.08);
}

.i_language svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: #525c7a;
}

.i_language:hover {
  background-color: #f6f7fb;
  -webkit-box-shadow: 0 12px 26px rgba(82, 92, 122, 0.12);
  box-shadow: 0 12px 26px rgba(82, 92, 122, 0.12);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.i_singup:hover {
  -webkit-box-shadow: 0 16px 32px rgba(246, 81, 105, 0.32);
  box-shadow: 0 16px 32px rgba(246, 81, 105, 0.32);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.i_modal_bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  visibility: hidden;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01);
  transition: -webkit-transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01);
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01);
  transition:
    transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01),
    -webkit-transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01);
  z-index: 999999 !important;
  background: rgba(0, 0, 0, 0.51);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow-y: scroll;
  padding: 5px 0px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.i_modal_display {
  visibility: visible;
  opacity: 1;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.i_modal_in {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #ffffff !important;
  opacity: 1;
  cursor: auto;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.i_modal_display .i_modal_in {
  -webkit-transition: -webkit-transform 0.3s
    cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.i_modal_bg .i_modal_in {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  -webkit-box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
}

.i_modal_display .i_modal_bg .i_modal_in {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.i_modal_forgot .i_modal_content .i_login_box_header .i_welcome_back .i_lBack {
  width: 100%;
  font-weight: 500;
  font-size: 32px;
  color: #525c7a;
}

.i_modal_forgot {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  background: #ffffff;
  opacity: 1;
  display: none;
  padding: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  -webkit-box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.1);
}

.i_modal_content {
  width: 100%;
  min-width: 100%;
  display: block;
  position: relative;
}

.i_login_box_header {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 25px;
}

.i_login_box_wellcome_icon {
  display: inline-block;
  border-radius: 10px;
  padding: 20px 25px;
  -webkit-border-radius: 19px;
  -webkit-transform: translateY(-3%) rotate(17deg);
  transform: translateY(-3%) rotate(17deg);
  background-color: rgba(106, 143, 203, 0.1);
}

.i_login_box_wellcome_icon svg {
  width: 40px;
  height: 40px;
  fill: #6a8fcb;
}

.i_welcome_back {
  display: inline-block;
  padding: 15px;
}

.i_lBack {
  width: 100%;
  font-weight: 500;
  font-size: 27px;
  color: #525c7a;
}

.i_lnot {
  width: 100%;
  font-weight: 500;
  font-size: 13px;
  color: #525c7a;
  padding-top: 2px;
}

.i_modal_social_login_content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.i_modal_social_login_content .login-title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  color: #525c7a;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  line-height: normal;
  position: relative;
  padding-bottom: 0;
  margin: 1rem 2rem 0;
}

.i_modal_social_login_content .login-title::before {
  width: 100%;
  content: "";
  height: 1px;
  display: block;
  background: #f0f2f5;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.i_modal_social_login_content .login-title > span {
  background: #ffffff;
  z-index: 2;
  position: relative;
  padding: 0 2rem;
  font-family: "Noto Sans", sans-serif;
}

.i_modal_social_login_content .i_social-btns {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: 100%;
  padding: 2rem 1rem;
}

.i_modal_social_login_content .i_social-btns > div {
  width: 100%;
  padding: 0 0.5rem;
}

.i_modal_social_login_content .i_social-btns > div a {
  border-radius: 3rem;
  text-decoration: none;
  color: #ffffff;
  padding: 15px;
  font-family: "Noto Sans", sans-serif;
  display: -ms-flexbox;
  display: -webkit-box;
  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-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.i_modal_social_login_content .i_social-btns > div a.twitter-login {
  background: #14bcec;
}

.i_modal_social_login_content .i_social-btns > div a.twitter-login:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.i_modal_social_login_content .i_social-btns > div a.twitter-login svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.i_modal_social_login_content .i_social-btns > div a.twitter-login span {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 15px;
  font-weight: 400;
}

.i_modal_social_login_content .i_social-btns > div a.google-login {
  background: #ffffff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.i_modal_social_login_content .i_social-btns > div a.google-login svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.i_modal_social_login_content .i_social-btns > div a.google-login span {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 15px;
  font-weight: 400;
  color: #000000;
}

.i_direct_login {
  margin-top: 15px;
  padding: 25px 15px;
  background-color: #f0f1f5;
  font-weight: 600;
  font-size: 13px;
  color: #f65169;
}

.form_group {
  padding: 3px 25px;
}

.form_group > label {
  font-weight: 500;
  color: #525c7a;
  font-size: 14px;
  letter-spacing: 1px;
  width: 100%;
  display: block;
  line-height: normal;
  padding-bottom: 0.5rem;
}

.form_group .form-control input {
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  padding: 15px;
  outline: none;
  border: 1px solid transparent;
  font-size: 14px;
  color: #000000;
}

.i_login_button {
  width: 100%;
  text-align: center;
  color: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  background-color: #f65169;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  margin-top: 15px;
}

.i_login_button:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.i_login_button button {
  outline: none;
  border: 0px solid transparent;
  background-color: transparent;
  width: 100%;
  padding: 15px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  font-weight: 500;
  font-size: 15px;
  font-family: "Noto Sans", sans-serif;
  color: #ffffff;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.i_warns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  color: #ffffff;
  padding: 0px 15px;
}

.i_error {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  background-color: #f87855;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  padding: 12px 15px;
  display: none;
  margin-top: 15px;
}

.i_error a {
  text-decoration: underline;
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  padding-left: 5px;
}

.i_l_footer {
  background-color: #ffffff;
  padding: 2rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #525c7a;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  font-size: 14px;
}

.i_l_footer a {
  color: #525c7a;
  font-weight: 700;
  padding: 0 1rem;
  position: relative;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-decoration: none;
  font-size: 15px;
}

.i_l_footer a::after {
  position: absolute;
  width: 50%;
  content: "";
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #525c7a;
}

.i_l_footer a:hover {
  color: #f65169;
}

.i_l_footer a:hover::after {
  background: #f65169;
}

.password-reset {
  margin: 2rem auto;
  text-align: center;
  width: 100%;
  display: block;
  color: #ffffff;
  font-weight: 700;
  position: absolute;
  bottom: -4rem;
  font-size: 14px;
}

.i_modal_close {
  position: absolute;
  padding: 15px;
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  z-index: 1;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.transition {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.i_modal_close svg {
  fill: #525c7a;
  width: 18px;
  height: 18px;
}

.i_modal_close:hover {
  background-color: #f0f1f5;
}

.i_forgot_button {
  width: 100%;
  padding: 15px 10px;
  text-align: center;
  color: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  background-color: #f65169;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  margin-top: 15px;
}

.i_forgot_button:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.i_modal_bg .i_auth_modal_shell {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  border: 1px solid #dde5f1;
  background:
    radial-gradient(circle at top right, rgba(246, 81, 105, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  -webkit-box-shadow:
    0 28px 64px rgba(40, 55, 83, 0.22),
    0 8px 24px rgba(40, 55, 83, 0.12);
  box-shadow:
    0 28px 64px rgba(40, 55, 83, 0.22),
    0 8px 24px rgba(40, 55, 83, 0.12);
  overflow: hidden;
}

.i_auth_modal_shell .i_auth_modal_content {
  min-width: 0;
}

.i_auth_modal_shell .i_auth_modal_header {
  gap: 18px;
  align-items: center;
  padding: 30px 30px 22px;
  border-bottom: 1px solid #e7edf5;
  background:
    radial-gradient(circle at top left, rgba(80, 120, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 255, 0.94) 100%);
}

.i_auth_modal_shell .i_auth_modal_icon {
  width: 76px;
  min-width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 24px;
  -webkit-transform: none;
  transform: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 243, 255, 0.98) 100%);
  border: 1px solid #e5ebf5;
  -webkit-box-shadow: 0 14px 28px rgba(94, 115, 154, 0.15);
  box-shadow: 0 14px 28px rgba(94, 115, 154, 0.15);
}

.i_auth_modal_shell .i_auth_modal_icon svg {
  width: 34px;
  height: 34px;
  fill: #6a8fcb;
}

.i_auth_modal_shell .i_auth_modal_titles {
  padding: 0;
}

.i_auth_modal_shell .i_lBack {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #172033;
}

.i_auth_modal_shell .i_lnot {
  padding-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #66758f;
}

.i_auth_modal_shell .i_auth_modal_warns {
  padding: 0 30px;
}

.i_auth_modal_shell .i_error {
  margin-top: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97360 0%, #f65169 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  -webkit-box-shadow: 0 12px 24px rgba(246, 81, 105, 0.22);
  box-shadow: 0 12px 24px rgba(246, 81, 105, 0.22);
}

.i_auth_modal_shell .i_auth_modal_body {
  margin-top: 0;
  padding: 26px 30px 18px;
  background: transparent;
  color: #f65169;
}

.i_auth_modal_shell .form_group {
  padding: 0;
  margin-bottom: 16px;
}

.i_auth_modal_shell .form_group:last-child {
  margin-bottom: 0;
}

.i_auth_modal_shell .form_group > label {
  padding-bottom: 10px;
  color: #4f5f79;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.i_auth_modal_shell .form_group .form-control input {
  height: 54px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid #dde5f1;
  background: #f7f9fc;
  color: #172033;
  -webkit-transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    -webkit-box-shadow 0.25s ease;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.i_auth_modal_shell .form_group .form-control input:focus {
  border-color: rgba(246, 81, 105, 0.45);
  background: #ffffff;
  -webkit-box-shadow: 0 0 0 4px rgba(246, 81, 105, 0.12);
  box-shadow: 0 0 0 4px rgba(246, 81, 105, 0.12);
}

.i_auth_modal_shell .login_form_padding_box {
  width: 100%;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #ffd7de;
  background: #fff3f5;
  color: #b4233f;
  font-size: 13px;
  font-weight: 700;
}

.i_auth_modal_shell .i_login_button,
.i_auth_modal_shell .i_forgot_button {
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
  border-radius: 18px;
  border: 0;
  background: linear-gradient(135deg, #f65169 0%, #fab429 100%);
  -webkit-box-shadow: 0 18px 28px rgba(246, 81, 105, 0.22);
  box-shadow: 0 18px 28px rgba(246, 81, 105, 0.22);
}

.i_auth_modal_shell .i_login_button:hover,
.i_auth_modal_shell .i_forgot_button:hover {
  -webkit-box-shadow: 0 22px 34px rgba(246, 81, 105, 0.28);
  box-shadow: 0 22px 34px rgba(246, 81, 105, 0.28);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.i_auth_modal_shell .i_login_button button,
.i_auth_modal_shell .i_forgot_button {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.i_auth_modal_shell .i_auth_modal_aux {
  padding: 2px 30px 20px;
  text-align: center;
}

.i_auth_modal_shell .password-reset {
  position: static;
  display: inline-flex;
  margin: 0;
  width: auto;
  color: #66758f;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.i_auth_modal_shell .password-reset:hover {
  color: #f65169;
}

.i_auth_modal_shell .i_auth_modal_footer {
  padding: 20px 30px 26px;
  border-top: 1px solid #e7edf5;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: transparent;
  color: #66758f;
  font-size: 14px;
  font-weight: 600;
}

.i_auth_modal_shell .i_auth_modal_footer a {
  color: #172033;
  font-size: 14px;
  font-weight: 800;
}

.i_auth_modal_shell .i_auth_modal_footer a::after {
  width: 100%;
  height: 2px;
  background: rgba(23, 32, 51, 0.18);
}

.i_auth_modal_shell .i_auth_modal_footer a:hover {
  color: #f65169;
}

.i_auth_modal_shell .i_auth_modal_footer a:hover::after {
  background: #f65169;
}

.i_auth_modal_shell .i_modal_close {
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.86);
  -webkit-box-shadow: 0 10px 22px rgba(82, 92, 122, 0.14);
  box-shadow: 0 10px 22px rgba(82, 92, 122, 0.14);
}

.i_auth_modal_shell .i_modal_close svg {
  fill: #4f5f79;
}

.i_auth_modal_shell .i_modal_close:hover {
  background: #ffffff;
}

.i_auth_modal_shell .i_auth_modal_success {
  padding-top: 18px;
  padding-bottom: 28px;
  text-align: center;
  font-size: 15px;
  color: #1d7a46;
}

@media screen and (max-width: 640px) {
  .i_modal_bg .i_auth_modal_shell {
    max-width: calc(100% - 24px);
    border-radius: 24px;
  }

  .i_auth_modal_shell .i_auth_modal_header {
    padding: 26px 22px 20px;
  }

  .i_auth_modal_shell .i_auth_modal_body,
  .i_auth_modal_shell .i_auth_modal_warns,
  .i_auth_modal_shell .i_auth_modal_aux,
  .i_auth_modal_shell .i_auth_modal_footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .i_auth_modal_shell .i_lBack {
    font-size: 21px;
  }

  .i_auth_modal_shell .i_auth_modal_icon {
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 20px;
  }
}

.i_left_container {
  position: sticky;
  width: 100%;
  top: 72px;
  z-index: 2;
}

.i_right_container {
  position: sticky;
  width: 100%;
  z-index: 2;
  padding-top: 0;
}

.leftSidebar_in {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 11;
}

.leftSidebarWrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
  height: -o-calc(100vh - 60px);
  height: -ms-calc(100vh - 60px);
  overflow-y: auto;
  overflow-x: hidden;
  bottom: 0px;
  top: 0px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px;
}

.leftSidebar_in .leftSidebarWrapper {
  max-width: 300px;
  margin-left: auto;
}

.leftSidebarWrapper a {
  text-decoration: none;
}

.rightSidebar_in {
  height: 100%;
  position: relative;
  z-index: 11;
}

.rightSticky .i_right_container {
  position: relative;
  left: 0;
  right: 0;
  width: 100%;
  max-height: none;
  transform: var(--rs-shift, translateY(0));
  will-change: transform;
}

.rightSticky .i_right_container.rs-locked {
  position: fixed;
  top: var(--rs-lock-top, 88px);
  left: var(--rs-lock-left, auto);
  width: var(--rs-lock-width, auto);
  transform: none;
  z-index: 11;
}

.rightSticky .leftSidebarWrapper {
  height: auto;
  max-height: none;
  overflow-y: visible;
  overflow-x: visible;
}

.rightSticky .btest {
  max-height: none;
  overflow: visible;
  overscroll-behavior: auto;
}

.i_left_menu_box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 9px 14px;
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #444444;
  line-height: 22px;
  cursor: pointer;
  margin-bottom: 5px;
  align-items: center;
}

.i_left_menu_box svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 9px;
  fill: #b3b9cc;
}

.i_left_menu_box:hover {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  background-color: #e0e3eb;
}

.i_left_menu_box:hover svg {
  fill: #f65169;
}

.left-menu-pro-v1 .leftSidebar_in {
  position: relative;
}

.left-menu-pro-v1 .leftSidebar_in::before,
.left-menu-pro-v1 .leftSidebar_in::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 14px;
  z-index: 13;
  pointer-events: none;
}

.left-menu-pro-v1 .leftSidebar_in::before {
  top: 0;
  background: transparent;
}

.left-menu-pro-v1 .leftSidebar_in::after {
  bottom: 0;
  background: transparent;
}

.left-menu-pro-v1 .leftSidebarWrapper {
  padding: 16px 12px 20px;
  scrollbar-width: thin;
  scrollbar-color: #c9d3e3 transparent;
}

.left-menu-pro-v1 .leftSidebarWrapper::-webkit-scrollbar {
  width: 8px;
}

.left-menu-pro-v1 .leftSidebarWrapper::-webkit-scrollbar-track {
  background: transparent;
}

.left-menu-pro-v1 .leftSidebarWrapper::-webkit-scrollbar-thumb {
  background-color: rgba(148, 163, 184, 0.65);
  border-radius: 999px;
  -webkit-border-radius: 999px;
}

.left-menu-pro-v1 .leftSidebarWrapper::-webkit-scrollbar-thumb:hover {
  background-color: rgba(100, 116, 139, 0.75);
}

.left-menu-pro-v1 .btest {
  background-color: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  padding: 8px 8px 0;
}

.left-menu-pro-v1 .i_left_menu_box {
  position: relative;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #334155;
}

.left-menu-pro-v1 .i_left_menu_box svg {
  width: 20px;
  height: 20px;
  margin-right: 0;
  flex-shrink: 0;
  color: #8b95ab;
  fill: currentColor;
}

.left-menu-pro-v1 .i_left_menu_box svg [fill]:not([fill="none"]) {
  fill: currentColor;
}

.left-menu-pro-v1 .i_left_menu_box svg [stroke]:not([stroke="none"]) {
  stroke: currentColor;
}

.left-menu-pro-v1 .i_left_menu_box .m_tit {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.left-menu-pro-v1 .i_left_menu_profile_avatar {
  width: 22px;
  height: 22px;
  margin-right: 0;
}

.left-menu-pro-v1 .i_left_menu_box:hover {
  background-color: #f3f6fb;
  color: #111827;
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
}

.left-menu-pro-v1 .i_left_menu_box:hover svg {
  color: #1d4ed8;
}

.left-menu-pro-v1 .i_left_menu_box.is-active {
  background-color: #edf4ff;
  color: #1d4ed8;
}

.left-menu-pro-v1 .i_left_menu_box.is-active svg {
  color: #1d4ed8;
}

.left-menu-pro-v1 .i_left_menu_box.is-active::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background-color: #1d4ed8;
}

.left-menu-pro-v1 .i_left_menu_box.is-active:hover {
  -webkit-transform: none;
  transform: none;
}

.left-menu-pro-v1 .i_left_menu_box.left-menu-section-start {
  margin-top: 12px;
}

.left-menu-pro-v1 .i_left_menu_box.left-menu-section-start::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: -7px;
  height: 1px;
  background-color: #e7edf8;
}

.left-menu-pro-v1 .btest > a:focus-visible .i_left_menu_box {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
}

.left-menu-pro-v1 .btest > :last-child .i_left_menu_box {
  margin-bottom: 0;
}

.i_welcomebox {
  display: inline-block;
  width: 100%;
  padding: 35px 25px;
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.i_welcomebox::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-image: url("img/geometricBg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: -1;
}

.i_welcomebox_in {
  display: inline-block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.i_welcomebox_title {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 23px;
  color: #444444;
  font-family: "Noto Sans", sans-serif;
}

.i_welcomebox_slogan {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  color: #858fad;
  font-family: "Noto Sans", sans-serif;
  padding-top: 8px;
}

.i_welcomebox_slogan span {
  font-weight: 600;
}

.i_welcomebox_login_signup {
  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-top: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.i_welcomebox_login_signup a {
  color: #ffffff;
  text-decoration: none;
}

.i_register {
  display: inline-block;
  width: 100%;
  padding: 10px 0px;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.i_register a {
  color: #858fad;
  text-decoration: none;
}

.i_post_body {
  position: relative;
  display: inline-block;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}

.i_post_body:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.i_post_body_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px;
}

.i_post_user_avatar {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

.i_post_user_avatar.has-story {
  box-shadow:
    0 10px 10px -10px rgba(0, 0, 0, 0.5),
    0 0 0 2px #ffffff,
    0 0 0 4px #1d8fe1;
  -webkit-box-shadow:
    0 10px 10px -10px rgba(0, 0, 0, 0.5),
    0 0 0 2px #ffffff,
    0 0 0 4px #1d8fe1;
}

.i_post_user_avatar img {
  height: 100%;
  width: 100%;
}

.i_post_i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 5px 0px 0px 10px;
  width: 100%;
  position: relative;
}

.i_post_username {
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.i_post_username a {
  text-decoration: none;
  color: #444444;
  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;
  gap: 4px;
  width: 100%;
}

.i_post_shared_time {
  display: inline-block;
  width: 100%;
  font-weight: 400;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  color: #858fad;
  padding-top: 3px;
}

.i_plus_g {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_plus_g svg {
  width: 18px;
  height: 18px;
  fill: #512da8;
}

.i_plus_gf {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_plus_gf svg {
  width: 18px;
  height: 18px;
  fill: #d81b60;
}

.i_plus_s {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_plus_s svg {
  width: 15px;
  height: 15px;
  fill: #1e88e5;
}

.i_plus_staff {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  line-height: 0;
  padding: 0;
}

.i_plus_staff svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor !important;
}

.i_plus_staff svg path {
  fill: currentColor !important;
  opacity: 1 !important;
}

.i_plus_staff_admin {
  color: #244dc2;
}

.i_plus_staff_moderator {
  color: #0b6f5c;
}

.i_post_username .i_plus_staff .ownTooltipWrapper {
  left: 50%;
  right: auto;
  top: calc(100% + 8px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.i_plus_public {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_plus_public svg {
  width: 13px;
  height: 13px;
  fill: #858fad;
}

.i_plus_public::before {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  margin: 0 0.25rem;
  background: #858fad;
  border-radius: 50%;
  display: inline-block;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.i_plus_subs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_plus_subs svg {
  width: 16px;
  height: 16px;
  fill: #858fad;
}

.i_plus_subs::before {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  margin: 0 0.25rem;
  background: #858fad;
  border-radius: 50%;
  display: inline-block;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.i_post_menu {
  position: absolute;
  right: 0px;
  top: 0px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.i_post_menu_dot {
  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: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.i_post_menu_dot:hover {
  background-color: #f0f1f5;
}

.i_post_menu_dot svg {
  width: 23px;
  height: 23px;
  fill: #858fad;
}

.i_post_container {
  display: inline-block;
  width: 100%;
  padding: 0px 15px 10px 15px;
}

.i_post_text {
  display: inline-block;
  width: 100%;
  font-weight: 300;
  font-size: 15px;
  color: #000000;
  line-height: 1.35rem;
  word-wrap: break-word;
  font-family: "Noto Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

.i_post_text_content,
.i_comment_text_content {
  display: block;
  width: 100%;
}

.i_post_text_content strong,
.i_post_text_content b,
.i_comment_text_content strong,
.i_comment_text_content b {
  font-weight: 700 !important;
}

.i_post_text_content em,
.i_post_text_content i,
.i_comment_text_content em,
.i_comment_text_content i {
  font-style: italic;
}

.js-text-truncate {
  position: relative;
  overflow: hidden;
}

.js-text-truncate.is-expanded {
  overflow: visible;
}

.i_text_toggle {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  font-size: 13px;
  color: #1e88e5;
  cursor: pointer;
  user-select: none;
}

.i_text_toggle:focus {
  outline: none;
  text-decoration: underline;
}

.i_post_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 15px 10px 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.i_post_footer_item {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.i_post_item_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.i_post_item_btn:hover {
  background-color: #f0f1f5;
}

.i_post_item_btn svg {
  width: 25px;
  height: 25px;
}

.in_like svg {
  fill: #858fad;
}

.in_like:hover svg {
  fill: #f65169;
}

.in_unlike svg {
  fill: #f65169;
}

.in_unlike:hover svg {
  fill: #858fad;
}

.in_share svg {
  fill: #858fad;
}

.in_share:hover svg {
  fill: #7b1fa2;
}

.in_comment svg {
  fill: #858fad;
}

.in_comment:hover svg {
  fill: #1e88e5;
}

.in_social_share svg {
  fill: #858fad;
}

.in_social_share:hover svg {
  fill: #00897b;
}

.in_save svg {
  fill: #858fad;
}

.in_save:hover svg {
  fill: #0097a7;
}

.in_saved svg {
  fill: #0097a7;
}

.in_saved:hover svg {
  fill: #858fad;
}

.i_post_comments_wrapper {
  padding: 0px 15px;
}

.i_post_comments_box {
  border-top: 1px solid #f0f2f5;
  padding-top: 15px;
  padding-bottom: 15px;
}

.i_comment_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding-bottom: 0px;
}

.i_post_user_comment_avatar {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  margin-right: 8px;
}

.i_post_user_comment_avatar img {
  height: 100%;
  width: 100%;
}

.i_comment_form_textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0px 0px 0px 10px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #f0f2f5;
  position: relative;
}

.i_comment_t_body {
  width: 100%;
}

.comment {
  outline: none;
  resize: none;
  border: none;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  background-color: transparent;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px;
  padding: 13px 15px 0px 0px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.i_comment_footer {
  padding: 0px 7px 7px 0px;
  position: absolute;
  right: 10px;
  top: 9px;
}

.i_comment_fast_answers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.i_fa_body {
  width: 30px;
  height: 30px;
  padding: 5px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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;
  margin-left: 2px;
}

.i_fa_body:hover {
  background-color: #dadbe0;
}

.i_fa_body svg {
  width: 16px;
  height: 16px;
  fill: #525c7a;
}

.i_user_comments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.i_u_comment_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  margin-bottom: 10px;
}
.i_post_user_commented_avatar_out {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  margin-right: 15px;
  margin-left: 5px;
  position: relative;
}
.i_post_user_commented_avatar {
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  margin-right: 15px;
  margin-left: 5px;
}

.i_post_user_commented_avatar.has-story {
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 0 4px #1d8fe1;
  -webkit-box-shadow:
    0 0 0 2px #ffffff,
    0 0 0 4px #1d8fe1;
}

.i_post_user_commented_avatar img {
  height: 100%;
  width: 100%;
}

.i_user_commented_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.i_user_commented_user_infos {
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 5px;
}

.i_user_commented_user_infos a {
  text-decoration: none;
  color: #444444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.i_plus_comment_g {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_plus_comment_g svg {
  width: 13px;
  height: 13px;
  fill: #512da8;
}

.i_plus_comment_gf {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_plus_comment_gf svg {
  width: 13px;
  height: 13px;
  fill: #d81b60;
}

.i_plus_comment_s {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_plus_comment_s svg {
  width: 12px;
  height: 12px;
  fill: #1e88e5;
}

.i_user_comment_text {
  border-top-left-radius: 8px;
  -webkit-border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  -webkit-bottom-left-radius: 8px;
  border-top-right-radius: 25px;
  -webkit-border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  -webkit-bottom-right-radius: 25px;
  background-color: #f0f2f5;
  padding: 9px 12px 9px 12px;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: 1.15rem;
  display: inline-block;
  position: relative;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  text-align: left;
  display: block;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.i_user_comment_text a {
  font-weight: 600;
}

.i_user_comment_text iframe {
  width: 100%;
  height: 340px !important;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  margin-top: 10px;
}

.i_comment_like_time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding-top: 1px;
}

.i_comment_like_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
}

.i_comment_like_sum {
  padding-left: 5px;
  font-weight: 300;
  font-size: 13px;
  color: #444444;
}

.i_comment_item_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  cursor: pointer;
}

.i_comment_item_btn:hover {
  background-color: #f0f1f5;
}

.i_comment_item_btn svg {
  width: 15px;
  height: 15px;
}

.in_like svg {
  fill: #858fad;
}

.in_like:hover svg {
  fill: #f65169;
}

.i_comment_time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 300;
  font-size: 13px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 5px;
  color: #444444;
}

.i_comment_time::before {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  margin: 0 0.25rem;
  background: #858fad;
  border-radius: 50%;
  display: inline-block;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.i_comment_call_popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: 5px;
  padding: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.i_comment_call_popup:hover {
  background-color: #f0f1f5;
}

.i_comment_call_popup svg {
  width: 15px;
  height: 15px;
}

.i_user_comment_header {
  display: inline-block;
  position: relative;
  width: 100%;
}

.i_post_menu_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  position: absolute;
  z-index: 5;
  padding: 15px 0px;
  width: 100%;
  min-width: 280px;
  right: 0px;
  top: 45px;
  display: none;
}

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

.i_post_menu_item_out {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  color: #444444;
  font-weight: 400;
  padding: 15px;
  cursor: pointer;
}

.i_post_menu_item_out svg {
  width: 18px;
  height: 18px;
  fill: #858fad;
  margin-right: 8px;
}

.i_post_menu_item_out:hover svg {
  fill: #f65169;
}

.i_post_menu_item_out:hover {
  background-color: #f0f1f5;
  color: #f65169;
}

.i_post_menu_item_out span {
  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;
}

.i_post_menu_item_out span svg {
  width: 18px;
  height: 18px;
  fill: #858fad;
  margin-right: 8px;
}

.i_post_menu_item_out:hover span svg {
  fill: #f65169;
}

.i_share_this_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  position: absolute;
  z-index: 4;
  padding: 15px 0px;
  width: 100%;
  min-width: 230px;
  right: 0px;
  top: -45px;
  display: none;
}

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

.dnone {
  display: none;
}

.dblock {
  display: block !important;
}

.dblock_relative {
  position: relative;
  top: 0px;
  right: 0px;
}

.i_comment_menu_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 0;
  padding: 10px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffffff),
    to(#f8fbff)
  );
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e4ebf4;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -webkit-box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: absolute;
  z-index: 7;
  width: auto;
  min-width: 212px;
  max-width: 244px;
  right: 0px;
  top: calc(100% + 10px);
  display: none;
}

.i_comment_menu_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.i_comment_menu_container::before {
  content: "";
  position: absolute;
  top: -9px;
  right: var(--comment-menu-arrow-right, 16px);
  width: 18px;
  height: 10px;
  background: #e4ebf4;
  -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.i_comment_menu_container::after {
  content: "";
  position: absolute;
  top: -8px;
  right: calc(var(--comment-menu-arrow-right, 16px) + 1px);
  width: 16px;
  height: 9px;
  background: #ffffff;
  -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.i_comment_menu_container.in_comment_menu_popover {
  position: fixed;
  right: auto;
  z-index: 9999;
}

.i_comment_menu_container.comment-menu-direction-up::before {
  top: auto;
  bottom: -9px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.i_comment_menu_container.comment-menu-direction-up::after {
  top: auto;
  bottom: -8px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.i_comment_menu_container .i_post_menu_item_out {
  min-height: 44px;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 13px;
  -webkit-border-radius: 13px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  color: #1f2937;
  background: transparent;
  cursor: pointer;
  -webkit-transition:
    background-color 0.18s ease,
    color 0.18s ease,
    -webkit-transform 0.18s ease,
    -webkit-box-shadow 0.18s ease;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    -webkit-transform 0.18s ease,
    -webkit-box-shadow 0.18s ease;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    -webkit-transform 0.18s ease,
    -webkit-box-shadow 0.18s ease;
}

.i_comment_menu_container .i_post_menu_item_out svg,
.i_comment_menu_container .i_post_menu_item_out span svg {
  width: 16px;
  height: 16px;
  margin-right: 0;
  fill: #71809a;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
}

.i_comment_menu_container .i_post_menu_item_out:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f9fbff),
    to(#f1f6fd)
  );
  background: linear-gradient(180deg, #f9fbff 0%, #f1f6fd 100%);
  color: #162033;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: inset 0 0 0 1px #e5ecf5;
  box-shadow: inset 0 0 0 1px #e5ecf5;
}

.i_comment_menu_container .i_post_menu_item_out:hover svg,
.i_comment_menu_container .i_post_menu_item_out:hover span svg {
  fill: #4f5f7a;
}

.i_comment_menu_container .i_post_menu_item_out.delCm {
  color: #b45309;
}

.i_comment_menu_container .i_post_menu_item_out.delCm svg {
  fill: #f97316;
}

.i_comment_menu_container .i_post_menu_item_out.delCm:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fff8ef),
    to(#fff1dd)
  );
  background: linear-gradient(180deg, #fff8ef 0%, #fff1dd 100%);
  color: #9a3412;
  -webkit-box-shadow: inset 0 0 0 1px #fddeb3;
  box-shadow: inset 0 0 0 1px #fddeb3;
}

.i_comment_menu_container .i_post_menu_item_out.delCm:hover svg {
  fill: #ea580c;
}

.i_comment_menu_container .i_post_menu_item_out.ccp {
  color: #7c5a12;
}

.i_comment_menu_container .i_post_menu_item_out.ccp svg {
  fill: #d97706;
}

.i_comment_menu_container .i_post_menu_item_out.ccp:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fffaf0),
    to(#fff4d6)
  );
  background: linear-gradient(180deg, #fffaf0 0%, #fff4d6 100%);
  color: #7c4a03;
  -webkit-box-shadow: inset 0 0 0 1px #f7e2a1;
  box-shadow: inset 0 0 0 1px #f7e2a1;
}

@media only screen and (max-width: 700px) {
  .i_comment_menu_container {
    min-width: 196px;
    max-width: min(224px, calc(100vw - 24px));
    padding: 6px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    top: calc(100% + 8px);
  }

  .i_comment_menu_container::before {
    right: 14px;
  }

  .i_comment_menu_container::after {
    right: 15px;
  }

  .i_comment_menu_container.comment-menu-direction-up::before {
    bottom: -9px;
  }

  .i_comment_menu_container.comment-menu-direction-up::after {
    bottom: -8px;
  }

  .i_comment_menu_container .i_post_menu_item_out {
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    font-size: 12px;
  }
}

.i_post_u_images {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.i_image_one {
  position: relative;
  width: 100%;
  display: inline-block;
}

.i_image_two {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.i_image_three {
  position: relative;
  width: 100%;
  display: inline-block;
}

.i_image_four {
  position: relative;
  width: 100%;
  display: inline-block;
}

.i_image_five {
  position: relative;
  width: 100%;
  display: inline-block;
}

.i_image_one .i_post_image_swip_wrapper {
  position: relative;
  padding-top: 60%;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
}

.i_image_one_full .i_post_image_swip_wrapper {
  padding-top: 0;
  height: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none !important;
  overflow: hidden;
}

.i_image_one_full .i_p_image {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: 100%;
  height: auto;
  max-width: 100%;
  opacity: 1;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0;
}

.i_image_one_full .i_post_image_swip_wrapper[data-html] {
  display: block;
  overflow: hidden;
  background: #000 !important;
}

.i_image_one_full .i_post_image_swip_wrapper[data-html] .i_p_image {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: 100%;
  height: auto;
  max-width: none;
  opacity: 1;
  display: block;
  margin: 0;
  -o-object-fit: cover;
  object-fit: cover;
  background: #000;
}

.i_image_two .i_post_image_swip_wrapper {
  position: relative;
  padding-top: 50%;
  width: 50%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
}

.i_image_two .i_post_image_swip_wrapper:nth-child(2) {
  margin-left: 3px;
}

.i_image_three .i_post_image_swip_wrapper:nth-child(1) {
  position: relative;
  padding-top: 70.6%;
  width: calc(50% - 0px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
  float: left;
}

.i_image_three .i_post_image_swip_wrapper:nth-child(2) {
  position: relative;
  padding-top: 35%;
  width: 50%;
  width: calc(50% - 3px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
  float: left;
  margin-left: 3px;
  margin-bottom: 3px;
}

.i_image_three .i_post_image_swip_wrapper:nth-child(3) {
  position: relative;
  padding-top: 35%;
  width: calc(50% - 3px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
  float: left;
  margin-left: 3px;
}

.i_image_four .i_post_image_swip_wrapper:nth-child(1) {
  position: relative;
  padding-top: 50%;
  width: calc(100% - 0px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
  float: left;
  margin-bottom: 3px;
}

.i_image_four .i_post_image_swip_wrapper:nth-child(2) {
  position: relative;
  padding-top: 32.9%;
  width: 50%;
  width: calc(33.3333333333% - 3px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
  float: left;
}

.i_image_four .i_post_image_swip_wrapper:nth-child(3) {
  position: relative;
  padding-top: 32.9%;
  width: calc(33.3333333333% - 0px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
  float: left;
  margin-left: 3px;
}

.i_image_four .i_post_image_swip_wrapper:nth-child(4) {
  position: relative;
  padding-top: 32.9%;
  width: calc(33.3333333333% - 3px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
  float: left;
  margin-left: 3px;
}

.i_image_five .i_post_image_swip_wrapper:nth-child(1) {
  position: relative;
  padding-top: 50%;
  width: calc(100% - 0px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
  float: left;
  margin-bottom: 3px;
}

.i_image_five .i_post_image_swip_wrapper:nth-child(2) {
  position: relative;
  padding-top: 24.9%;
  width: 50%;
  width: calc(25% - 3px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
  float: left;
}

.i_image_five .i_post_image_swip_wrapper:nth-child(3) {
  position: relative;
  padding-top: 24.9%;
  width: calc(25% - 0px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
  float: left;
  margin-left: 3px;
}

.i_image_five .i_post_image_swip_wrapper:nth-child(4) {
  position: relative;
  padding-top: 24.9%;
  width: calc(25% - 3px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
  float: left;
  margin-left: 3px;
}

.i_image_five .i_post_image_swip_wrapper:nth-child(5) {
  position: relative;
  padding-top: 24.9%;
  width: calc(25% - 3px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
  float: left;
  margin-left: 3px;
}

.i_p_image {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.i_right_box_header {
  display: inline-block;
  width: 100%;
  padding: 15px 0px;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
}

.i_topinoras_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkif-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.i_topinoras_wrapper a {
  padding-top: 5px;
}

.i_top_inora {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkif-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  cursor: pointer;
  position: relative;
  border: 1px solid #e8ecf5;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#ffffff),
    to(#f7f9fc)
  );
  background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
  -webkit-box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.i_top_inora:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
  border-color: #dce2f0;
}

.i_top_inora_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-width: 38px;
  height: 38px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  font-family: "Noto Sans", sans-serif;
  color: #ffffff;
  z-index: 1;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#ffb55a),
    to(#f65169)
  );
  background: linear-gradient(135deg, #ffb55a 0%, #f65169 100%);
  -webkit-box-shadow: 0 10px 18px rgba(246, 81, 105, 0.25);
  box-shadow: 0 10px 18px rgba(246, 81, 105, 0.25);
}

.i_top_inora_number span {
  width: auto;
  height: auto;
  display: block;
  padding: 0 6px;
}

.i_top_inora[data-rank="2"] .i_top_inora_number {
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#cdd9ff),
    to(#7c8ce0)
  );
  background: linear-gradient(135deg, #cdd9ff 0%, #7c8ce0 100%);
  -webkit-box-shadow: 0 10px 18px rgba(124, 140, 224, 0.25);
  box-shadow: 0 10px 18px rgba(124, 140, 224, 0.25);
}

.i_top_inora[data-rank="3"] .i_top_inora_number {
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#ffd9a0),
    to(#f3a952)
  );
  background: linear-gradient(135deg, #ffd9a0 0%, #f3a952 100%);
  -webkit-box-shadow: 0 10px 18px rgba(243, 169, 82, 0.25);
  box-shadow: 0 10px 18px rgba(243, 169, 82, 0.25);
}

.i_top_inora_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkif-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
}

.i_top_inora_avatar_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkif-flex;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_top_inora_avatar {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.08);
  -webkit-box-shadow: 0 10px 20px rgba(17, 24, 39, 0.08);
}

.i_top_inora_avatar img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.i_top_inora_user_name_hot_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkif-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  font-family: "Noto Sans", sans-serif;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
}

.i_top_inora_user_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: #111827;
}

.i_top_inora_user_name a {
  text-decoration: none;
  color: #111827;
  max-width: 100%;
}

.i_top_inora_user_name a:hover {
  color: #f65169;
}

.i_top_inora_hot_name {
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  width: auto;
  font-weight: 600;
  font-size: 12px;
  color: #f65169;
  padding: 5px 12px;
  background-color: rgba(246, 81, 105, 0.08);
  border-radius: 999px;
  -webkit-border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.i_top_inora_actions {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkif-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.i_top_inora_actions:empty {
  display: none;
}

.i_top_inora_actions .i_sub_flw {
  margin-left: 0;
}

.i_top_inora_actions .i_follow_me {
  min-height: 36px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0 10px 18px rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.06);
}

@media screen and (max-width: 540px) {
  .i_top_inora {
    gap: 10px;
    padding: 10px 12px;
  }
  .i_top_inora_details {
    gap: 8px;
  }
  .i_top_inora_user_name {
    font-size: 14px;
  }
  .i_top_inora_hot_name {
    padding: 4px 10px;
    font-size: 11px;
  }
  .i_top_inora_actions .i_follow_me {
    min-height: 32px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.i_user_follow_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.i_follow_me {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin: 0px auto;
  padding: 8px 12px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #f65169;
  border: 1px solid #f65169;
  font-weight: 400;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

.i_follow:hover {
  background-color: #f65169;
  color: #ffffff;
}

.i_hot_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 1;
  padding: 5px;
  background-color: #f0f2f5;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

.i_hot_icon svg {
  width: 13px;
  height: 13px;
  fill: #f65169;
}

.i_top_u {
  position: relative;
  display: inline-block;
}

.adsense_block {
  margin: 16px 0;
  padding: 12px;
  border: 1px solid #e8ebf2;
  border-radius: 12px;
  background: #fff;
  display: flex;
  justify-content: center;
}
.adsense_block.inside_profile {
  margin-top: 0;
}
.adsense_block.adsense_inline {
  margin: 18px 0;
}
.adsense_block.adsense_header {
  margin-top: 0;
}
.adsense_block.adsense_footer {
  margin-bottom: 0;
}
.adsense_block ins {
  display: block;
}
.feed_inline_ad {
  margin: 18px 0;
}
.feed_inline_ad .adsense_block.adsense_inline {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  flex-wrap: nowrap;
}
.feed_inline_ad .adsense_block.adsense_inline > * {
  flex: 1 1 auto;
  min-width: 0;
}
.feed_inline_ad .adsense_block.adsense_inline > a {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  width: 100% !important;
  flex-wrap: nowrap;
}
.feed_inline_ad .adsense_block.adsense_inline img {
  width: 200px !important;
  max-width: 40% !important;
  height: 130px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  flex-shrink: 0;
}
.feed_inline_ad .adsense_block.adsense_inline img + * {
  flex: 1 1 0;
  min-width: 0;
}
.blog-post-ad-slot {
  margin: 24px 0;
}
.blog-post-ad-slot .adsense_block {
  margin: 0;
  max-width: 100%;
}
.blog-post-ad-slot-top {
  margin-top: 20px;
}
.blog-post-ad-slot-bottom {
  margin-bottom: 28px;
}
.blog-post-ad-slot-inline-fallback {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .feed_inline_ad .adsense_block.adsense_inline,
  .feed_inline_ad .adsense_block.adsense_inline > a {
    flex-direction: column;
    align-items: flex-start;
  }
  .feed_inline_ad .adsense_block.adsense_inline img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

.sp_wrp_inline_ads .i_inline_ads_grid a {
  text-decoration: none;
}

.i_sponsored_body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkif-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}

.i_sponsored_title {
  font-weight: 700;
  font-size: 15px;
  font-family: "Noto Sans", sans-serif;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.i_sponsored_ads_link {
  font-weight: 600;
  font-size: 13px;
  color: #6b7280;
  font-family: "Noto Sans", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.i_sponsorad a {
  text-decoration: none;
  width: 100%;
  display: inline-block;
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

.i_sponsorad a:hover {
  background-color: #e0e3eb;
}

.i_left_menu_profile_avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 26px;
  height: 26px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  margin-right: 9px;
}

.i_left_menu_profile_avatar img {
  width: 100%;
  height: auto;
  position: relative;
}

.i_not_found_page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 50px 20px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 985px;
  margin: 0px auto;
  text-align: center;
  font-family: "Noto Sans", sans-serif;
  color: #000000;
}

.i_not_found_page a {
  display: contents;
  font-weight: 600;
  font-size: 15px;
  color: #f65169;
}

.i_not_found_page a:hover {
  text-decoration: underline;
  color: #d81b60;
}

.aura_info_page {
  background:
    radial-gradient(circle at top left, rgba(246, 81, 105, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(79, 130, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #f5f7fb 0%, #eef3f9 100%);
}

.aura_info_page .bCreatorBg::before {
  display: none;
  background: none;
}

.aura_info_page .aura_info_wrapper {
  display: block;
  max-width: 1540px;
  margin: 0 auto;
  padding: 34px 20px 60px;
}

.aura_info_page_shell {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.aura_info_page_side {
  position: sticky;
  top: 96px;
  padding: 34px 30px;
  border: 1px solid #dde5f1;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(246, 81, 105, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 64px rgba(57, 74, 113, 0.12);
}

.aura_info_page_badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #dbe4f4;
  background: rgba(255, 255, 255, 0.88);
  color: #f65169;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aura_info_page_title {
  margin: 18px 0 0;
  font-size: 46px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #172033;
}

.aura_info_page_lead {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #66758f;
}

.aura_info_page_highlights {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.aura_info_page_highlight {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
  color: #44526c;
}

.aura_info_page_highlight::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f65169 0%, #fab429 100%);
  box-shadow: 0 0 0 6px rgba(246, 81, 105, 0.1);
}

.aura_info_page_panel {
  min-height: 100%;
  padding: 36px 38px 40px;
  border: 1px solid #dde5f1;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(79, 130, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 24px 64px rgba(57, 74, 113, 0.12);
}

.aura_info_page_main {
  min-width: 0;
}

.aura_info_page_toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 20px;
  margin-bottom: 24px;
  padding: 18px 20px;
  border: 1px solid #e5ecf6;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.aura_info_page_toolbar_title {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.aura_info_page_toolbar_title span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b8aa5;
}

.aura_info_page_toolbar_title strong {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  color: #172033;
}

.aura_info_page_toolbar_highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.aura_info_page_toolbar_chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #dde5f1;
  border-radius: 999px;
  background: #ffffff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  color: #52627d;
}

.aura_info_page_canvas {
  min-width: 0;
}

.aura_info_page_loading {
  display: grid;
  gap: 12px;
}

.aura_info_page_loading span {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eef3fb 0%, #d9e5f5 100%);
}

.aura_info_page_loading span:nth-child(1) {
  width: 100%;
}

.aura_info_page_loading span:nth-child(2) {
  width: 92%;
}

.aura_info_page_loading span:nth-child(3) {
  width: 78%;
}

.aura_page_prose {
  color: #334155;
  font-size: 16px;
  line-height: 1.86;
}

.aura_page_prose > *:first-child {
  margin-top: 0;
}

.aura_page_prose h1,
.aura_page_prose h2,
.aura_page_prose h3,
.aura_page_prose h4 {
  margin: 1.7em 0 0.7em;
  color: #172033;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.aura_page_prose h1 {
  font-size: 40px;
}

.aura_page_prose h2 {
  font-size: 30px;
}

.aura_page_prose h3 {
  font-size: 24px;
}

.aura_page_prose h4 {
  font-size: 20px;
}

.aura_page_prose p,
.aura_page_prose ul,
.aura_page_prose ol,
.aura_page_prose blockquote,
.aura_page_prose table {
  margin: 0 0 1.2em;
}

.aura_page_prose ul,
.aura_page_prose ol {
  padding-left: 1.4em;
}

.aura_page_prose li + li {
  margin-top: 0.45em;
}

.aura_page_prose a {
  color: #f65169;
  text-decoration: none;
  font-weight: 700;
}

.aura_page_prose a:hover {
  text-decoration: underline;
}

.aura_page_prose strong {
  color: #172033;
}

.aura_page_prose blockquote {
  padding: 18px 20px;
  border-left: 4px solid #f65169;
  border-radius: 18px;
  background: #fff5f7;
  color: #44526c;
}

.aura_page_prose table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  border-style: hidden;
  box-shadow: 0 0 0 1px #e6edf7;
}

.aura_page_prose th,
.aura_page_prose td {
  padding: 14px 16px;
  border: 1px solid #e6edf7;
  text-align: left;
  vertical-align: top;
}

.aura_page_prose th {
  background: #f6f9fd;
  color: #172033;
  font-weight: 800;
}

.aura_page_prose img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
}

.aura_info_page_panel .contact_us_form_container {
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.aura_info_page_panel .contact_us_form_container .i_login_box_header {
  padding: 0 0 22px;
}

.aura_info_page_panel .contact_us_form_container .i_direct_login {
  margin-top: 0;
  padding: 0;
  background: transparent;
}

.aura_info_page_panel .contact_us_form_container .form_group {
  padding: 0;
  margin-bottom: 18px;
}

.aura_info_page_panel .contact_us_form_container .form_group > label {
  padding-bottom: 10px;
  color: #4f5f79;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aura_info_page_panel .contact_us_form_container .form-control input,
.aura_info_page_panel .contact_us_form_container .form-control textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #dce5f1;
  background: #f7f9fc;
  color: #172033;
  padding: 16px 18px;
  box-shadow: none;
}

.aura_info_page_panel .contact_us_form_container .form-control textarea {
  min-height: 180px;
  resize: vertical;
}

.aura_info_page_panel .contact_us_form_container .i_login_button {
  margin-top: 8px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f65169 0%, #fab429 100%);
  box-shadow: 0 18px 30px rgba(246, 81, 105, 0.18);
}

.aura_info_page_panel .contact_us_form_container .i_login_button button {
  min-height: 52px;
  font-size: 14px;
  font-weight: 800;
}

@media screen and (max-width: 1080px) {
  .aura_info_page_shell {
    grid-template-columns: 1fr;
  }

  .aura_info_page_side {
    position: relative;
    top: 0;
  }

  .aura_info_page_toolbar {
    flex-direction: column;
  }

  .aura_info_page_toolbar_highlights {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 720px) {
  .aura_info_page .aura_info_wrapper {
    padding: 22px 14px 36px;
  }

  .aura_info_page_side,
  .aura_info_page_panel {
    padding: 24px 22px;
    border-radius: 26px;
  }

  .aura_info_page_title {
    font-size: 34px;
  }

  .aura_page_prose h1 {
    font-size: 32px;
  }

  .aura_page_prose h2 {
    font-size: 26px;
  }
}

.i_header_btn_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  position: relative;
  overflow: visible;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: linear-gradient(145deg, #f8faff, #eef1f7);
  border: 1px solid #e4e8f0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-right: 10px;
  -webkit-transition:
    -webkit-transform 0.2s ease,
    -webkit-box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  transition:
    -webkit-transform 0.2s ease,
    -webkit-box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    -webkit-transform 0.2s ease,
    -webkit-box-shadow 0.2s ease;
}

.i_header_btn_item svg {
  fill: #303858;
  width: 18px;
  height: 18px;
}

.i_header_btn_item:hover {
  background-color: #ffffff;
  border-color: #d9deeb;
  -webkit-box-shadow:
    0 14px 30px rgba(246, 81, 105, 0.18),
    0 8px 18px rgba(82, 92, 122, 0.08);
  box-shadow:
    0 14px 30px rgba(246, 81, 105, 0.18),
    0 8px 18px rgba(82, 92, 122, 0.08);
}

.i_general_box_container,
.i_general_box_message_notifications_container,
.i_general_box_notifications_container {
  position: fixed;
  background-color: #ffffff;
  left: auto;
  right: 10px;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  top: 70px;
  width: 360px;
  max-width: min(420px, calc(100vw - 20px));
  min-width: 280px;
  bottom: auto;
  z-index: 9999;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 110px);
  height: -o-calc(100vh - 110px);
  height: -ms-calc(100vh - 110px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  cursor: initial;
}

.i_general_box_search_container {
  position: absolute;
  background-color: #ffffff;
  left: 50%;
  -webkit-transform: translate(-50%, 50px);
  transform: translate(-50%, 50px);
  -webkit-transform: translate(-50%, 50px);
  -moz-transform: translate(-50%, 50px);
  -o-transform: translate(-50%, 50px);
  -ms-transform: translate(-50%, 50px);
  width: min(90vw, 420px);
  max-width: 420px;
  right: auto;
  top: 3px;
  bottom: 20px;
  z-index: 9999;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(94vh - 60px);
  height: -o-calc(94vh - 60px);
  height: -ms-calc(94vh - 60px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  cursor: initial;
}

.btest {
  width: 100%;
  position: relative;
  overflow: hidden;
  overflow-y: scroll;
}

.i_user_details {
  display: inline-block;
  width: 100%;
  padding: 10px;
  min-height: 100%;
  scroll-margin-bottom: 60px;
  /*padding-bottom: 60px;*/
}

.footer_container {
  position: sticky;
  bottom: 0px;
  padding: 13px;
  width: 100%;
  left: 0;
  background-color: #f0f1f5;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  z-index: 5;
}

/* Guest landing template (type 1): keep sidebar lock, disable sticky footer overlap */
.wrapper.NotLoginYet .rightSticky .footer_container {
  position: relative !important;
  bottom: auto !important;
}

.i_u_details a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}

.i_u_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

.i_u_details:hover {
  background-color: #f0f1f5;
}

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

.iu_avatar {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0px auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

.iu_avatar img {
  width: 100%;
  height: 100%;
}

.i_user_nm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding-left: 10px;
}

.i_unm {
  display: inline-block;
  padding-bottom: 5px;
}

.i_see_prof {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #858fad;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  text-align: left;
}

.i_header_others_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 8px;
  font-weight: 500;
  font-size: 15px;
  color: #000000;
  cursor: pointer;
  margin-bottom: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.i_header_item_icon_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 12px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #e4e6eb;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-right: 8px;
}

.i_header_others_item:hover {
  background-color: #f0f1f5;
}

.i_header_others_box {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.i_header_others_box a {
  text-decoration: none;
  color: #000000;
}

.i_header_item_icon_box svg {
  fill: #000000;
  width: 18px;
  height: 18px;
}

.arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 1px;
  background-color: #f0f2f5;
  margin: 8px 0px;
}

.footer_menu_item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  text-align: center;
  word-break: normal;
  font-weight: 600;
  color: #667085;
  -webkit-font-smoothing: antialiased;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 0.8125rem;
  line-height: 1.25;
}

.footer_menu_item a {
  text-decoration: none;
  color: #536174 !important;
}

.footer_menu_item:hover a {
  text-decoration: none;
  color: #111827 !important;
}

.footer_menu_item:after {
  display: none;
}

.footer_menu_item:hover {
  border-color: #dbe3ee;
  background-color: #ffffff;
}

.footer_menu_item:last-of-type:after {
  display: none;
}

.footer_menu_item:last-of-type {
  color: #8a94a3;
  font-weight: 500;
}

.footer_menu_item:last-of-type:hover {
  border-color: transparent;
  background-color: transparent;
}

.i_message_wrpper {
  display: inline-block;
  position: relative;
  width: 100%;
}

.i_box_messages_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 10px;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #ffffff;
  z-index: 3;
}

.messages a {
  text-align: center;
  text-decoration: none;
  color: #525c7a;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 15px;
  font-weight: 600;
  display: block;
}

.i_message_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

.i_message_wrapper:hover {
  background-color: #f0f1f5;
}

.i_message_owner_avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  position: relative;
  width: 50px;
  height: 50px;
}

.i_message_avatar {
  display: block;
  overflow: hidden;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #e0e3eb;
}

.i_message_avatar img {
  width: 100%;
  height: 100%;
  position: relative;
}

.i_message_info_container {
  display: -ms-grid;
  display: grid;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding-left: 10px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.i_message_owner_name {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  padding-bottom: 3px;
}

.i_message_i {
  font-weight: 400;
  font-size: 14px;
  color: #444444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.i_notification_text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
  line-height: 1.35;
}

.i_notification_time {
  font-size: 12px;
  color: #8b8b8b;
  margin-top: 4px;
  line-height: 1.2;
}

.i_message_i svg {
  width: 14px;
  height: 14px;
  fill: #444444;
  vertical-align: middle;
  margin-right: 5px;
}

.i_message_setting {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  padding: 10px;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  border: 1px solid #e0e3eb;
  display: none;
  cursor: pointer;
}

.i_message_setting:hover {
  background-color: #f0f1f5;
}

.i_message_set_icon {
  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;
}

.i_message_set_icon svg {
  width: 18px;
  height: 18px;
  fill: #000000;
}

.i_message_wrpper:hover .i_message_setting {
  display: block;
}

.i_message_set_container {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  position: absolute;
  z-index: 1;
  padding: 15px 0px;
  width: 100%;
  min-width: 240px;
  right: -5px;
  top: -40px;
}

.i_message_full_screen {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  top: 7px;
  right: 9px;
  z-index: 1;
  padding: 13px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.i_message_full_screen a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.i_message_full_screen:hover {
  background-color: #f0f1f5;
}

.i_message_full_screen svg {
  width: 16px;
  height: 16px;
  fill: #000000;
}

.i_notifications_count {
  position: absolute;
  z-index: 1;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  font-size: 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: -4px;
  right: -4px;
}

.i_h_in {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 12px;
}

.isum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 3px 5px;
  background-color: #f65169;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

.notificationsContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 0px 12px;
  border-radius: 14px;
  background-color: #ffffff;
  border: 1px solid #e6e9f0;
  -webkit-box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.notificationsHeader {
  display: inline-block;
  width: 100%;
  padding: 6px 20px 14px;
  font-weight: 600;
  font-size: 19px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #111827;
  border-bottom: 1px solid #eef0f4;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.i_notification_wrpper {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 0 10px;
  margin-bottom: 8px;
}

.i_notification_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 14px 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  border: 1px solid #edf0f5;
  background-color: #f8f9fc;
  -webkit-transition:
    background-color 0.2s ease,
    -webkit-box-shadow 0.2s ease,
    -webkit-transform 0.2s ease,
    border-color 0.2s ease;
  transition:
    background-color 0.2s ease,
    -webkit-box-shadow 0.2s ease,
    -webkit-transform 0.2s ease,
    border-color 0.2s ease;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease,
    -webkit-box-shadow 0.2s ease,
    -webkit-transform 0.2s ease;
}

.i_notification_wrapper:hover {
  background-color: #ffffff;
  border-color: #e3e7ef;
  -webkit-box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.notificationsContainer .i_header_others_box {
  padding: 0 6px 12px;
}

.notificationsContainer .i_header_others_box a {
  display: block;
}

.notificationsContainer
  .i_header_others_box
  a:focus-visible
  .i_notification_wrapper {
  outline: 2px solid rgba(246, 81, 105, 0.6);
  outline-offset: 2px;
}

.notificationsContainer .i_message_owner_avatar {
  width: 52px;
  height: 52px;
}

.notificationsContainer .i_message_avatar {
  width: 52px;
  height: 52px;
  border: 2px solid #ffffff;
  -webkit-box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.notificationsContainer .i_message_info_container {
  min-width: 0;
  gap: 2px;
  padding-left: 8px;
}

.notificationsContainer .i_message_owner_name {
  font-size: 15px;
  color: #111827;
}

.notificationsContainer .i_message_i {
  color: #4b5563;
}

.notificationsContainer .i_notification_time {
  color: #6b7280;
}

.notificationsContainer .i_notification_wrpper:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .notificationsContainer {
    padding: 16px 0px 10px;
    border-radius: 12px;
  }

  .notificationsHeader {
    padding: 4px 16px 12px;
    font-size: 18px;
  }

  .i_notification_wrpper {
    padding: 0 8px;
  }

  .i_notification_wrapper {
    padding: 12px;
  }
}

.i_notification_wrpper:hover .i_message_setting {
  display: block;
}

.notifications_page {
  --notifications-surface: #ffffff;
  --notifications-surface-soft: #f7f9fc;
  --notifications-surface-muted: #fbfcff;
  --notifications-border: #dfe6f1;
  --notifications-text: #172033;
  --notifications-text-muted: #67758c;
  --notifications-text-soft: #8592a5;
  --notifications-accent: #f65169;
  --notifications-accent-soft: rgba(246, 81, 105, 0.12);
  --notifications-button: #eff3fa;
}

.notifications_page.notificationsContainer {
  display: block;
  padding: 0;
  border-radius: 28px;
  background: var(--notifications-surface);
  overflow: hidden;
}

.notifications_page .notifications_page_shell {
  width: 100%;
}

.notifications_page .notifications_page_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--notifications-border);
  background:
    radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.notifications_page .notifications_page_header_meta {
  min-width: 0;
}

.notifications_page .notificationsHeader {
  padding: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.notifications_page .notifications_page_total_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--notifications-border);
  border-radius: 999px;
  background: var(--notifications-surface-soft);
  color: var(--notifications-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.notifications_page .notifications_mark_all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--notifications-border);
  border-radius: 14px;
  background: var(--notifications-surface-soft);
  color: var(--notifications-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.notifications_page .notifications_mark_all svg {
  width: 17px;
  height: 17px;
  margin: 0;
  fill: currentColor;
}

.notifications_page .notifications_filter_bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--notifications-border);
  background: var(--notifications-surface);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.notifications_page .notificationsFilterBtn {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--notifications-border);
  border-radius: 999px;
  background: var(--notifications-surface-soft);
  color: var(--notifications-text-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.notifications_page .notificationsFilterBtn.active {
  border-color: rgba(246, 81, 105, 0.28);
  background: rgba(246, 81, 105, 0.1);
  color: var(--notifications-accent);
}

.notifications_page .notifications_page_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: var(--notifications-surface-muted);
}

.notifications_page .i_notification_wrpper {
  position: relative;
  width: 100%;
}

.notifications_page .notifications_page_link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.notifications_page .i_notification_wrapper {
  position: relative;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 72px 18px 20px;
  border: 1px solid var(--notifications-border);
  border-radius: 22px;
  background: var(--notifications-surface);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.notifications_page .i_notification_wrapper:hover {
  border-color: #cfd8e7;
  background: var(--notifications-surface-soft);
  transform: translateY(-1px);
}

.notifications_page .i_notification_wrpper.is-unread .i_notification_wrapper {
  border-color: #f3c0c9;
  background:
    linear-gradient(0deg, rgba(246, 81, 105, 0.045), rgba(246, 81, 105, 0.045)),
    var(--notifications-surface);
  box-shadow: inset 3px 0 0 0 var(--notifications-accent);
}

.notifications_page .notificationUnreadPill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(246, 81, 105, 0.1);
  color: var(--notifications-accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.notifications_page .notifications_page_avatar_stack {
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  min-width: 56px;
  padding-bottom: 6px;
}

.notifications_page .notifications_page_avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef2f8;
}

.notifications_page .notifications_page_avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notifications_page .notifications_page_type_icon {
  position: absolute;
  right: -2px;
  bottom: 2px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--notifications-surface);
  border-radius: 8px;
  background: var(--notifications-surface-soft);
  box-shadow: none;
}

.notifications_page .notifications_page_type_icon svg {
  width: 11px;
  height: 11px;
  margin: 0;
  fill: var(--notifications-text);
}

.notifications_page .notifications_page_content {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.notifications_page .notifications_page_topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.notifications_page .notifications_page_owner {
  overflow: hidden;
  color: var(--notifications-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notifications_page .notifications_page_time {
  flex: 0 0 auto;
  color: var(--notifications-text-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.notifications_page .i_notification_text {
  color: var(--notifications-text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: anywhere;
}

.notifications_page .i_message_setting {
  position: absolute;
  top: 16px;
  right: 16px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  z-index: 6;
}

.notifications_page .i_message_setting:hover {
  background: transparent;
}

.notifications_page .i_message_set_icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--notifications-border);
  border-radius: 14px;
  background: var(--notifications-surface-soft);
}

.notifications_page .i_message_set_icon:hover {
  background: var(--notifications-button);
}

.notifications_page .i_message_set_icon svg {
  width: 18px;
  height: 18px;
  fill: var(--notifications-text-soft);
}

.notifications_page .i_message_set_container {
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  width: max-content;
  padding: 10px 0;
  border: 1px solid var(--notifications-border);
  border-radius: 16px;
  background: var(--notifications-surface);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
  z-index: 20;
}

.notifications_page .i_notification_wrpper.notifications-menu-open {
  z-index: 18;
}

.notifications_page .i_post_menu_item_out {
  min-height: 42px;
  padding: 0 16px;
  color: var(--notifications-text);
  font-size: 13px;
  font-weight: 700;
}

.notifications_page .notifications_page_empty_state,
.notifications_page .notificationsFilterEmpty {
  padding: 42px 24px;
  border: 1px dashed var(--notifications-border);
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(246, 81, 105, 0.08), transparent 44%),
    var(--notifications-surface);
}

.notifications_page .notificationsFilterEmpty {
  display: none;
}

.notifications_page .notificationsEmptyText {
  color: var(--notifications-text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.notifications_page .notifications_page_empty_inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.notifications_page .notifications_page_empty_state .no_not_here {
  width: 82px;
  height: 82px;
  border: 1px solid var(--notifications-border);
  border-radius: 22px;
  background: var(--notifications-surface-soft);
}

.notifications_page .notifications_page_empty_state .no_not_here svg {
  width: 38px;
  height: 38px;
  fill: var(--notifications-text-soft);
}

.notifications_page .notifications_page_empty_state .n_c_t {
  color: var(--notifications-text-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
}

.notifications_page .notifications_page_footer,
.notifications_page .notifications_page_empty_state_template {
  display: none;
}

@media only screen and (max-width: 700px) {
  .notifications_page .notifications_page_header {
    padding: 20px 18px 18px;
    flex-wrap: wrap;
  }

  .notifications_page .notificationsHeader {
    font-size: 22px;
  }

  .notifications_page .notifications_page_total_badge {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    font-size: 15px;
  }

  .notifications_page .notifications_mark_all {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .notifications_page .notifications_filter_bar {
    padding: 12px 18px;
  }

  .notifications_page .notifications_page_list {
    padding: 16px;
    gap: 8px;
  }

  .notifications_page .i_notification_wrapper {
    padding: 16px 62px 16px 16px;
    border-radius: 20px;
  }

  .notifications_page .notifications_page_avatar_stack {
    flex-basis: 50px;
    width: 50px;
    min-width: 50px;
  }

  .notifications_page .notifications_page_avatar {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .notifications_page .notifications_page_type_icon {
    right: -1px;
    bottom: 1px;
    width: 20px;
    height: 20px;
    border-radius: 7px;
  }

  .notifications_page .notifications_page_owner {
    font-size: 14px;
  }

  .notifications_page .notifications_page_time,
  .notifications_page .i_notification_text {
    font-size: 12px;
  }

  .notifications_page .i_message_setting {
    top: 14px;
    right: 14px;
  }

  .notifications_page .i_message_set_icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .notifications_page .notifications_page_empty_state {
    padding: 34px 18px;
    border-radius: 22px;
  }
}

.i_loading {
  width: 100%;
  max-width: 100px;
  position: relative;
  display: block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 25px;
  margin: 0px auto;
}

.dot-pulse {
  position: relative;
  left: -9953px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #f65169;
  color: #f65169;
  -webkit-box-shadow: 9999px 0 0 -5px #f65169;
  box-shadow: 9999px 0 0 -5px #f65169;
  -webkit-animation: dot-pulse 1.5s infinite linear;
  animation: dot-pulse 1.5s infinite linear;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.dot-pulse::before,
.dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #f65169;
  color: #f65169;
}

.dot-pulse::before {
  -webkit-box-shadow: 9984px 0 0 -5px #f65169;
  box-shadow: 9984px 0 0 -5px #f65169;
  -webkit-animation: dot-pulse-before 1.5s infinite linear;
  animation: dot-pulse-before 1.5s infinite linear;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.dot-pulse::after {
  -webkit-box-shadow: 10014px 0 0 -5px #f65169;
  box-shadow: 10014px 0 0 -5px #f65169;
  -webkit-animation: dot-pulse-after 1.5s infinite linear;
  animation: dot-pulse-after 1.5s infinite linear;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

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

.no_more_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  background-color: #f0f2f5;
  color: #444444;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  width: 100%;
}

.i_postFormContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}

.i_post_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #f0f2f5;
}

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

.i_post_form a img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.i_post_form_textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.i_post_form_textarea textarea {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 13px 15px 0px 15px;
}

.i_form_buttons {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto minmax(180px, 1fr);
  grid-template-areas:
    "create emoji premium who"
    "publish publish publish publish";
  grid-auto-flow: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: transparent;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  border: none;
  box-shadow: none;
  margin-top: 10px;
  position: relative;
}

.ws_selected_chip {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 0.95rem;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e7ebf3;
  color: #4a4f5c;
  font-weight: 600;
  font-size: 14px;
  height: 44px;
  box-shadow: none;
  grid-area: emoji;
  justify-self: center;
}

.ws_selected_chip.ws_visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.i_form_buttons > .i_create_new_toggle {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  grid-area: create;
}

.i_form_buttons > .i_pb_emojis {
  grid-area: emoji;
  justify-self: center;
}

.i_form_buttons > .i_pb_premiumPost {
  grid-area: premium;
  justify-self: center;
}

.i_form_buttons > .form_who_see {
  -ms-grid-column: 4;
  grid-column: 4;
  -ms-grid-row: 1;
  grid-row: 1;
  grid-area: who;
  justify-self: end;
  margin-left: auto;
  width: auto;
}

.i_form_buttons > .publish_btn {
  -ms-grid-column: 1;
  grid-column: 1 / -1;
  -ms-grid-row: 2;
  grid-row: 2;
  grid-area: publish;
  width: 100%;
  margin-left: 0;
}

.i_create_new_toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0.95rem;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: #ffffff;
  color: #4a4f5c;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #e7ebf3;
}

.i_create_new_toggle:hover {
  background: #f3f6fb;
}

.create_new_icon {
  font-size: 18px;
  line-height: 1;
}

.i_quick_actions_container.qa_layout_popup {
  position: fixed;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 28px;
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition:
    opacity 0.18s ease,
    visibility 0.18s ease;
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease;
}

.i_quick_actions_container.qa_layout_popup.qaVisible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.i_quick_actions_container.qa_layout_popup .qa_overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 19, 29, 0.38);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.i_quick_actions_container.qa_layout_popup .qa_popup {
  position: relative;
  width: min(760px, 96vw);
  background: transparent;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  overflow: hidden;
  border: none;
  box-shadow: none;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(10px) scale(0.98);
  transform: translateY(10px) scale(0.98);
  -webkit-transition:
    opacity 0.18s ease,
    -webkit-transform 0.18s ease;
  transition:
    opacity 0.18s ease,
    -webkit-transform 0.18s ease;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    -webkit-transform 0.18s ease;
}

.i_quick_actions_container.qa_layout_popup.qaVisible .qa_popup {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}

.i_quick_actions_container.qa_layout_popup .qa_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  color: #1f2430;
  padding: 16px 20px;
  background: #f7f9fd;
  border-bottom: 1px solid #e6ebf3;
  display: none;
}

.i_quick_actions_container.qa_layout_popup .qa_close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #e1e6f0;
  color: #4a4f5c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
}

.i_quick_actions_container.qa_layout_popup .qa_close:hover {
  background: #d5dde9;
}

.i_quick_actions_container.qa_layout_popup .qa_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 18px;
  padding: 22px 24px 26px;
  background: transparent;
}

.i_quick_actions_container.qa_layout_popup .qa_body .form_btn,
.i_quick_actions_container.qa_layout_popup .qa_body .i_ai_generate {
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 110px;
  flex: 1 1 110px;
  max-width: 150px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  color: #2c2f37;
  text-align: center;
  width: auto;
  margin: 0;
  padding: 8px 6px;
  border-radius: 16px;
  justify-content: center;
}

.i_quick_actions_container.qa_layout_popup .qa_body .form_btn form {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.i_quick_actions_container.qa_layout_popup .qa_body .form_btn label {
  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;
  gap: 10px;
}

.qa_body .form_btn label input {
  display: none;
}

.i_quick_actions_container.qa_layout_popup
  .qa_body
  .form_btn
  .i_image_video_btn,
.i_quick_actions_container.qa_layout_popup .qa_body .i_ai_generate .i_pb_aiBox {
  margin: 0 auto;
  padding: 30px;
  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-radius: 50%;
  -webkit-border-radius: 50%;
  background: #e9eef7;
  box-shadow: 0 8px 16px rgba(20, 30, 60, 0.12);
  -webkit-transition:
    -webkit-transform 0.15s ease,
    -webkit-box-shadow 0.15s ease;
  transition:
    -webkit-transform 0.15s ease,
    -webkit-box-shadow 0.15s ease;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    -webkit-transform 0.15s ease,
    -webkit-box-shadow 0.15s ease;
}

.i_quick_actions_container.qa_layout_popup
  .qa_body
  .i_ai_generate
  .i_ai_emojis_Box {
  padding: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.qa_body .i_image_video_btn a {
  width: 100%;
  height: 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;
  color: inherit;
  text-decoration: none;
}

.i_quick_actions_container.qa_layout_popup .qa_item:hover .i_image_video_btn,
.i_quick_actions_container.qa_layout_popup .qa_item:hover .i_pb_aiBox {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(20, 30, 60, 0.18);
}

.i_quick_actions_container.qa_layout_popup .qa_body .form_btn:hover,
.i_quick_actions_container.qa_layout_popup .qa_body .i_ai_generate:hover {
  background: transparent !important;
  box-shadow: none !important;
}

.i_quick_actions_container.qa_layout_popup .qa_body .qa_item:hover {
  background: transparent !important;
  box-shadow: none !important;
}

.i_quick_actions_container.qa_layout_popup
  .qa_item[data-qa-type="image_video"]
  .i_image_video_btn {
  background: #e4553f;
}

.i_quick_actions_container.qa_layout_popup
  .qa_item[data-qa-type="reels"]
  .i_image_video_btn {
  background: #5b6777;
}

.i_quick_actions_container.qa_layout_popup
  .qa_item[data-qa-type="ai"]
  .i_pb_aiBox {
  background: #8e48d4;
}

.i_quick_actions_container.qa_layout_popup
  .qa_item[data-qa-type="poll"]
  .i_image_video_btn {
  background: #111827;
}

.i_quick_actions_container.qa_layout_popup
  .qa_item[data-qa-type="campaign"]
  .i_image_video_btn {
  background: #f59e0b;
}

.i_quick_actions_container.qa_layout_popup
  .qa_item[data-qa-type="product"]
  .i_image_video_btn {
  background: #0f766e;
}

.i_quick_actions_container.qa_layout_popup
  .qa_item[data-qa-type="schedule"]
  .i_image_video_btn {
  background: #2563eb;
}

.i_quick_actions_container.qa_layout_popup .qa_body .i_image_video_btn svg,
.i_quick_actions_container.qa_layout_popup .qa_body .i_ai_generate svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: currentColor;
}

.i_quick_actions_container.qa_layout_popup .qa_body .i_image_video_btn,
.i_quick_actions_container.qa_layout_popup .qa_body .i_pb_aiBox {
  color: #ffffff;
}

.i_quick_actions_container.qa_layout_popup .qa_body .i_image_video_btn svg *,
.i_quick_actions_container.qa_layout_popup .qa_body .i_ai_generate svg * {
  fill: currentColor;
  stroke: currentColor;
}

.i_quick_actions_container.qa_layout_popup .schedule_btn .i_image_video_btn {
  width: auto;
  height: auto;
  border-radius: 50%;
  color: #ffffff;
}

.i_quick_actions_container.qa_layout_popup .qa_body .qa_label {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(8, 12, 20, 0.35);
  line-height: 1.2;
  min-height: 18px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 4px;
  max-width: 100%;
}

.i_quick_actions_container.qa_layout_popup .qa_item {
  opacity: 0;
  -webkit-transform: translate3d(0, 12px, 0);
  transform: translate3d(0, 12px, 0);
}

.i_quick_actions_container.qa_layout_popup.qaVisible .qa_item {
  -webkit-animation: fadeInUp 0.35s ease both;
  animation: fadeInUp 0.35s ease both;
}

.i_quick_actions_container.qa_layout_popup.qaVisible .qa_item:nth-child(1) {
  animation-delay: 0.02s;
}
.i_quick_actions_container.qa_layout_popup.qaVisible .qa_item:nth-child(2) {
  animation-delay: 0.06s;
}
.i_quick_actions_container.qa_layout_popup.qaVisible .qa_item:nth-child(3) {
  animation-delay: 0.1s;
}
.i_quick_actions_container.qa_layout_popup.qaVisible .qa_item:nth-child(4) {
  animation-delay: 0.14s;
}
.i_quick_actions_container.qa_layout_popup.qaVisible .qa_item:nth-child(5) {
  animation-delay: 0.18s;
}
.i_quick_actions_container.qa_layout_popup.qaVisible .qa_item:nth-child(6) {
  animation-delay: 0.22s;
}
.i_quick_actions_container.qa_layout_popup.qaVisible .qa_item:nth-child(7) {
  animation-delay: 0.26s;
}
.i_quick_actions_container.qa_layout_popup.qaVisible .qa_item:nth-child(8) {
  animation-delay: 0.3s;
}
.i_quick_actions_container.qa_layout_popup.qaVisible .qa_item:nth-child(9) {
  animation-delay: 0.34s;
}
.i_quick_actions_container.qa_layout_popup.qaVisible .qa_item:nth-child(10) {
  animation-delay: 0.38s;
}
.i_quick_actions_container.qa_layout_popup.qaVisible .qa_item:nth-child(11) {
  animation-delay: 0.42s;
}
.i_quick_actions_container.qa_layout_popup.qaVisible .qa_item:nth-child(12) {
  animation-delay: 0.46s;
}

.i_quick_actions_container.qa_layout_popup.qaClosing .qa_item {
  -webkit-animation: fadeOutUp 0.22s ease both;
  animation: fadeOutUp 0.22s ease both;
}

.i_quick_actions_container.qa_layout_popup.qaClosing .qa_item:nth-child(1) {
  animation-delay: 0s;
}
.i_quick_actions_container.qa_layout_popup.qaClosing .qa_item:nth-child(2) {
  animation-delay: 0.03s;
}
.i_quick_actions_container.qa_layout_popup.qaClosing .qa_item:nth-child(3) {
  animation-delay: 0.06s;
}
.i_quick_actions_container.qa_layout_popup.qaClosing .qa_item:nth-child(4) {
  animation-delay: 0.09s;
}
.i_quick_actions_container.qa_layout_popup.qaClosing .qa_item:nth-child(5) {
  animation-delay: 0.12s;
}
.i_quick_actions_container.qa_layout_popup.qaClosing .qa_item:nth-child(6) {
  animation-delay: 0.15s;
}
.i_quick_actions_container.qa_layout_popup.qaClosing .qa_item:nth-child(7) {
  animation-delay: 0.18s;
}
.i_quick_actions_container.qa_layout_popup.qaClosing .qa_item:nth-child(8) {
  animation-delay: 0.21s;
}
.i_quick_actions_container.qa_layout_popup.qaClosing .qa_item:nth-child(9) {
  animation-delay: 0.24s;
}
.i_quick_actions_container.qa_layout_popup.qaClosing .qa_item:nth-child(10) {
  animation-delay: 0.27s;
}
.i_quick_actions_container.qa_layout_popup.qaClosing .qa_item:nth-child(11) {
  animation-delay: 0.3s;
}
.i_quick_actions_container.qa_layout_popup.qaClosing .qa_item:nth-child(12) {
  animation-delay: 0.33s;
}

@media (prefers-reduced-motion: reduce) {
  .i_quick_actions_container.qa_layout_popup .qa_item {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }

  .i_quick_actions_container.qa_layout_popup.qaVisible .qa_item {
    -webkit-animation: none;
    animation: none;
  }

  .i_quick_actions_container.qa_layout_popup.qaClosing .qa_item {
    -webkit-animation: none;
    animation: none;
  }
}

.i_quick_actions_container.qa_layout_inline {
  display: none;
  grid-column: 1 / -1;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: min(350px, 100%);
  z-index: 6;
}

.i_quick_actions_container.qa_layout_inline.qaVisible {
  display: block;
}

.i_quick_actions_container.qa_layout_inline .qa_overlay {
  display: none;
}

.i_quick_actions_container.qa_layout_inline .qa_popup {
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(30, 48, 90, 0.14);
  border: 1px solid #e6ebf3;
}

.i_quick_actions_container.qa_layout_inline .qa_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  color: #1f2430;
  padding: 12px 14px 10px 14px;
  background: #f3f6fb;
  border-bottom: 1px solid #e6ebf3;
}

.i_quick_actions_container.qa_layout_inline .qa_close {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #e1e6f0;
  color: #4a4f5c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
}

.i_quick_actions_container.qa_layout_inline .qa_close:hover {
  background: #d5dde9;
}

.i_quick_actions_container.qa_layout_inline .qa_body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 16px 16px 18px 16px;
}

.i_quick_actions_container.qa_layout_inline .qa_body .form_btn,
.i_quick_actions_container.qa_layout_inline .qa_body .i_ai_generate {
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  color: #7a7d84;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 14px 12px;
  border-radius: 12px;
  justify-content: center;
}

.i_quick_actions_container.qa_layout_inline .qa_body .form_btn form {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.i_quick_actions_container.qa_layout_inline .qa_body .form_btn label {
  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;
  gap: 6px;
}

.i_quick_actions_container.qa_layout_inline
  .qa_body
  .form_btn
  .i_image_video_btn,
.i_quick_actions_container.qa_layout_inline .qa_body .i_ai_generate .i_pb_aiBox,
.i_quick_actions_container.qa_layout_inline
  .qa_body
  .i_ai_generate
  .i_ai_emojis_Box {
  margin: 0 auto;
  width: 48px;
  height: 48px;
  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;
}

.i_quick_actions_container.qa_layout_inline .qa_body .i_image_video_btn svg {
  width: 24px;
  height: 24px;
  fill: #f65169;
}

.i_quick_actions_container.qa_layout_inline .qa_body .i_ai_generate svg {
  width: 24px;
  height: 24px;
  fill: #f65169;
}

.i_quick_actions_container.qa_layout_inline .qa_body .qa_label {
  font-size: 13px;
  font-weight: 400;
  color: #51535a;
  line-height: 1.25;
  min-height: 18px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 6px;
  max-width: 100%;
}

.i_quick_actions_container.qa_layout_inline .qa_body .form_btn:hover,
.i_quick_actions_container.qa_layout_inline .qa_body .i_ai_generate:hover {
  color: #4d4f54;
}

body.qaOpen {
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  .i_quick_actions_container.qa_layout_popup .qa_popup {
    width: min(520px, 94vw);
    border-radius: 20px;
  }
  .i_quick_actions_container.qa_layout_popup .qa_body {
    justify-content: center;
    align-content: center;
    gap: 14px;
    padding: 18px 16px 22px;
  }
  .i_quick_actions_container.qa_layout_popup .qa_body .form_btn,
  .i_quick_actions_container.qa_layout_popup .qa_body .i_ai_generate {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 14px);
    flex: 0 0 calc(50% - 14px);
    max-width: calc(50% - 14px);
  }
  .i_quick_actions_container.qa_layout_popup
    .qa_body
    .form_btn
    .i_image_video_btn,
  .i_quick_actions_container.qa_layout_popup
    .qa_body
    .i_ai_generate
    .i_pb_aiBox,
  .i_quick_actions_container.qa_layout_popup
    .qa_body
    .i_ai_generate
    .i_ai_emojis_Box {
    width: auto;
    height: auto;
  }
}

@media screen and (max-width: 528px) {
  .i_form_buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
  }
  .publish_btn {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}

@media screen and (max-width: 720px) {
  .form_btn,
  .form_who_see,
  .i_pb_emojis,
  .i_pb_premiumPost {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-left: 0;
    width: auto;
  }

  .i_image_video_btn {
    margin-right: 8px;
  }

  .i_form_buttons {
    padding: 10px;
    -ms-grid-columns: minmax(auto, 1fr) auto auto minmax(auto, 1fr);
    grid-template-columns: minmax(auto, 1fr) auto auto minmax(auto, 1fr);
    grid-template-areas:
      "create emoji premium who"
      "publish publish publish publish";
  }

  .i_form_buttons .publish_btn {
    -ms-grid-column: 1;
    grid-column: 1 / -1;
    -ms-grid-row: 2;
    grid-row: 2;
    width: 100%;
    margin-left: 0;
  }

  .i_form_buttons .form_who_see {
    -ms-grid-column: 4;
    grid-column: 4;
    -ms-grid-row: 1;
    grid-row: 1;
    justify-self: end;
    width: auto;
    margin-left: auto;
  }
}

.form_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background-color: #ffffff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  border: none;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 140px;
  flex: 1 1 140px;
  min-height: 2.6rem;
  box-shadow: none;
}

.i_image_video_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 5px;
  cursor: pointer;
  margin-right: 6px;
}

.form_btn label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  line-height: 1.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  font-weight: 500;
  cursor: pointer;
}

.i_image_video_btn svg {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  fill: #f65169;
}

.form_btn label input {
  display: none;
  opacity: 0;
}

.form_who_see {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background-color: #ffffff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  font-weight: 500;
  padding: 0.6rem 0.95rem;
  cursor: pointer;
  margin-left: 8px;
  border: 1px solid #e5e9f1;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 140px;
  flex: 1 1 140px;
  min-height: 2.6rem;
}

.form_who_see .form_who_see_icon_set svg {
  width: 16px !important;
  height: 16px !important;
  fill: #f65169 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-left: 0px;
}

.form_who_see_icon_set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 5px;
}

.form_btn:hover,
.form_who_see:hover,
.i_pb_emojis:hover,
.i_pb_premiumPost:hover,
.i_ai_generate:hover {
  background-color: #f7f5ef;
}

.form_who_see svg {
  width: 9px !important;
  height: 9px !important;
  fill: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-left: 5px;
}

.i_choose_ws_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  position: absolute;
  width: 100%;
  min-width: 200px;
  padding-bottom: 15px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  margin-top: 60px;
  left: 0px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  z-index: 5;
  display: none;
}

.whoSeeBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.i_whoseech_menu_item_out svg {
  width: 18px !important;
  height: 18px !important;
  fill: #858fad;
  margin-right: 8px;
}

.i_whoseech_menu_item_out {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #444444;
  font-weight: 400;
  padding: 15px;
}

.i_whoseech_menu_item_out svg {
  width: 18px;
  height: 18px;
  fill: #858fad;
  margin-right: 8px;
}

.i_whoseech_menu_item_out:hover svg {
  fill: #f65169;
}

.i_whoseech_menu_item_out:hover {
  background-color: #f0f1f5;
  color: #f65169;
}

.whctt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 15px 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  background-color: #f0f2f5;
}

.publish_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  background-color: #1e88e5;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  margin-left: 8px;
  padding: 0.6rem 1rem;
  min-height: 2.6rem;
  text-transform: capitalize;
  cursor: pointer;
}

.publish_btn:hover {
  background-color: #1170c4;
}

.publish svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  margin-right: 5px;
}

/* Action row alignment */
.i_form_buttons > .i_create_new_toggle,
.i_form_buttons > .form_who_see,
.i_form_buttons > .publish_btn,
.i_form_buttons > .form_btn {
  height: 44px;
  min-height: 44px;
  line-height: 1;
}
.form_who_see {
  padding: 0 14px;
}
.publish_btn {
  padding: 0 16px;
}

@media screen and (max-width: 768px) {
  .i_form_buttons {
    grid-template-columns: repeat(auto-fit, minmax(auto, 1fr));
    grid-auto-rows: minmax(44px, auto);
    gap: 8px;
  }
  .i_form_buttons > .publish_btn,
  .i_form_buttons > .i_create_new_toggle,
  .i_form_buttons > .form_who_see,
  .i_form_buttons > .form_btn {
    width: 100%;
    margin-left: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
  .publish_btn {
    min-height: 44px;
  }
  .i_create_new_toggle,
  .form_who_see {
    min-height: 44px;
  }
}

.wselected {
  font-weight: 600;
  color: #f65169;
}

.wselected svg {
  fill: #f65169 !important;
}

.wBox {
  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;
}

.i_uploaded_iv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  border-top: 1px solid #f0f2f5;
  border-bottom: 1px solid #f0f2f5;
  margin-top: 15px;
  position: relative;
}

.i_uploaded_file_box {
  display: inline-block;
  width: 100%;
  position: relative;
}

.i_uploaded_item {
  position: relative;
  float: left;
  width: calc(25% - 1px);
  width: -moz-calc(100%/4 - 1px);
  padding: 3px;
}

.i_uploaded_file {
  position: relative;
  padding-top: 100%;
  width: 100%;
  overflow: hidden;
  margin: 1px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.i_file {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
}

.i_uploaded_file:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.i_delete_item_button {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  cursor: pointer;
}

.i_delete_item_button svg {
  width: 13px;
  height: 13px;
  fill: #ffffff;
}

.i_upload_progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  position: absolute;
  top: -4px;
  height: 6px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  left: 0px;
  z-index: 6;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  width: 0;
  overflow: hidden;
  background-size: 180% 100%;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}

.i_upload_progress.is-hidden {
  display: none;
}

.i_upload_progress.is-live {
  -webkit-animation: dizzy-upload-shimmer 2s linear infinite;
  animation: dizzy-upload-shimmer 2s linear infinite;
}

.i_upload_progress.is-indeterminate {
  width: 38%;
  -webkit-animation:
    dizzy-upload-indeterminate 1.4s ease-in-out infinite,
    dizzy-upload-shimmer 2s linear infinite;
  animation:
    dizzy-upload-indeterminate 1.4s ease-in-out infinite,
    dizzy-upload-shimmer 2s linear infinite;
}

.i_upload_progress.processing-animation {
  width: 68%;
  -webkit-animation:
    dizzy-upload-processing 1.8s ease-in-out infinite,
    dizzy-upload-shimmer 2s linear infinite;
  animation:
    dizzy-upload-processing 1.8s ease-in-out infinite,
    dizzy-upload-shimmer 2s linear infinite;
}

.dizzy-upload-status {
  display: block;
  position: relative;
  margin-top: 0;
  padding: 18px 20px 16px;
  border: 1px solid rgba(246, 81, 105, 0.12);
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 255, 0.94)
  );
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: hidden;
}

.dizzy-upload-status:before {
  content: "";
  position: absolute;
  top: -42px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(250, 180, 41, 0.18),
    rgba(250, 180, 41, 0)
  );
}

.dizzy-upload-status__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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: 12px;
  position: relative;
  z-index: 1;
}

.dizzy-upload-status__title {
  color: #1d2742;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.dizzy-upload-status__percent {
  min-width: 48px;
  color: #f65169;
  text-align: right;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

.dizzy-upload-status__hint {
  margin-top: 8px;
  color: #525c7a;
  font-size: 14px;
  line-height: 1.45;
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.dizzy-upload-status.is-active .dizzy-upload-status__title {
  color: #202c4d;
}

.dizzy-upload-status.is-processing .dizzy-upload-status__percent {
  opacity: 0.92;
}

.dizzy-upload-status.is-error .dizzy-upload-status__percent {
  color: #c63f56;
}

.dizzy-upload-status.is-done .dizzy-upload-status__percent {
  color: #1ea672;
}

.dizzy-upload-status.is-done {
  position: absolute;
  top: 12px;
  right: 12px;
  width: auto;
  min-width: 220px;
  max-width: min(280px, calc(100% - 24px));
  padding: 14px 18px;
  border-radius: 18px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.dizzy-upload-status.is-done:before {
  top: -36px;
  right: -28px;
  width: 96px;
  height: 96px;
}

.dizzy-upload-status.is-done .dizzy-upload-status__head {
  gap: 16px;
}

.dizzy-upload-status.is-done .dizzy-upload-status__title {
  font-size: 15px;
}

.dizzy-upload-status.is-done .dizzy-upload-status__percent {
  min-width: 52px;
  font-size: 14px;
}

.dizzy-upload-status.is-done .dizzy-upload-status__hint {
  display: none;
}

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

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

@-webkit-keyframes dizzy-upload-indeterminate {
  0% {
    left: 0;
    width: 20%;
  }
  50% {
    left: 28%;
    width: 42%;
  }
  100% {
    left: 74%;
    width: 20%;
  }
}

@keyframes dizzy-upload-indeterminate {
  0% {
    left: 0;
    width: 20%;
  }
  50% {
    left: 28%;
    width: 42%;
  }
  100% {
    left: 74%;
    width: 20%;
  }
}

@-webkit-keyframes dizzy-upload-processing {
  0% {
    left: 10%;
    width: 26%;
  }
  50% {
    left: 34%;
    width: 38%;
  }
  100% {
    left: 62%;
    width: 26%;
  }
}

@keyframes dizzy-upload-processing {
  0% {
    left: 10%;
    width: 26%;
  }
  50% {
    left: 34%;
    width: 38%;
  }
  100% {
    left: 62%;
    width: 26%;
  }
}

.video_n {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px;
  z-index: 2;
}

.video_n svg {
  width: 15px;
  height: 15px;
  fill: #ffffff;
  -webkit-box-shadow:
    0px 0px 4px rgba(0, 0, 0, 0.05),
    0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow:
    0px 0px 4px rgba(0, 0, 0, 0.05),
    0 0 10px rgba(0, 0, 0, 0.1);
}

.v_custom_tumb {
  margin-top: 5px;
  padding: 8px;
  border-radius: 10px;
  width: 100%;
  background-color: #f0f2f5;
  color: #000000;
  font-weight: 500;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.noPost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  padding: 30px;
  margin-bottom: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.noPostIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100px;
  height: 100px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.noPostIcon svg {
  width: 100px;
  height: 100px;
}

.noPostNote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  text-align: center;
  font-weight: 600;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #858fad;
  font-size: 14px;
  line-height: 1.5rem;
}

.ccounter {
  font-weight: 400;
  font-size: 13px;
  color: #ffffff;
  background-color: #f65169;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 8px;
}

.playbutton {
  cursor: pointer;
  margin: auto auto;
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.playbutton svg {
  width: 55px;
  height: 55px;
  fill: #ffffff;
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
}

.i_inline_play_overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: 0;
  transform: translate(-50%, -50%) scale(0.96);
  z-index: 7;
  cursor: pointer;
  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: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease,
    -webkit-transform 0.2s ease;
}

.i_inline_audio_toggle,
.i_inline_expand_toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 11, 20, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  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: 0;
  z-index: 40;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.34);
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  pointer-events: auto !important;
  -webkit-transition:
    background-color 0.18s ease,
    -webkit-transform 0.18s ease;
  transition:
    background-color 0.18s ease,
    -webkit-transform 0.18s ease;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease,
    -webkit-transform 0.18s ease;
}

.i_inline_expand_toggle {
  top: 58px;
}

.i_inline_audio_toggle:hover,
.i_inline_expand_toggle:hover {
  background: rgba(6, 11, 20, 0.44);
}

.i_inline_audio_toggle:active,
.i_inline_expand_toggle:active {
  transform: scale(0.96);
}

.i_inline_audio_toggle:focus-visible,
.i_inline_expand_toggle:focus-visible {
  outline: 2px solid rgba(84, 163, 255, 0.9);
  outline-offset: 2px;
}

.i_inline_audio_toggle svg,
.i_inline_expand_toggle svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  display: block !important;
}

.i_post_image_swip_wrapper.inline_video_mode .i_inline_audio_toggle,
.i_post_image_swip_wrapper.inline_video_mode .i_inline_expand_toggle {
  z-index: 60 !important;
}

.i_post_image_swip_wrapper
  .i_inline_video_shell.i_inline_controls_fixed:not(.is-inline-expanded)
  .i_inline_audio_toggle,
.i_post_image_swip_wrapper
  .i_inline_video_shell.i_inline_controls_fixed:not(.is-inline-expanded)
  .i_inline_expand_toggle {
  position: fixed;
  right: auto;
  z-index: 1200 !important;
}

.i_post_image_swip_wrapper
  .i_inline_video_shell.i_inline_controls_fixed:not(.is-inline-expanded)
  .i_inline_audio_toggle {
  top: var(
    --i-inline-audio-fixed-top,
    var(--i-inline-controls-fixed-top, 90px)
  );
  left: var(--i-inline-audio-fixed-left, auto);
}

.i_post_image_swip_wrapper
  .i_inline_video_shell.i_inline_controls_fixed:not(.is-inline-expanded)
  .i_inline_expand_toggle {
  top: var(
    --i-inline-expand-fixed-top,
    calc(var(--i-inline-controls-fixed-top, 90px) + 46px)
  );
  left: var(--i-inline-expand-fixed-left, auto);
}

.i_inline_play_overlay svg {
  width: 55px;
  height: 55px;
  fill: #ffffff;
  -webkit-filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.4));
}

.i_inline_play_overlay .i_inline_play_fallback {
  font-size: 34px;
  line-height: 1;
  color: #ffffff;
  margin-left: 2px;
}

.i_inline_play_overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.i_inline_play_overlay.is-visible:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.i_post_image_swip_wrapper.inline_video_mode {
  cursor: default;
  background-image: none !important;
  background-color: #050607;
}

.i_image_one_full
  .i_post_image_swip_wrapper.inline_video_mode.inline_video_full_mode {
  display: block;
  width: 100%;
  height: 0;
  padding-top: var(--inline-video-padding, 56.25%);
  overflow: hidden;
  background: #050607 !important;
}

.i_post_image_swip_wrapper.inline_video_mode .playbutton,
.i_post_image_swip_wrapper.inline_video_mode .i_p_image {
  display: none;
}

.i_post_image_swip_wrapper.inline_video_mode .video-js .vjs-big-play-button {
  display: none !important;
}

.i_post_image_swip_wrapper .i_inline_video_shell {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  background: radial-gradient(
    circle at 20% 0,
    rgba(255, 255, 255, 0.12),
    rgba(0, 0, 0, 0.95)
  );
}

html.i_inline_video_modal_open,
body.i_inline_video_modal_open {
  overflow: hidden !important;
  overscroll-behavior: contain;
}

.i_post_image_swip_wrapper .i_inline_video_shell.is-inline-expanded {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  z-index: 16000;
  background: #000;
}

.i_post_image_swip_wrapper
  .i_inline_video_shell.is-inline-expanded
  .i_inline_video_player {
  -o-object-fit: contain;
  object-fit: contain;
}

.i_post_image_swip_wrapper .i_inline_video_shell.is-inline-expanded .video-js,
.i_post_image_swip_wrapper
  .i_inline_video_shell.is-inline-expanded
  .video-js
  .vjs-tech {
  width: 100% !important;
  height: 100% !important;
}

.i_post_image_swip_wrapper
  .i_inline_video_shell.is-inline-expanded
  .video-js
  .vjs-tech {
  -o-object-fit: contain;
  object-fit: contain;
}

.i_post_image_swip_wrapper
  .i_inline_video_shell.is-inline-expanded
  .i_inline_audio_toggle {
  top: 12px;
  right: 12px;
}

.i_post_image_swip_wrapper
  .i_inline_video_shell.is-inline-expanded
  .i_inline_expand_toggle {
  top: 58px;
  right: 12px;
}

.i_post_image_swip_wrapper .i_inline_video_player {
  width: 100% !important;
  height: 100% !important;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  background: #000;
}

.i_image_one_full
  .i_post_image_swip_wrapper.inline_video_mode.inline_video_full_mode
  .i_inline_video_player {
  -o-object-fit: contain;
  object-fit: contain;
}

:root {
  --dizzy-player-accent: #2f8cff;
}

.video-js.dizzy-pro-video,
.lg-outer .video-js {
  border-radius: 14px;
  overflow: hidden;
  background-color: #050607;
}

.video-js.dizzy-pro-video .vjs-tech,
.lg-outer .video-js .vjs-tech {
  border-radius: 14px;
}

.video-js.dizzy-pro-video .vjs-control-bar,
.lg-outer .video-js .vjs-control-bar {
  height: 3.6em;
  padding: 0 0.55em;
  background: linear-gradient(
    180deg,
    rgba(4, 8, 15, 0.05) 0%,
    rgba(4, 8, 15, 0.92) 65%,
    rgba(4, 8, 15, 0.98) 100%
  );
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.video-js.dizzy-pro-video .vjs-big-play-button,
.lg-outer .video-js .vjs-big-play-button {
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  line-height: 74px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.32),
      rgba(255, 255, 255, 0.05) 35%
    ),
    linear-gradient(135deg, var(--dizzy-player-accent) 0%, #125ecc 100%);
  box-shadow: 0 14px 30px rgba(8, 17, 32, 0.45);
}

.video-js.dizzy-pro-video:hover .vjs-big-play-button,
.lg-outer .video-js:hover .vjs-big-play-button {
  transform: translate(-50%, -50%) scale(1.04);
}

.video-js.dizzy-pro-video .vjs-play-progress,
.video-js.dizzy-pro-video .vjs-volume-level,
.lg-outer .video-js .vjs-play-progress,
.lg-outer .video-js .vjs-volume-level {
  background-color: var(--dizzy-player-accent);
}

.video-js.dizzy-pro-video .vjs-slider,
.lg-outer .video-js .vjs-slider {
  border-radius: 999px;
}

.video-js.dizzy-pro-video .vjs-progress-holder,
.lg-outer .video-js .vjs-progress-holder {
  height: 0.5em;
  border-radius: 999px;
}

.video-js.dizzy-pro-video .vjs-load-progress div,
.lg-outer .video-js .vjs-load-progress div {
  background: rgba(255, 255, 255, 0.26);
}

.video-js.dizzy-pro-video .vjs-control:hover,
.video-js.dizzy-pro-video .vjs-control:focus,
.lg-outer .video-js .vjs-control:hover,
.lg-outer .video-js .vjs-control:focus {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

.video-js.dizzy-pro-video .vjs-menu .vjs-menu-content,
.lg-outer .video-js .vjs-menu .vjs-menu-content {
  border-radius: 10px;
  background: rgba(9, 16, 28, 0.92);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
}

.onlySubs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.51);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.i_post_text > .onlySubs,
.poll_wrapper > .onlySubs {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.i_post_text > .onlySubs .onlySubs,
.i_post_text > .onlySubs .onlyPremium,
.poll_wrapper > .onlySubs .onlySubs,
.poll_wrapper > .onlySubs .onlyPremium {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.onlyPremium {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.51);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

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

.onlySubs_icon {
  margin: 0px auto;
  border: 1px solid #f65169;
  background: rgba(246, 81, 105, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  padding: 25px;
}

.onlySubs_icon svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 60px;
  height: 60px;
  fill: #ffffff;
}

.onlySubs_note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding-top: 10px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.onlySubs_note p {
  padding: 3px;
  margin: 0px;
}

.need_login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  padding: 20px 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 600;
  color: #525c7a;
  font-size: 14px;
  background-color: #f0f2f5;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.extensionPost {
  border-top: 8px solid #f65169;
}

.i_modal_bg_in,
.i_moda_bg_in_form {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  visibility: hidden;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01);
  transition: -webkit-transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01);
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01);
  transition:
    transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01),
    -webkit-transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01);
  z-index: 2000 !important;
  background: rgba(0, 0, 0, 0.51);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow-y: scroll;
  padding: 5px 0px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.i_modal_cover_resize_bg_in,
.i_modal_avatar_resize_bg_in {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  visibility: hidden;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01);
  transition: -webkit-transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01);
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01);
  transition:
    transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01),
    -webkit-transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.01);
  z-index: 2001 !important;
  background: rgba(0, 0, 0, 0.51);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow-y: scroll;
  padding: 5px 0px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.i_modal_cover_resize_bg_in .i_modal_in_in {
  width: 100%;
  max-width: 650px;
  border-radius: 8px;
  -webkit-box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
}

.i_modal_display_in .i_modal_cover_resize_bg_in .i_modal_in_in {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.i_modal_avatar_resize_bg_in .i_modal_in_in {
  width: 100%;
  max-width: 650px;
  border-radius: 8px;
  -webkit-box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
}

.i_modal_display_in .i_modal_avatar_resize_bg_in .i_modal_in_in {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.i_modal_display_in {
  visibility: visible;
  opacity: 1;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.i_modal_in_in {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #ffffff;
  opacity: 1;
  cursor: auto;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.i_modal_display_in .i_modal_in_in {
  -webkit-transition: -webkit-transform 0.3s
    cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.i_modal_bg_in .i_modal_in_in {
  width: 100%;
  max-width: 650px;
  border-radius: 8px;
  -webkit-box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
}

.i_modal_display_in .i_modal_bg_in .i_modal_in_in {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.i_moda_bg_in_form .i_modal_in_in {
  width: 100%;
  max-width: 650px;
  border-radius: 8px;
  -webkit-box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
}

.i_modal_display_in .i_moda_bg_in_form .i_modal_in_in {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.i_modal_g_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  background-color: #f0f2f5;
  padding: 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.i_modal_ac_header {
  display: inline-block;
  width: 100%;
  background-color: #f0f2f5;
  padding: 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.i_more_text_wrapper {
  display: inline-block;
  width: 100%;
  padding: 20px;
}

.more_textarea {
  outline: none;
  resize: none;
  border: 2px solid #f0f2f5;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  background-color: transparent;
  min-height: 18px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  padding: 15px;
  width: 100%;
  font-size: 15px;
}

.i_sharing_post_wrapper {
  display: inline-block;
  width: 100%;
  padding: 20px;
  padding-top: 0px;
}

.i_shared_post_wrapper {
  display: inline-block;
  width: 100%;
  padding-top: 0px;
}

.i_sharing_post_wrapper_in {
  display: inline-block;
  overflow: hidden;
  border: 2px solid #f0f2f5;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  width: 100%;
}

.i_modal_g_footer {
  display: inline-block;
  background-color: #f0f2f5;
  padding: 10px 20px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  width: 100%;
}

.shareBtn {
  padding: 13px 20px;
  background-color: #1e88e5;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  cursor: pointer;
  float: right;
}

.shareBtn:hover {
  background-color: #1170c4;
}

.empty_data_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  background-color: #fafafa;
}

.empty_data_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  border-right: 2px solid #f0f2f5;
  padding: 20px;
}

.empty_data_icon svg {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.empty_data_desc_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 10px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.empty_data_desc_title {
  display: inline-block;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  margin-bottom: 8px;
}

.empty_data_desc_des {
  display: inline-block;
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #525c7a;
}

.shareClose,
.coverCropClose {
  position: absolute;
  padding: 15px;
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  z-index: 1;
  right: 10px;
  top: 6px;
  cursor: pointer;
}

.shareClose svg,
.coverCropClose svg {
  fill: #525c7a;
  width: 18px;
  height: 18px;
}

.shareClose:hover,
.coverCropClose:hover {
  background-color: #e4e6eb;
}

.i_modal_display_in .i_modal_in_in_out {
  -webkit-animation: zoomOut 0.3s ease-in-out 0.3s;
  animation: zoomOut 0.3s ease-in-out 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.i_bottom_left_alert_container {
  position: fixed;
  left: 10px;
  bottom: 10px;
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  z-index: 99999999;
  width: 100%;
  max-width: 360px;
}

.warning_alert {
  -webkit-box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
  border-top: 8px solid #f65169;
}

.notice_alert {
  -webkit-box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
  border-top: 8px solid #7a0a1b;
}

.i_alert_close {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 8px;
  cursor: pointer;
  z-index: 1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.i_alert_close:hover {
  background-color: #f0f1f5;
}

.i_alert_close svg {
  width: 15px;
  height: 15px;
  fill: #858fad;
}

.i_alert_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  position: relative;
  padding: 10px 15px;
  padding-top: 30px;
}

.i_alert_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_alert_icon svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 28px;
  height: 28px;
  fill: #f65169;
}

.i_alert_icon_tick {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_alert_icon_tick svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 28px;
  height: 28px;
  fill: #43a047;
}

.i_alert_notes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 100%;
}

.i_alert_title {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  text-align: left;
}

.i_alert_desc {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  text-align: left;
}

.i_warning,
.i_warning_point,
.i_warning_point_two,
.i_warning_prmfl,
.i_warning_unsupported,
.i_warning_ai,
.i_warning_ai_credit,
.i_warning_poll,
.i_warning_poll_edit,
.i_upload_warning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  background-color: #f65169;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  margin-bottom: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 15px;
  display: none;
  text-align: center;
}

.i_wcs_in {
  display: inline-block;
  width: 100%;
  padding-top: 15px;
}

.who_can_see_pop_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  cursor: pointer;
  position: relative;
  margin-bottom: 10px;
}

.who_can_see_pop_item:hover {
  background-color: #f0f2f5;
}

.whoCanSeeIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #e4e6eb;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.whoCanSeeIcon svg {
  width: 24px;
  height: 24px;
  fill: #000000;
}

.whoCanSeeTit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  padding-left: 10px;
}

.i_whoCC {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  position: relative;
  margin-left: auto;
}

.whoCC {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  position: absolute;
  right: 10px;
  top: 0px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -76px;
}

.whoCCbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.whoCCboxActive {
  width: 15px;
  height: 15px;
  background-color: #f65169;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.whoCCboxActive::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  border: 2px solid #f65169;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  top: -4px;
  left: -4px;
}

.whoCCboxPassive {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.whoCCboxPassive::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  border: 2px solid #e4e6eb;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  top: -4px;
  left: -4px;
}

.selectedWhoCanSee {
  background-color: rgba(246, 81, 105, 0.07);
}

#pollBuilder.poll_builder {
  position: relative;
  margin: 14px 0 10px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid #e5ebf4;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f8fd 100%);
  -webkit-box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

#pollBuilder.poll_builder::before {
  content: none;
}

#pollBuilder .poll_builder_head {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e8eef7;
}

#pollBuilder .poll_builder_head_copy {
  min-width: 0;
}

#pollBuilder .poll_builder_title {
  color: #172033;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.15;
}

#pollBuilder .poll_builder_subtitle {
  margin-top: 7px;
  color: #66758f;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

#pollBuilder .close_poll_builder {
  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-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: auto;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid #dbe4f0;
  background: rgba(255, 255, 255, 0.88);
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

#pollBuilder .close_poll_builder:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}

#pollBuilder .close_poll_builder svg {
  width: 15px;
  height: 15px;
  fill: #617089;
}

#pollBuilder .poll_options_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  counter-reset: pollOption;
}

#pollBuilder .poll_option_input {
  position: relative;
  counter-increment: pollOption;
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#pollBuilder .poll_option_input::before {
  content: counter(pollOption);
  position: absolute;
  left: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  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-radius: 10px;
  background: linear-gradient(135deg, #fff1f5 0%, #ffe3eb 100%);
  border: 1px solid #ffd0dc;
  color: #ff5b73;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

#pollBuilder .poll_option_field {
  width: 100%;
  min-height: 56px;
  padding: 0 48px 0 56px;
  border-radius: 18px;
  border: 1px solid #dde6f1;
  background: #ffffff;
  color: #172033;
  font-size: 15px;
  font-weight: 600;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  -webkit-transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    -webkit-box-shadow 0.18s ease;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    -webkit-box-shadow 0.18s ease;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    -webkit-box-shadow 0.18s ease;
}

#pollBuilder .poll_option_field::placeholder {
  color: #9aa5b8;
  font-weight: 500;
}

#pollBuilder .poll_option_input:focus-within .poll_option_field {
  border-color: #cad8ea;
  -webkit-box-shadow: 0 0 0 4px rgba(226, 232, 240, 0.55);
  box-shadow: 0 0 0 4px rgba(226, 232, 240, 0.55);
}

#pollBuilder .remove_poll_option {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  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-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #7b8799;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

#pollBuilder .remove_poll_option:hover {
  background: #fff1f5;
  border-color: #ffd1dc;
  color: #ff5b73;
}

#pollBuilder .poll_actions {
  margin-top: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

#pollBuilder .add_poll_option {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  padding: 11px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff5a76 0%, #ff7b92 100%);
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  -webkit-box-shadow: 0 14px 28px rgba(255, 90, 118, 0.18);
  box-shadow: 0 14px 28px rgba(255, 90, 118, 0.18);
}

#pollBuilder .add_poll_option:hover {
  background: linear-gradient(135deg, #ff4f6e 0%, #ff7089 100%);
}

#pollBuilder .add_poll_option svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

#pollBuilder .poll_limit_notice {
  margin-left: auto;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px dashed #d7dfeb;
  background: rgba(255, 255, 255, 0.72);
  color: #6c7a92;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@media only screen and (max-width: 700px) {
  #pollBuilder.poll_builder {
    margin: 12px 0 8px;
    padding: 16px;
    border-radius: 22px;
  }

  #pollBuilder .poll_builder_head {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  #pollBuilder .poll_builder_title {
    font-size: 19px;
  }

  #pollBuilder .poll_builder_subtitle {
    font-size: 12px;
  }

  #pollBuilder .close_poll_builder {
    padding: 9px;
    border-radius: 14px;
  }

  #pollBuilder .poll_option_input::before {
    left: 12px;
    width: 26px;
    height: 26px;
    border-radius: 9px;
    font-size: 11px;
  }

  #pollBuilder .poll_option_field {
    min-height: 52px;
    padding: 0 44px 0 50px;
    border-radius: 16px;
    font-size: 14px;
  }

  #pollBuilder .remove_poll_option {
    width: 28px;
    height: 28px;
    right: 10px;
  }

  #pollBuilder .poll_actions {
    -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;
  }

  #pollBuilder .add_poll_option {
    width: 100%;
  }

  #pollBuilder .poll_limit_notice {
    width: 100%;
    margin-left: 0;
  }
}

.who_can_see_modal .i_modal_in_in {
  width: min(520px, calc(100vw - 32px));
  border-radius: 28px;
  -webkit-border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  -webkit-box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.who_can_see_modal .who_can_see_modal_content {
  padding: 0;
}

.who_can_see_modal .who_can_see_modal_header {
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 22px 24px 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fc 100%);
  border-bottom: 1px solid #e8eef7;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  text-align: left;
}

.who_can_see_modal .who_can_see_modal_title_wrap {
  min-width: 0;
  padding-right: 72px;
}

.who_can_see_modal .who_can_see_modal_title {
  color: #172033;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.who_can_see_modal .who_can_see_modal_subtitle {
  margin-top: 8px;
  color: #66758f;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.who_can_see_modal .who_can_see_modal_close {
  right: 18px;
  top: 50%;
  padding: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #dbe4f0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.who_can_see_modal .who_can_see_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}

.who_can_see_modal .who_can_see_modal_close svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: #617089;
}

.who_can_see_modal .who_can_see_modal_body {
  padding: 18px 20px 20px;
}

.who_can_see_modal .who_can_see_modal_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;
  padding-top: 0;
}

.who_can_see_modal .who_can_see_pop_item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 16px;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  border: 1px solid #e3eaf4;
  background: linear-gradient(180deg, #fbfcff 0%, #f6f9fd 100%);
  -webkit-transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    -webkit-transform 0.18s ease,
    -webkit-box-shadow 0.18s ease;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    -webkit-transform 0.18s ease,
    -webkit-box-shadow 0.18s ease;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    -webkit-transform 0.18s ease,
    -webkit-box-shadow 0.18s ease;
}

.who_can_see_modal .who_can_see_pop_item:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-color: #d2ddec;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.who_can_see_modal .whoCanSeeIcon {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  background: linear-gradient(135deg, #fff1f5 0%, #ffe5ec 100%);
  border: 1px solid #ffd3de;
}

.who_can_see_modal .whoCanSeeIcon svg {
  width: 22px;
  height: 22px;
  fill: #ff5b73;
}

.who_can_see_modal .who_can_see_modal_copy {
  min-width: 0;
}

.who_can_see_modal .whoCanSeeTit {
  padding-left: 0;
  color: #172033;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.who_can_see_modal .who_can_see_modal_item_desc {
  margin-top: 5px;
  color: #6a7891;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

.who_can_see_modal .i_whoCC {
  margin-left: 0;
}

.who_can_see_modal .whoCC {
  position: relative;
  right: auto;
  top: auto;
  margin-top: 0;
}

.who_can_see_modal .whoCCbox {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.who_can_see_modal .whoCCboxActive,
.who_can_see_modal .whoCCboxPassive {
  position: relative;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.who_can_see_modal .whoCCboxActive::after,
.who_can_see_modal .whoCCboxPassive::after {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  top: 0;
  left: 0;
}

.who_can_see_modal .whoCCboxPassive::after {
  border: 2px solid #d7deea;
}

.who_can_see_modal .whoCCboxActive::after {
  border: 2px solid #ff5b73;
  -webkit-box-shadow: 0 0 0 4px rgba(255, 91, 115, 0.12);
  box-shadow: 0 0 0 4px rgba(255, 91, 115, 0.12);
}

.who_can_see_modal .whoCCboxActive::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #ff5b73;
  z-index: 1;
}

.who_can_see_modal .selectedWhoCanSee {
  background: linear-gradient(180deg, #fff8fb 0%, #fff1f5 100%);
  border-color: #ffc6d4;
  -webkit-box-shadow: 0 16px 32px rgba(255, 91, 115, 0.1);
  box-shadow: 0 16px 32px rgba(255, 91, 115, 0.1);
}

.who_can_see_modal .selectedWhoCanSee .whoCanSeeIcon {
  background: linear-gradient(135deg, #ffeff4 0%, #ffe1ea 100%);
  border-color: #ffbfce;
}

@media only screen and (max-width: 700px) {
  .who_can_see_modal .i_modal_in_in {
    width: min(100%, calc(100vw - 20px));
    border-radius: 24px;
    -webkit-border-radius: 24px;
  }

  .who_can_see_modal .who_can_see_modal_header {
    padding: 18px 18px 16px;
  }

  .who_can_see_modal .who_can_see_modal_title_wrap {
    padding-right: 56px;
  }

  .who_can_see_modal .who_can_see_modal_title {
    font-size: 20px;
  }

  .who_can_see_modal .who_can_see_modal_subtitle {
    font-size: 13px;
  }

  .who_can_see_modal .who_can_see_modal_close {
    right: 12px;
    padding: 9px;
    border-radius: 14px;
    -webkit-border-radius: 14px;
  }

  .who_can_see_modal .who_can_see_modal_body {
    padding: 16px;
  }

  .who_can_see_modal .who_can_see_pop_item {
    grid-template-columns: 50px minmax(0, 1fr) 22px;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
  }

  .who_can_see_modal .whoCanSeeIcon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
  }

  .who_can_see_modal .whoCanSeeIcon svg {
    width: 20px;
    height: 20px;
  }

  .who_can_see_modal .whoCanSeeTit {
    font-size: 16px;
  }

  .who_can_see_modal .who_can_see_modal_item_desc {
    font-size: 12px;
  }

  .who_can_see_modal .whoCCbox,
  .who_can_see_modal .whoCCboxActive,
  .who_can_see_modal .whoCCboxPassive {
    width: 22px;
    height: 22px;
  }
}

.i_delete_post_description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  padding: 40px 20px;
  font-weight: 500;
  font-size: 15px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.i_report_notification_detail {
  display: block;
  text-align: left;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.55;
  max-height: 260px;
  overflow-y: auto;
}

.i_report_notification_go {
  text-decoration: none;
}

.alertBtnRight {
  padding: 13px 20px;
  background-color: #1e88e5;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  cursor: pointer;
  float: right;
}

.alertBtnRight:hover {
  background-color: #1170c4;
}

.alertBtnLeft {
  padding: 13px 20px;
  background-color: #858fad;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  cursor: pointer;
  float: right;
  margin-right: 20px;
}

.alertBtnLeft:hover {
  background-color: #525c7a;
}

.i_no_post_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.i_post_suggest_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px 0px;
  font-weight: 500;
  font-size: 17px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-bottom: 1px solid #b3b9cc;
}

.i_post_suggest_title a {
  color: #f65169;
  font-weight: 600;
  text-decoration: none;
  padding: 0px 5px;
}

.i_post_suggest_title a:hover {
  text-decoration: underline;
}

.i_posts_suggestions_container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0px;
  overflow: auto;
}

.i_suggested_post_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  width: calc(33.3333333333% - 0px);
  width: -ms-calc(100% / 3 - 0px);
  padding: 2px;
  float: left;
}

.i_suggested_post_file {
  position: relative;
  padding-top: 100%;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  background-color: #ffffff;
}

.onlySubsSuggestion {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.51);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  top: 0px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

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

.onlySubsSuggestion_icon {
  margin: 0px auto;
  border: 1px solid #f65169;
  background: rgba(246, 81, 105, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  padding: 15px;
}

.onlySubsSuggestion_icon svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.i_pined_post {
  position: absolute;
  padding: 5px;
  left: 2px;
  top: -2px;
}

.i_pined_post svg {
  width: 17px;
  height: 17px;
}

.c_in_like svg {
  fill: #858fad;
}

.c_in_like:hover svg {
  fill: #f65169;
}

.c_in_unlike svg {
  fill: #f65169;
}

.c_in_unlike:hover svg {
  fill: #858fad;
}

.i_pb_emojis {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background-color: #ffffff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  font-weight: 500;
  padding: 0.35rem;
  cursor: pointer;
  margin-left: 0px;
  border: 1px solid #e5e9f1;
  gap: 6px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.i_pb_premiumPost {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background-color: #ffffff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  font-weight: 500;
  padding: 0.35rem;
  cursor: pointer;
  margin-left: 0px;
  border: 1px solid #e5e9f1;
  gap: 6px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.i_pb_premiumPost:hover {
  background-color: #e0e3eb;
  border-color: #e5e9f1;
}

.i_pb_premiumPostBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  height: 100%;
}

.i_pb_premium_box {
  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%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background: transparent;
}

.i_pb_premium_box svg {
  width: 18px;
  height: 18px;
  fill: #f65169;
}

.i_pb_emojisBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.i_pb_emojis_Box {
  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;
}

.i_pb_emojis_Box svg {
  width: 18px;
  height: 18px;
  fill: #f65169;
}

.emojiBox {
  position: absolute;
  width: 100%;
  max-width: 320px;
  min-width: 320px;
  height: 350px;
  background-color: #ffffff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  margin-top: 115px;
  overflow-y: scroll;
}

.emojis_Container {
  padding: 5px;
}

.emoji_item,
.emoji_item_c,
.emoji_item_m {
  display: inline-block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px;
  font-size: 35px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  cursor: pointer;
}

.emoji_item:hover,
.emoji_item_c:hover,
.sticker:hover,
.emoji_item_m:hover {
  background-color: #e0e3eb;
}

.emTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: left;
  padding: 10px;
  color: #444444;
  font-weight: 700;
  font-size: 14px;
  background-color: #f0f2f5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
}

.emojiBoxC {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 350px;
  height: 380px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  z-index: 5;
  overflow-y: scroll;
}

.stickersContainer {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 350px;
  height: 380px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  z-index: 5;
  overflow-y: scroll;
}

.stickers_wrapper {
  padding: 5px;
}

.stickers_wrapper .sticker {
  display: inline-block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  width: calc(25% - 5px);
  width: -o-calc(100% / 4 - 5px);
  width: -ms-calc(100% / 4 - 5px);
}

.stickers_wrapper .sticker img {
  position: relative;
  width: 100%;
}

.emptyStickerArea,
.emptyGifArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  position: relative;
}

.in_gif_wrapper {
  display: inline-block;
  margin-top: 10px;
  margin-left: 50px;
  padding: 0px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  overflow: hidden;
}

.in_gif_wrapper img {
  display: block;
}

.in_sticker_wrapper {
  display: inline-block;
  margin-top: 10px;
  margin-left: 50px;
  background-color: #e0e3eb;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

.in_sticker_wrapper img {
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.removeSticker,
.removeGif {
  position: absolute;
  padding: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  background-color: #f0f2f5;
  right: 10px;
  top: 8px;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.removeSticker:hover,
.removeGif {
  background-color: #e4e6eb;
}

.removeSticker svg,
.removeGif svg {
  width: 13px;
  height: 13px;
  fill: #000000;
}

.comment_file,
.comment_gif_file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 8px;
  padding-left: 0px;
}

.comment_file img {
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.comment_gif_file img {
  width: 100%;
  max-width: 200px;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

.highlightLink {
  font-weight: 500;
  color: #1d4ed8;
}

.i_post_text a,
.i_comment_text_content a,
.i_user_comment_text a {
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  color: #1d4ed8;
}

.i_post_text a:hover,
.i_comment_text_content a:hover,
.i_user_comment_text a:hover {
  text-decoration: none;
  color: #1e40af;
}

.giphy_results_container {
  /* Prevent vertical gaps */
  line-height: 0;
  -webkit-column-count: 2;
  -webkit-column-gap: 0px;
  -moz-column-count: 2;
  -moz-column-gap: 0px;
  column-count: 2;
  column-gap: 0px;
  display: table-cell;
}

.giphy_results_container img {
  /* Just in case there are inline attributes */
  width: 99% !important;
  height: auto !important;
  margin: 1px;
  border-radius: 8px;
  cursor: pointer;
}

.i_profile_container {
  display: inline-block;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_profile_cover_blur {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 800px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-filter: blur(64px);
  -moz-filter: blur(64px);
  -o-filter: blur(64px);
  -ms-filter: blur(64px);
  filter: blur(64px);
  -webkit-transform: scale(1.8);
  transform: scale(1.8);
  -webkit-transform-origin: center;
  transform-origin: center;
  overflow: hidden;
}

.i_profile_i_container {
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  width: 100%;
  max-width: 1240px;
  margin: 0px auto;
  position: relative;
  padding-top: 30px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.i_profile_infos_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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%;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  background-color: #ffffff;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.i_profile_cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  height: 300px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 18px;
  -webkit-border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  -webkit-border-top-right-radius: 18px;
  position: relative;
}

.i_profile_avatar_container {
  position: absolute;
  bottom: -84px;
  width: 100%;
}

.i_profile_avatar_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_profile_avatar {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 0px auto;
  border: 3px solid #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
}

.i_u_profile_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  position: relative;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding-top: 95px;
  padding-bottom: 20px;
}

.profile_identity_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-left: 220px;
  margin-top: 0;
}

.profile_identity_block .i_u_name,
.profile_identity_block .i_p_cards {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.profile_identity_badge {
  position: absolute;
  top: 76px;
  left: 135px;
  width: auto;
  padding-top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.i_u_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 600;
  font-size: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.staff_role_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.staff_role_badge_profile {
  margin-left: 2px;
  padding: 0;
  min-height: auto;
}

.staff_role_badge_admin {
  color: #244dc2;
}

.staff_role_badge_moderator {
  color: #0d7a66;
}

.staff_role_badge_profile svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor !important;
}

.staff_role_badge_profile svg path {
  fill: currentColor !important;
  opacity: 1 !important;
}

.i_u_name .staff_role_badge_profile .ownTooltipWrapper {
  left: 50%;
  right: auto;
  top: calc(100% + 8px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.i_u_name a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 600;
  font-size: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.i_u_name a:hover {
  text-decoration: underline;
}

.i_u_name_mention {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 300;
  font-size: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_u_name_mention a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  color: #65676b;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 300;
  font-size: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.i_u_name_mention a:hover {
  text-decoration: underline;
}

.i_p_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0;
}

.i_p_cards.profile_identity_badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

.i_pr_m,
.i_pr_vs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 4px 0px;
}

.i_pr_fm,
.i_pr_co {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 4px 0px;
}

.i_pr_m svg {
  width: 20px;
  height: 20px;
  fill: #512da8;
  margin-left: 4px;
}

.i_pr_fm svg {
  width: 20px;
  height: 20px;
  margin-left: 4px;
}

.i_pr_vs svg {
  width: 20px;
  height: 20px;
  fill: #1e88e5;
  margin-left: 4px;
}

.i_pr_co svg {
  width: 20px;
  height: 20px;
  margin-left: 4px;
}

.profile_wrapper {
  position: relative;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  min-height: 100%;
  min-height: calc(100vh - 72px);
  min-height: -o-calc(100vh - 72px);
  min-height: -ms-calc(100vh - 72px);
  top: 72px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  overflow: hidden;
}

.creator_badge {
  position: absolute;
  padding: 4px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #ffffff;
  right: 0px;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9;
}

.creator_badge svg {
  width: 25px;
  height: 25px;
  fill: #f65169;
}

.i_p_lpt_online {
  font-weight: 600;
  font-size: 15px;
  color: #43a047;
  padding: 5px 0px;
}

.i_p_lpt_offline {
  font-weight: 400;
  font-size: 14px;
  color: #525c7a;
  padding: 5px 0px;
}

.i_btn_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px;
  border-radius: 10px;
  -webkit-boder-radius: 10px;
  background-color: #f0f2f5;
  margin-right: 5px;
  cursor: pointer;
}

.i_btn_item:hover {
  background-color: #e4e6eb;
}

.i_btn_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.i_btn_item svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 20px;
  height: 20px;
  fill: #000000;
}

.i_btn_like_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 13px 12px;
  border-radius: 10px;
  -webkit-boder-radius: 10px;
  background-color: #f0f2f5;
  margin-right: 5px;
  cursor: pointer;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;
}

.i_btn_like_item:hover {
  background-color: #e4e6eb;
}

.i_btn_like_item svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 23px;
  height: 23px;
  fill: #000000;
  margin-right: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_p_items_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 20px;
}

.i_btn_become_fun {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 10px 15px;
  font-weight: 400;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 10px;
  -webkit-boder-radius: 10px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  cursor: pointer;
  color: #ffffff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.i_btn_become_fun:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.i_btn_become_fun svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-right: 4px;
}

.i_creator_category {
  background: #d3e2f8;
  border-radius: 0.4rem;
  color: #0e2c58;
  padding: 0.5rem 1rem;
  line-height: 1;
  font-weight: 400;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_creator_category a {
  text-decoration: none;
  color: #0e2c58;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_creator_category svg {
  width: 13px;
  height: 13px;
  fill: #0e2c58;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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: 5px;
}

.i_btn_unsubscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 30px;
  -webkit-boder-radius: 30px;
  background: #eef4ff;
  border: 1px solid #d7e6ff;
  cursor: pointer;
  color: #1e88e5;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.i_btn_unsubscribe:hover {
  background: #e3eeff;
  border-color: #c7ddff;
  color: #1170c4;
  -webkit-box-shadow: 0 6px 16px rgba(30, 136, 229, 0.2);
  box-shadow: 0 6px 16px rgba(30, 136, 229, 0.2);
}

.i_btn_unsubscribe svg {
  width: 20px;
  height: 20px;
  fill: #1e88e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-right: 4px;
}

.i_p_items_box_ {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 15px;
}

.i_btn_item_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -ms-border-radius: 30px;
  padding: 4px 9px;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 5px;
  background-color: #f0f2f5;
}

.i_btn_item_box:hover {
  background-color: #e4e6eb;
}

.i_btn_item_box svg {
  width: 20px;
  height: 20px;
  fill: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-right: 4px;
}

.i_btn_item_box:last-child {
  margin-right: 0px;
}

.i_p_bio {
  padding: 15px 15px 0px 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-weight: 400;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.i_sf_box {
  width: 100%;
  max-width: 450px !important;
}

.i_f_cover_avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  height: 80px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  position: relative;
}

.i_f_avatar_container {
  position: absolute;
  bottom: -40px;
  z-index: 1;
  width: 100%;
  left: 0px;
}

.i_f_avatar {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0px auto;
  border: 2px solid #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
}

.i_f_other {
  display: inline-block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 55px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.i_s_popup_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-top: 20px;
  margin-bottom: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 17px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #525c7a;
}

.i_advantages_wrapper {
  display: inline-block;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.advantage_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  font-weight: 400;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #444444;
  padding: 10px 20px;
}

.advantage_box svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  fill: #43a047;
  margin-right: 10px;
}

.i_free_subscribe {
  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%;
  padding: 20px;
}

.i_free_flw {
  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;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  background-color: #1e88e5;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  justify-content: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding: 10px 15px;
  cursor: pointer;
}

.i_free_flw:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.i_free_flw svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-right: 4px;
}

.f_follow {
  cursor: pointer;
}

.i_btn_like_item_flw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 13px 12px;
  border-radius: 5px;
  -webkit-boder-radius: 5px;
  background-color: #f65169;
  color: #ffffff;
  margin-right: 5px;
  cursor: pointer;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;
}

.i_btn_like_item_flw:hover {
  color: #000000;
  background-color: #f0f2f5;
}

.i_btn_like_item_flw svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 23px;
  height: 23px;
  fill: #ffffff;
  margin-right: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_btn_like_item_flw:hover svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 23px;
  height: 23px;
  fill: #000000;
  margin-right: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.support_not {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 10px 15px 0px 15px;
  font-weight: 400;
  font-size: 13px;
  color: #868dac;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.i_block_not_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 10px 0px 10px 0px;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_block_not_list {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.i_block_not_list div {
  padding: 8px 0px;
}

.i_block_not_list li {
  padding: 3px 0px;
}

.i_block_box_footer_container {
  display: inline-block;
  background-color: #f0f2f5;
  padding: 10px 20px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  width: 100%;
}

.svAC svg,
.ublk svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  fill: #ffffff;
  margin-right: 5px;
}

.alertBtnRightWithIcon {
  padding: 13px 20px;
  background-color: #1e88e5;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  cursor: pointer;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.alertBtnRightWithIcon:hover {
  background-color: #1170c4;
}

.alertBtnRightWithIcon svg {
  width: 17px;
  height: 17px;
  margin-right: 8px;
  fill: #ffffff;
}

.i_block_user_nots_wrapper {
  display: inline-block;
  width: 100%;
  padding: 18px;
  padding-top: 0px;
  background: #ffffff;
  border-radius: 0;
  -webkit-border-radius: 0;
  border: 1px solid #e8ecf4;
  -webkit-box-shadow: 0 10px 30px rgba(82, 92, 122, 0.1);
  box-shadow: 0 10px 30px rgba(82, 92, 122, 0.1);
}

.i_block_user_avatar_cover_wrapper {
  display: inline-block;
  width: 100%;
  padding-top: 0px;
}

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

.i_block_i_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 18px;
  margin-top: 12px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: #f9fafc;
  border: 1px solid #e8ecf4;
  gap: 10px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-transition:
    border-color 0.2s ease,
    -webkit-box-shadow 0.2s ease;
  transition:
    border-color 0.2s ease,
    -webkit-box-shadow 0.2s ease;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    -webkit-box-shadow 0.2s ease;
}

.i_block_i_item:hover {
  border-color: #d9deeb;
  -webkit-box-shadow: 0 14px 36px rgba(82, 92, 122, 0.12);
  box-shadow: 0 14px 36px rgba(82, 92, 122, 0.12);
}

.i_redtrict_u {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-weight: 700;
  font-size: 17px;
  color: #141827;
  padding: 6px 0 2px 0;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.i_block_choose {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  position: relative;
  padding-right: 10px;
  align-items: center;
  gap: 10px;
}

.blockboxActive {
  width: 15px;
  height: 15px;
  background-color: #f65169;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.blockboxActive::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  border: 2px solid #f65169;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  top: -4px;
  left: -4px;
}

.blockboxPassive {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #e8ecf4;
}

.blockboxPassive::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  border: 2px solid #e4e6eb;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  top: -4px;
  left: -4px;
}

.i_block_not_title_plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 3px 0px 3px 0px;
  font-weight: 500;
  font-size: 14px;
  color: #2f3645;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.popClose {
  position: absolute;
  padding: 10px;
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  z-index: 5;
  right: 10px;
  top: 6px;
  cursor: pointer;
}

.popClose svg {
  fill: #b3b9cc;
  width: 14px;
  height: 14px;
}

.popClose:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.i_s_popup_title_dark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-top: 20px;
  margin-bottom: 0px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  padding-left: 15px;
}

.avantage_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  font-weight: 400;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #444444;
  padding: 10px 0px;
}

.avantage_box svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  fill: #43a047;
  margin-right: 10px;
}

.avantage_box strong {
  padding-left: 5px;
}

.i_prices_subscribe {
  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%;
  padding: 5px 15px;
}

.subscribe_price_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 13px 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
}

.subscribe_price_btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.subscribe_price_btn svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-right: 5px;
}

.subscribe_price_btn span svg {
  margin-right: 0px;
  width: 10px;
  height: 10px;
}

.i_prices_subscribe:last-child {
  margin-bottom: 15px;
}

.i_s_popup_title_dark_offers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-bottom: 0px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  padding-left: 15px;
  margin-bottom: 15px;
}

.subscribe_price_btn span {
  padding-left: 5px;
  font-weight: 600;
}

.i_payment_pop_box {
  width: 100%;
  max-width: 650px !important;
  padding: 15px;
}

.i_subs_modal {
  padding: 24px 16px;
  justify-content: flex-start;
}

.i_subs_modal .i_payment_pop_box {
  width: min(650px, calc(100vw - 32px));
  padding: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
  margin: 24px auto;
  display: flex;
  flex-direction: column;
}

.i_subs_modal .i_modal_content {
  display: flex;
  flex-direction: column;
  padding: 24px 20px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: inherit;
  overflow: hidden;
}

.i_subs_modal #paymentFrm,
.i_subs_modal .pay_gateway_section {
  width: 100%;
}

.i_subs_modal #paymentFrm {
  background: transparent;
}

.i_subs_modal #paymentFrm .i_credit_card_form,
.i_subs_modal .pay_gateway_section.i_credit_card_form {
  margin: 0;
  border-radius: 0 0 28px 28px;
}

@media (max-width: 768px) {
  .i_subs_modal {
    padding: 18px 12px;
  }

  .i_subs_modal .i_payment_pop_box {
    width: calc(100vw - 24px);
    border-radius: 24px;
    margin: 12px auto;
  }

  .i_subs_modal .i_modal_content {
    padding: 20px 16px 16px;
  }

  .i_subs_modal #paymentFrm .i_credit_card_form,
  .i_subs_modal .pay_gateway_section.i_credit_card_form {
    border-radius: 0 0 24px 24px;
  }
}

.i_subscribing {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0px auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #f0f2f5;
  border: 2px solid #f0f2f5;
}

.i_subscribing_note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  font-weight: 500;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #525c7a;
  padding: 10px 0px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_subscribing_note strong {
  padding-left: 5px;
}

.i_credit_card_form {
  display: none;
  position: relative;
  padding: 15px;
  margin-top: 15px;
  background-color: #f0f1f5;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.i_credit_card_form:not([hidden]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.pay_form_group,
.pay_form_group_plus {
  padding: 8px 25px;
}

.pay_method_selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pay_method_selector .pay_provider_toggle {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #3161a5;
  background-color: #e6efff;
  border: 1px solid #c5d9ff;
  transition: all 0.2s ease;
  box-shadow: none;
}

.pay_method_selector .pay_provider_toggle:hover {
  background-color: #d9e6ff;
}

.pay_method_selector .pay_provider_toggle.active {
  color: #ffffff;
  background-color: #468cef;
  border-color: #468cef;
  box-shadow: 0 8px 18px rgba(70, 140, 239, 0.35);
}

.pay_method_selector .i_nex_btn_btn {
  margin-left: 0;
  margin-right: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.pay_form_group .form-control,
.i_credit_card_form .pay_form_group_plus .i_form_group_plus .form-control {
  position: relative;
}

.pay_form_group > label,
.pay_form_group_plus .i_form_group_plus > label {
  font-weight: 600;
  color: #525c7a;
  font-size: 14px;
  letter-spacing: 1px;
  width: 100%;
  display: block;
  line-height: normal;
  padding-bottom: 0.5rem;
}

.pay_form_group .form-control input,
.pay_form_group_plus .i_form_group_plus .form-control input {
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  padding: 15px;
  outline: none;
  border: 1px solid transparent;
  font-size: 14px;
  color: #000000;
}

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

.i_form_group_plus {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  width: calc(50% - 0px);
  width: -o-calc(100% / 2 - 0px);
  width: -ms-calc(100% / 2 - 0px);
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding-right: 15px;
}

.form_control_icon {
  position: absolute;
  padding: 16px;
  z-index: 1;
  left: 0px;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form_control_icon svg {
  width: 20px;
  height: 20px;
  fill: #858fad;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_credit_card_form .pay_form_group .form-control .inora_user_input {
  padding-left: 45px;
}

.i_credit_card_form
  .pay_form_group_plus
  .i_form_group_plus
  .form-control
  .inora_user_input {
  padding-left: 45px;
}

.payClose {
  position: absolute;
  padding: 10px;
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  z-index: 5;
  right: 10px;
  top: 6px;
  cursor: pointer;
}

.payClose svg {
  fill: #525c7a;
  width: 14px;
  height: 14px;
}

.pay_subscription,
.pay_subscription_ccbill,
.pay_subscription_iyzico,
.pay_subscription_flutterwave {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 13px 15px;
  border-radius: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #ffffff;
  background-color: #468cef;
  cursor: pointer;
  border: none;
  outline: none;
}

.pay_subscription:hover,
.pay_subscription_ccbill:hover,
.pay_subscription_iyzico:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  background-color: #1170c4;
}

.pay_gateway_section[data-provider="iyzico"]
  .pay_form_group_plus
  .i_form_group_plus
  .form-control
  .inora_user_input {
  background-color: #ffffff;
}

.pay_subscription_flutterwave {
  color: #1d202a;
  background-color: #f6a200;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pay_subscription_flutterwave:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  background-color: #e08b00;
  color: #ffffff;
}

.i_pay_note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  background-color: #525c7a;
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  border-radius: 8px;
}

.pay_form_group .form-control #card_number,
.i_form_group_plus .form-control #card_expiry,
.i_form_group_plus .form-control #card_cvc {
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  padding: 15px;
  outline: none;
  border: 1px solid transparent;
  font-size: 14px;
  padding-left: 45px;
}

.pay_form_group .form-control #card_number {
  color: #000000 !important;
  background-color: #ffffff;
}

.i_form_group_plus .form-control #card_expiry {
  color: #000000;
  background-color: #ffffff;
}

.i_form_group_plus .form-control #card_cvc {
  color: #000000;
  background-color: #ffffff;
}

.loaderWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 6;
  left: 0px;
  top: 0px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

.loaderContainer {
  position: relative;
  width: 50px;
  height: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.loaderContainer .loader .i_loading .dot-pulse {
  left: -9977px;
}

.loaderContainer .loader {
  width: 50px;
}

#paymentResponse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px 25px;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  background-color: rgba(246, 81, 105, 0.2);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.bCreatorBg::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  background: url("img/bg.png") no-repeat;
  background-position: top;
  height: 100%;
  background-size: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f0f1f5;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.i_become_creator_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  max-width: 750px;
  margin: 0px auto;
  margin-top: 80px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #ffffff;
  -webkit-box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  position: relative;
}

.i_become_creator_levels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -webkit-top-left-radius: 10px;
  -webkit-top-right-radius: 10px;
  background-color: #f9f9fb;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.i_become_creator_levels_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  font-family: "Noto Sans", sans-serif;
  color: #000000;
  padding: 15px 0px;
}

.i_levels_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px 15px 15px;
  z-index: 1;
  position: relative;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.i_levels_container_position {
  content: "";
  position: absolute;
  left: 10%;
  top: 35px;
  width: 80%;
  height: 5px;
  background-color: #f0f1f5;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.i_levels_container_position_lvl {
  content: "";
  position: absolute;
  left: 10%;
  top: 35px;
  height: 5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  background-color: #f87855;
}

.i_complete_level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding: 0 2rem;
}

.i_complete_level_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  background-color: #f0f1f5;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  border: 3px solid #f9f9fb;
}

.i_complete_level_box svg {
  width: 20px;
  height: 20px;
  fill: #858fad;
}

.i_completed_level_item {
  background-color: #f87855;
}

.i_completed_level_item svg {
  fill: #ffffff;
}

.i_complete_level_name {
  display: block;
  margin: 1rem 0;
  text-align: center;
  color: #b3b9cc;
}

.i_completed_levet_item_bold {
  font-weight: 600;
  color: #f87855;
}

.i_become_creator_terms_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding: 15px;
}

.certification_form_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.certification_form_title {
  display: inline-block;
  color: #000000;
  font-weight: 600;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 23px;
  padding: 15px 0px;
}

.certification_form_not {
  display: inline-block;
  color: #858fad;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6rem;
}

.certification_form_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  border-top: 1px solid #f0f1f5;
  margin-top: 25px;
  padding: 25px 0px;
  padding-bottom: 0px;
}

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

.certification_terms_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 43%;
  padding: 15px 0px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.terms_bg {
  height: 250px;
  background-image: url("img/certification.png");
  background-size: cover;
  background-position: center;
}

.certification_terms_item:nth-child(2) {
  width: 75%;
  padding-left: 35px;
}

.certificate_terms_item_item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0px;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  line-height: 1.5rem;
}

.certificate_terms_item_item svg {
  width: 20px !important;
  height: 20px !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-right: 5px;
  vertical-align: middle;
}

.certificate_terms_item_item strong {
  display: inline-block;
}

.certificate_terms_item_item a {
  text-decoration: none;
  color: #468cef;
  font-weight: 600;
}

.certification_file_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 100%;
  margin-top: 25px;
  position: relative;
}

.certification_file_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  border-top: 1px solid #f0f1f5;
  padding: 25px 0px;
  padding-bottom: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.certification_file_box label {
  padding: 10px 12px;
  width: 100%;
  max-width: 160px;
  min-width: 160px;
  color: #ffffff;
  background-color: #f87855;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  outline: none;
  margin-right: 10px;
  cursor: pointer;
}

.certification_file_box label svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-right: 8px;
}

.certificate_file_box_not {
  display: inline-block;
  width: 100%;
  color: #858fad;
  font-weight: 400;
  font-size: 14px;
}

.certification_file_box strong {
  display: contents;
}

.certification_file_box a {
  font-weight: 600;
  padding: 0px 5px;
  text-decoration: none;
  color: #f65169 !important;
}

.i_become_creator_box_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 30px;
  background-color: #f9f9fb;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  position: relative;
}

.i_nex_btn {
  float: right;
  padding: 10px 45px;
  font-weight: 600;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #ffffff;
  background-color: #468cef;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  cursor: pointer;
  margin-left: auto;
}

.i_nex_btn:hover {
  background-color: #1170c4;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.condition_documentation {
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.i_set_subscription_fee_box,
.i_write_secret_post_price {
  display: inline-block;
  padding: 10px 0px;
  position: relative;
}

.become_creator_page {
  align-items: flex-start;
  padding: 42px 20px 0;
  background:
    radial-gradient(circle at top left, rgba(246, 81, 105, 0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(250, 180, 41, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef3fa 100%);
}

.become_creator_page .i_become_creator_container {
  display: block;
  max-width: 980px;
  margin-top: 0;
  margin-bottom: 0;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.become_creator_page .i_become_creator_container > * {
  flex: none;
}

.become_creator_page .i_become_creator_levels {
  padding: 26px 30px 24px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.96) 100%);
  border-bottom: 1px solid #e5edf7;
}

.become_creator_page .i_become_creator_levels_title {
  justify-content: flex-start;
  padding: 0 0 20px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.become_creator_page .i_levels_container {
  padding: 12px 6px 4px;
  justify-content: space-between;
}

.become_creator_page .i_levels_container_position,
.become_creator_page .i_levels_container_position_lvl {
  top: 42px;
  left: 8%;
  width: 84%;
  height: 6px;
  border-radius: 999px;
}

.become_creator_page .i_levels_container_position {
  background: #e4ebf5;
}

.become_creator_page .i_levels_container_position_lvl {
  background: linear-gradient(90deg, #f65169 0%, #fab429 100%);
}

.become_creator_page .i_complete_level {
  padding: 0 10px;
  min-width: 0;
  gap: 10px;
}

.become_creator_page .i_complete_level_box {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 4px solid rgba(255, 255, 255, 0.95);
  background: #dfe7f4;
  box-shadow: 0 12px 24px rgba(148, 163, 184, 0.18);
}

.become_creator_page .i_complete_level_box svg {
  width: 22px;
  height: 22px;
  fill: #64748b;
}

.become_creator_page .i_completed_level_item {
  background: linear-gradient(135deg, #f65169 0%, #fab429 100%);
  box-shadow: 0 16px 32px rgba(246, 81, 105, 0.28);
}

.become_creator_page .i_completed_level_item svg {
  color: #ffffff;
  fill: #ffffff;
  stroke: #ffffff;
}

.become_creator_page .i_complete_level_name {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: #64748b;
}

.become_creator_page .i_completed_levet_item_bold {
  color: #0f172a;
  font-weight: 700;
}

.become_creator_page .i_become_creator_terms_box {
  flex: 0 0 auto;
  padding: 28px 30px 12px;
}

.become_creator_page .certification_form_container {
  padding: 0;
  gap: 10px;
}

.become_creator_page .certification_form_title,
.become_creator_page .pendingTitle,
.become_creator_page .creator_conguratulation_title {
  padding: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.become_creator_page .certification_form_not,
.become_creator_page .creator_conguratulation_note,
.become_creator_page .condition_documentation,
.become_creator_page .certificate_file_box_not {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.become_creator_page .certification_form_wrapper {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #e8eef6;
}

.become_creator_page .certification_terms {
  align-items: stretch;
  gap: 28px;
}

.become_creator_page .certification_terms_item {
  padding: 0;
}

.become_creator_page .certification_terms_item:nth-child(2) {
  width: 75%;
  padding-left: 0;
}

.become_creator_page .terms_bg,
.become_creator_page .verirication_timing_bg {
  border-radius: 24px;
  overflow: hidden;
}

.become_creator_page .certificate_terms_item_item {
  padding: 10px 0;
  color: #334155;
}

.become_creator_page .certificate_terms_item_item svg {
  width: 18px !important;
  height: 18px !important;
}

.become_creator_page .certification_file_box {
  margin-top: 6px;
  padding: 26px 0 12px;
  border-top: 1px solid #e8eef6;
}

.become_creator_page .certification_file_box label {
  min-width: 176px;
  max-width: 176px;
  padding: 0 18px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f65169 0%, #fab429 100%);
  box-shadow: 0 18px 34px rgba(246, 81, 105, 0.2);
  font-size: 14px;
}

.become_creator_page .i_become_creator_box_footer {
  flex: 0 0 auto;
  align-items: center;
  min-height: 0;
  margin: 0;
  background: linear-gradient(180deg, #f9fbff 0%, #f4f7fb 100%);
  border-top: 1px solid #e8eef6;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 10px 30px;
}

.become_creator_page .i_nex_btn {
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 52px;
  padding: 0 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f65169 0%, #fab429 100%);
  box-shadow: 0 18px 38px rgba(246, 81, 105, 0.22);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.become_creator_page .i_nex_btn:hover {
  background: linear-gradient(135deg, #f24a64 0%, #f8aa1f 100%);
  box-shadow: 0 20px 40px rgba(246, 81, 105, 0.28);
  transform: translateY(-1px);
}

.become_creator_page .box_not {
  border-radius: 16px;
}

@media (max-width: 900px) {
  .become_creator_page {
    align-items: flex-start;
    padding: 28px 14px 0;
  }

  .become_creator_page .i_become_creator_container {
    max-width: 100%;
    border-radius: 24px;
  }

  .become_creator_page .i_become_creator_levels {
    padding: 22px 18px 18px;
  }

  .become_creator_page .i_become_creator_levels_title {
    font-size: 26px;
  }

  .become_creator_page .i_levels_container {
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 10px;
  }

  .become_creator_page .i_levels_container_position,
  .become_creator_page .i_levels_container_position_lvl {
    display: none;
  }

  .become_creator_page .i_complete_level {
    min-width: 88px;
    padding: 0;
  }

  .become_creator_page .i_become_creator_terms_box {
    padding: 22px 18px 10px;
  }

  .become_creator_page .certification_terms {
    flex-direction: column;
  }

  .become_creator_page .certification_terms_item,
  .become_creator_page .certification_terms_item:nth-child(2) {
    width: 100%;
  }

  .become_creator_page .i_become_creator_box_footer {
    padding: 10px 18px;
  }

  .become_creator_page .i_nex_btn {
    width: 100%;
    min-width: 0;
  }
}

.i_set_subscription_fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.i_subscription_form_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  border-top: 1px solid #f0f1f5;
  margin-top: 25px;
  padding: 25px 0px;
  padding-bottom: 0px;
}

.i_sub_not {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  padding-bottom: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.i_sub_not label span {
  margin-right: 5px;
}

.i_sub_not svg {
  width: 17px;
  height: 17px;
  fill: #43a047;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-left: 10px;
}

.weekly_success,
.monthly_success,
.yearly_success,
.boxD {
  display: none;
}

.i_subs_currency {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  background-color: #f0f2f5;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
}

.i_subs_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  max-width: 350px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
}

.i_subs_price input {
  width: 100%;
  padding: 10px 15px;
  outline: none;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  border: 1px solid #f0f2f5;
  margin: 0px;
}

.i_subs_interval {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  background-color: #f0f2f5;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
}

.i_subs_price input:focus {
  border: 1px solid #f87855;
}

.i_sub_not_plus {
  display: inline-block;
  color: #858fad;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2rem;
  padding-bottom: 10px;
}

.i_t_warning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding-bottom: 15px;
  display: none;
  color: #f65169;
}

.i_t_warning a {
  text-decoration: none;
  font-weight: 600;
  color: #43a047;
}

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

.pyot .el-radio span {
  padding-right: 10px;
}

.i_subs_currency svg {
  width: 20px;
  height: 20px;
  fill: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.i_payout_ {
  min-width: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
}

.i_payout_ input {
  width: 100%;
  padding: 10px 15px;
  outline: none;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  border: 1px solid #f0f2f5;
  margin: 0px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
}

.margin-bottom-ten {
  margin-bottom: 10px;
}

.i_sub_not_check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 15px;
  padding-right: 40px;
  position: relative;
  color: #858fad;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6rem;
}

.i_sub_not_check_box {
  position: absolute;
  right: 0px;
}

.bank_textarea {
  outline: none;
  width: 100%;
  max-width: 500px;
  padding: 15px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  border: 1px solid #f0f2f5;
  resize: none;
  margin: 0px;
  min-height: 70px;
}

.creator_conguratulation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 120px;
  height: 120px;
  margin: 0px auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.creator_conguratulation svg {
  width: 120px;
  height: 120px;
}

.creator_conguratulation_title {
  display: inline-block;
  padding: 30px 0px;
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding-top: 0px;
}

.creator_conguratulation_note {
  padding: 25px 0px;
  display: inline-block;
  line-height: 1.5rem;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.creator_conguratulation_note a {
  text-decoration: none;
  color: #f65169;
}

.settings_wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0px auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}

.settings_left_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 330px;
  max-width: 330px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 330px;
  flex: 0 0 330px;
}

.settings_main_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: auto;
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  padding-left: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.i_settings_menu_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  min-height: 400px;
  width: 100%;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.i_settings_title {
  display: inline-block;
  padding: 20px;
  padding-bottom: 0px;
  font-weight: 600;
  font-size: 25px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  margin-bottom: 15px;
  text-align: left;
}

.i_s_menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.i_s_menus_title {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 13px;
  color: #444444;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  margin-bottom: 1px;
  text-align: left;
  text-transform: uppercase;
  background-color: #fafafa;
}

.i_settings_wrapper_in {
  display: inline-block;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border: radius 10px;
  border: radius 10px;
  -webkit-box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.1);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.i_settings_wrapper_title {
  display: inline-block;
  width: 100%;
  padding: 25px;
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #f0f1f5;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
}

.i_settings_wrapper_title_txt {
  padding-bottom: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_settings_wrapper_title_txt svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 17px;
  height: 17px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  fill: #000000;
  margin-right: 5px;
}

.i_s_menu_wrapper {
  display: inline-block;
  width: 100%;
  padding: 10px 10px;
}

.i_s_menu_wrapper a {
  text-decoration: none;
  color: #000000;
}

.i_s_menu_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  color: #444444;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_s_menu_box:hover {
  background-color: #f0f1f5;
}

.active_p {
  color: #f65169 !important;
  font-weight: 600 !important;
}

.i_s_menu_box svg {
  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: 24px;
  height: 24px;
  fill: #000000;
  margin-right: 10px;
}

.i_s_menu_wrapper a[href*="settings?tab=account_delete"] .i_s_menu_box svg {
  width: 16px;
  height: 16px;
}

.active_p svg {
  opacity: 0.8;
  fill: #f65169 !important;
}

.i_settings_wrapper_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.i_settings_wrapper_item {
  padding: 20px 25px;
  border-bottom: 1px solid #f0f1f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_settings_wrapper_item a {
  text-decoration: none;
  color: #f65169;
}

.i_settings_item_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 30%;
  font-weight: 500;
  font-size: 14px;
  color: #525c7a;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_settings_item_title_withdraw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 30%;
  font-weight: 600;
  font-size: 16px;
  color: #525c7a;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
  padding-left: 10px;
}

.i_settings_item_title_for {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70%;
  padding-left: 20px;
}

.i_settings_item_title_for a {
  text-decoration: none;
  color: #000000;
}

.i_settings_item_title_for_withdraw {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70%;
}

.modify_avatar_cover,
.account_email {
  cursor: pointer;
}

.settings_edit_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.settings_edit_text {
  font-weight: 500;
  font-size: 14px;
  color: #000000;
}

.settings_edit_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #000000 !important;
  color: #ffffff !important;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid #000000 !important;
  font-weight: 600;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  -webkit-transition:
    background-color 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    background-color 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.settings_edit_btn:hover {
  background-color: #111111 !important;
  color: #ffffff !important;
}

.settings_edit_btn:active {
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}

.settings_edit_btn:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.i_settings_item_title_for .flnm,
.i_settings_item_title_for_withdraw .flnm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px 25px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  outline: none;
  border: none;
  background-color: #f0f1f5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  min-width: 360px;
}

.i_settings_item_title_for .creator_bulk_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border: 1px solid #d5d9e3;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23111827' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  padding-right: 48px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    -webkit-transform 0.15s ease;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease,
    -webkit-transform 0.15s ease;
}

.i_settings_item_title_for .creator_bulk_select:hover {
  border-color: #c3c8d3;
}

.i_settings_item_title_for .creator_bulk_select:focus {
  outline: none;
  border-color: #f65169;
}

.i_settings_item_title_for .creator_bulk_file_wrap {
  width: 100%;
  min-width: 360px;
  position: relative;
}

.i_settings_item_title_for .creator_bulk_file_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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;
  border: 1px solid #d5d9e3;
  background-color: #ffffff;
  color: #111827;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.i_settings_item_title_for .creator_bulk_file_text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.i_settings_item_title_for .creator_bulk_file_label:hover {
  border-color: #c3c8d3;
}

.i_settings_item_title_for .creator_bulk_file_input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.creator_bulk_thumb_hidden {
  display: none;
}

.tab_detail_item .creatorBulkBuildQueue,
.tab_detail_item .creatorBulkPause,
.tab_detail_item .creatorBulkResume,
.tab_detail_item .creatorBulkCancel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}

.tab_detail_item .creator_bulk_actions {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.i_tab_list_item.creator_bulk_row {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

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

.i_tab_list_item.creator_bulk_row .tab_detail_item > * {
  min-width: 0;
}

.tab_detail_item .creatorBulkBuildQueue,
.tab_detail_item .creatorBulkPause,
.tab_detail_item .creatorBulkResume {
  background-color: #fff4e5;
  color: #8a4b00;
  border-color: #ffd9a3;
}

.tab_detail_item .creatorBulkCancel {
  background-color: #fff1f2;
  color: #b42318;
  border-color: #fecdd3;
}

.tab_detail_item .creatorBulkBuildQueue svg,
.tab_detail_item .creatorBulkPause svg,
.tab_detail_item .creatorBulkResume svg,
.tab_detail_item .creatorBulkCancel svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.tab_detail_item .creatorBulkBuildQueue:hover,
.tab_detail_item .creatorBulkPause:hover,
.tab_detail_item .creatorBulkResume:hover {
  background-color: #ffe7c2;
  border-color: #ffc76a;
}

.tab_detail_item .creatorBulkCancel:hover {
  background-color: #ffe4e6;
  border-color: #fda4af;
}

.creator_bulk_attachment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 3px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.creator_bulk_attachment_none {
  background-color: #f8fafc;
  color: #94a3b8;
  border-color: #e2e8f0;
}

.creator_bulk_attachment_image {
  background-color: #e0f2fe;
  color: #0369a1;
  border-color: #bae6fd;
}

.creator_bulk_attachment_video {
  background-color: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}

.creator_bulk_attachment_audio {
  background-color: #ecfccb;
  color: #3f6212;
  border-color: #d9f99d;
}

.creator_bulk_attachment_file {
  background-color: #f1f5f9;
  color: #475569;
  border-color: #e2e8f0;
}

.creator_auto_message_current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.creator_auto_message_remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}

.creator_auto_message_remove input {
  margin: 0;
}

.creator_auto_message_notice {
  display: none;
}

.box_not {
  display: inline-block;
  width: 100%;
  padding-top: 5px;
  font-weight: 400;
  font-size: 13px;
  color: #525c7a;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-style: italic;
}

.obsOverlayForm .box_not .flnm {
  margin-bottom: 10px;
}

.obsOverlayForm .box_not .flnm:last-child {
  margin-bottom: 0;
}

.obs-overlay-tier-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.obs-overlay-tier-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}

.obs-overlay-tier-field .flnm {
  width: 100%;
  margin-bottom: 0;
}

.obs-overlay-field-note {
  font-size: 12px;
  color: #6b7280;
  font-style: normal;
  line-height: 1.4;
}

.box_not a {
  font-weight: 600;
  color: #f65169;
}

.box_not a:hover {
  text-decoration: underline;
}

.box_not span {
  font-weight: 600;
}

.flexBox {
  position: relative;
  padding: 0px 10px;
}

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

.flexBox label input {
  display: none;
}

.flexBox label span {
  position: relative;
  padding: 13px 28px;
  width: 100%;
  border: 1px solid #f0f1f5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  text-align: center;
  color: #444444;
  letter-spacing: 1px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  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;
}

.flexBox label span svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.flexBox label#youarein input:checked ~ span {
  border: 1px solid #2770dd;
  color: #2770dd;
}

.flexBox label#youare input:checked ~ span {
  border: 1px solid #2770dd;
  color: #2770dd;
}

.flexBox label#youarein input:checked ~ span svg {
  fill: #2770dd;
}

.flexBox label.youare input:checked ~ span {
  border: 1px solid #2770dd;
  color: #2770dd;
}

.flexBox label.youare input:checked ~ span svg {
  fill: #2770dd;
}

.description_ {
  padding: 15px 20px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: none;
  background-color: #f0f1f5;
  resize: vertical;
  width: 90%;
  min-height: 135px;
}

.page_category {
  font-size: 1em;
  font-weight: 600;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #f0f1f5;
  background-image: none;
  background-color: #ffffff;
  color: #000000;
  padding: 0.9em 1.5em;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  cursor: pointer;
  padding-right: 2em;
}

.ib {
  position: relative;
  display: initial;
}

.invalid_username,
.warning_username,
.warning_inuse,
.warning_invalid,
.warning_wrong_password,
.warning_same_email,
.warning_required,
.warning_not_mach,
.warning_not_correct,
.warning_write_current_password,
.no_new_password_wrote,
.minimum_character_not,
.not_contain_whitespace {
  color: #d81b60;
  display: none;
}

.successNot {
  font-weight: 600;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #43a047;
  display: none;
}

.i_nex_btn_btn {
  float: right;
  padding: 10px 45px;
  font-weight: 600;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #ffffff;
  background-color: #468cef;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  cursor: pointer;
  border: none;
}

.i_nex_btn_btn:hover {
  background-color: #1170c4;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.settings_main_wrapper.email_settings_page .email_settings_shell {
  overflow: hidden;
}

.settings_main_wrapper.email_settings_page .email_settings_header {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 30px 24px;
  background: linear-gradient(180deg, #f7faff 0%, #f2f6fc 100%);
}

.settings_main_wrapper.email_settings_page .email_settings_header_badge {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe8ee 0%, #fff4f7 100%);
  color: #ff5c86;
  box-shadow: inset 0 0 0 1px rgba(255, 92, 134, 0.12);
}

.settings_main_wrapper.email_settings_page .email_settings_header_badge svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.settings_main_wrapper.email_settings_page .email_settings_header_copy {
  flex: 1 1 auto;
  min-width: 0;
}

.settings_main_wrapper.email_settings_page .email_settings_header_title {
  color: #1d2740;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.settings_main_wrapper.email_settings_page .email_settings_header_note {
  margin-top: 12px;
  color: #66758f;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.settings_main_wrapper.email_settings_page .email_settings_items {
  width: 100%;
  padding: 20px 20px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
  gap: 16px;
}

.settings_main_wrapper.email_settings_page .email_settings_card,
.settings_main_wrapper.email_settings_page .email_settings_success {
  display: block;
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
  box-sizing: border-box;
  padding: 18px;
  border-bottom: 0;
  border: 1px solid #dde6f1;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.settings_main_wrapper.email_settings_page .email_settings_card .i_settings_item_title,
.settings_main_wrapper.email_settings_page .email_settings_success .i_settings_item_title {
  width: 100%;
  padding: 0;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f2a44;
}

.settings_main_wrapper.email_settings_page .email_settings_card .i_settings_item_title_for {
  width: 100%;
  padding-left: 0;
}

.settings_main_wrapper.email_settings_page .email_settings_card .flnm {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #d7e2ee;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #1f2a44;
  font-size: 15px;
  font-weight: 600;
}

.settings_main_wrapper.email_settings_page .email_settings_card .flnm:focus {
  border-color: #76a8f5;
  box-shadow: 0 0 0 4px rgba(86, 142, 255, 0.14);
  outline: none;
}

.settings_main_wrapper.email_settings_page .warning_inuse,
.settings_main_wrapper.email_settings_page .warning_invalid,
.settings_main_wrapper.email_settings_page .warning_same_email,
.settings_main_wrapper.email_settings_page .warning_wrong_password,
.settings_main_wrapper.email_settings_page .warning_required {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 94, 122, 0.18);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  background: #fff4f6;
  color: #d9485f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.settings_main_wrapper.email_settings_page .email_settings_success {
  display: none;
  color: #1e7a55;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(180deg, #f4fcf7 0%, #eff9f3 100%);
  border-color: #cfe9da;
}

.settings_main_wrapper.email_settings_page .email_settings_submit {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  padding: 16px 20px 20px;
}

.settings_main_wrapper.email_settings_page .email_settings_btn {
  float: none;
  min-width: 168px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  background: linear-gradient(135deg, #2f80ed 0%, #5b9cff 100%);
  box-shadow: 0 16px 30px rgba(47, 128, 237, 0.22);
  font-size: 15px;
  font-weight: 700;
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.email_settings_page .email_settings_header {
    padding: 22px 18px 18px;
    gap: 14px;
  }

  .settings_main_wrapper.email_settings_page .email_settings_header_badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
  }

  .settings_main_wrapper.email_settings_page .email_settings_header_title {
    font-size: 22px;
  }

  .settings_main_wrapper.email_settings_page .email_settings_header_note {
    font-size: 15px;
  }

  .settings_main_wrapper.email_settings_page .email_settings_items {
    padding: 16px 14px 14px;
  }

  .settings_main_wrapper.email_settings_page .email_settings_card,
  .settings_main_wrapper.email_settings_page .email_settings_success {
    padding: 16px;
    border-radius: 18px;
    -webkit-border-radius: 18px;
  }

  .settings_main_wrapper.email_settings_page .email_settings_submit {
    padding: 14px 14px 16px;
  }

  .settings_main_wrapper.email_settings_page .email_settings_btn {
    width: 100%;
  }
}

.i_moda_header_nt {
  display: inline-block;
  width: 100%;
  color: #65676b;
  font-weight: 400;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding-top: 5px;
}

.coverImageArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  height: 300px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.avatarImageArea {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -75px;
  margin-bottom: 20px;
}

.avatarImageWrapper {
  position: relative;
  height: 150px;
  width: 150px;
  margin: 0px auto;
}

.avatarImage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  height: 150px;
  width: 150px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  -webkit-webkit: border radius 50%;
  -moz-webkit: border radius 50%;
  -ms-webkit: border radius 50%;
  -o-webkit: border radius 50%;
  border: 2px solid #ffffff;
}

.newCoverUpload {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  right: 10px;
  top: 10px;
  padding: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  cursor: pointer;
}

.newAvatarUpload label,
.newCoverUpload label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.newAvatarUpload label svg,
.newCoverUpload label svg {
  fill: #ffffff;
  width: 23px;
  height: 23px;
}

.newAvatarUpload {
  position: absolute;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  right: 0px;
  top: 0px;
  padding: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.croppie-container {
  width: 100%;
  height: 100%;
}

.croppie-container .cr-image {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  max-height: none;
  max-width: none;
}

.croppie-container .cr-boundary {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000000;
}

.croppie-container .cr-viewport,
.croppie-container .cr-resizer {
  position: relative;
  border: 2px solid #2770dd;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.croppie-container .cr-resizer {
  z-index: 2;
  -webkit-box-shadow: none;
  box-shadow: none;
  pointer-events: none;
}

.croppie-container .cr-resizer-vertical,
.croppie-container .cr-resizer-horisontal {
  position: absolute;
  pointer-events: all;
}

.croppie-container .cr-resizer-vertical::after,
.croppie-container .cr-resizer-horisontal::after {
  display: block;
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #000000;
  background: #ffffff;
  width: 10px;
  height: 10px;
  content: "";
}

.croppie-container .cr-resizer-vertical {
  bottom: -5px;
  cursor: row-resize;
  width: 100%;
  height: 10px;
}

.croppie-container .cr-resizer-vertical::after {
  left: 50%;
  margin-left: -5px;
}

.croppie-container .cr-resizer-horisontal {
  right: -5px;
  cursor: col-resize;
  width: 10px;
  height: 100%;
}

.croppie-container .cr-resizer-horisontal::after {
  top: 50%;
  margin-top: -5px;
}

.croppie-container .cr-original-image {
  display: none;
}

.croppie-container .cr-vp-circle {
  border-radius: 50%;
}

.croppie-container .cr-overlay {
  z-index: 1;
  position: absolute;
  cursor: move;
  -ms-touch-action: none;
  touch-action: none;
}

.croppie-container .cr-slider-wrap {
  width: 75%;
  margin: 15px auto;
  text-align: center;
}

.cr-slider-wrap {
  display: none;
}

.croppie-result {
  position: relative;
  overflow: hidden;
}

.croppie-result img {
  position: absolute;
}

.croppie-container .cr-image,
.croppie-container .cr-overlay,
.croppie-container .cr-viewport {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/*************************************/
/***** STYLING RANGE INPUT ***********/
/*************************************/
/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
/*************************************/
.cr-slider {
  -webkit-appearance: none;
  /*removes default webkit styles*/
  /*border: 1px solid white; */
  /*fix for FF unable to apply focus style bug */
  width: 300px;
  /*required for proper track sizing in FF*/
  max-width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: transparent;
}

.cr-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  border-radius: 3px;
}

.cr-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: -6px;
}

.cr-slider:focus {
  outline: none;
}

/*
.cr-slider:focus::-webkit-slider-runnable-track {
background: #ccc;
}
*/
.cr-slider::-moz-range-track {
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  border-radius: 3px;
}

.cr-slider::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: -6px;
}

/*hide the outline behind the border*/
.cr-slider:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}

.cr-slider::-ms-track {
  width: 100%;
  height: 5px;
  background: transparent;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  border-color: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-width: 6px 0;
  color: transparent;
  /*remove default tick marks*/
}

.cr-slider::-ms-fill-lower {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.cr-slider::-ms-fill-upper {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.cr-slider::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: 1px;
}

.cr-slider:focus::-ms-fill-lower {
  background: rgba(0, 0, 0, 0.5);
}

.cr-slider:focus::-ms-fill-upper {
  background: rgba(0, 0, 0, 0.5);
}

.crop_middle {
  background: rgba(0, 0, 0, 0.5);
}

.profile_avatar_modal .profile_avatar_modal_shell,
.profile_avatar_crop_modal .profile_avatar_crop_shell {
  width: min(760px, calc(100vw - 32px));
  border: 1px solid #dfe7f2;
  border-radius: 28px;
  -webkit-border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.profile_avatar_crop_modal .profile_avatar_crop_shell {
  max-width: 720px;
}

.profile_avatar_modal .profile_avatar_modal_content,
.profile_avatar_crop_modal .profile_avatar_crop_content {
  background: transparent;
}

.profile_avatar_modal .profile_avatar_modal_header,
.profile_avatar_crop_modal .profile_avatar_crop_header {
  position: relative;
  padding: 22px 28px 18px;
  padding-right: 78px;
  border-bottom: 1px solid #e6edf6;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  text-align: left;
  color: #1b2437;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.profile_avatar_modal .profile_avatar_modal_header .i_moda_header_nt,
.profile_avatar_crop_modal .profile_avatar_crop_header .i_moda_header_nt {
  margin-top: 8px;
  color: #66758f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.profile_avatar_modal .shareClose,
.profile_avatar_crop_modal .coverCropClose {
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #dce5f0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: #5a6781;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}

.profile_avatar_modal .shareClose svg,
.profile_avatar_crop_modal .coverCropClose svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.profile_avatar_modal .profile_avatar_modal_stage,
.profile_avatar_crop_modal .profile_avatar_crop_stage {
  padding: 22px 22px 0;
}

.profile_avatar_modal .i_block_user_avatar_cover_wrapper,
.profile_avatar_crop_modal .i_block_user_avatar_cover_wrapper {
  background: linear-gradient(180deg, #eef4fc 0%, #e6edf8 100%);
}

.profile_avatar_modal .profile_avatar_modal_canvas,
.profile_avatar_crop_modal .profile_avatar_crop_canvas {
  padding: 0;
  border: 1px solid #dde6f1;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.profile_avatar_modal .coverImageArea {
  position: relative;
  height: clamp(250px, 38vw, 340px);
  border-radius: 24px 24px 0 0;
  -webkit-border-radius: 24px 24px 0 0;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.profile_avatar_modal .coverImageArea:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.22) 100%);
  pointer-events: none;
}

.profile_avatar_modal .avatarImageArea {
  position: relative;
  justify-content: center;
  margin-top: -82px;
  padding: 0 24px 24px;
}

.profile_avatar_modal .avatarImageWrapper {
  width: 172px;
  height: 172px;
  position: relative;
}

.profile_avatar_modal .avatarImage {
  width: 172px;
  height: 172px;
  border: 5px solid #ffffff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.22);
  background-size: cover;
  background-position: center;
}

.profile_avatar_modal .newCoverUpload,
.profile_avatar_modal .newAvatarUpload {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid #dce5f0;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.profile_avatar_modal .newCoverUpload {
  top: 18px;
  right: 18px;
}

.profile_avatar_modal .newAvatarUpload {
  right: -6px;
  top: -6px;
}

.profile_avatar_modal .newAvatarUpload label,
.profile_avatar_modal .newCoverUpload label {
  width: 100%;
  height: 100%;
}

.profile_avatar_modal .newAvatarUpload label svg,
.profile_avatar_modal .newCoverUpload label svg {
  fill: #2c5f9e;
  width: 22px;
  height: 22px;
}

.profile_avatar_crop_modal .profile_avatar_crop_canvas {
  padding: 18px;
}

.profile_avatar_crop_modal .cropier_container {
  min-height: 420px;
  border-radius: 20px;
  background: linear-gradient(180deg, #eef3fb 0%, #e6edf8 100%);
  overflow: hidden;
}

.profile_avatar_crop_modal .crop_middle {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.26) 0%, rgba(15, 23, 42, 0.38) 100%);
}

.profile_avatar_crop_modal_cover .cropier_container {
  width: 100%;
  height: 100%;
  min-height: 420px;
  margin: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.profile_avatar_crop_modal_cover .croppie-container,
.profile_avatar_crop_modal_cover .crop_middle {
  width: 100%;
  height: 100%;
}

.profile_avatar_crop_modal_cover .croppie-container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}

.profile_avatar_crop_modal_cover .croppie-container .cr-boundary {
  margin: auto;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}

.profile_avatar_crop_modal_cover .croppie-container .cr-viewport,
.profile_avatar_crop_modal_cover .croppie-container .cr-resizer {
  margin: 0;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.profile_avatar_crop_modal_avatar .profile_avatar_crop_canvas {
  min-height: 420px;
  display: block;
}

.profile_avatar_crop_modal_avatar .cropier_container {
  width: 100%;
  height: 100%;
  min-height: 420px;
  margin: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.profile_avatar_crop_modal_avatar .croppie-container,
.profile_avatar_crop_modal_avatar .crop_middle {
  width: 100%;
  height: 100%;
}

.profile_avatar_crop_modal_avatar .croppie-container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}

.profile_avatar_crop_modal_avatar .croppie-container .cr-boundary {
  margin: auto;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}

.community_avatar_modal .profile_avatar_modal_content,
.community_avatar_crop_modal .profile_avatar_crop_content {
  background: linear-gradient(180deg, #eef4fc 0%, #e6edf8 100%);
}

.community_avatar_modal .profile_avatar_modal_stage,
.community_avatar_crop_modal .profile_avatar_crop_stage {
  background: transparent;
}

.community_avatar_modal .i_block_box_footer_container,
.community_avatar_crop_modal .i_block_box_footer_container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 22px 22px;
  background: linear-gradient(180deg, #eef4fc 0%, #e6edf8 100%);
  border-top: 1px solid #dde6f1;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.community_avatar_modal .i_block_box_footer_container .alertBtnRightWithIcon,
.community_avatar_crop_modal .i_block_box_footer_container .alertBtnRightWithIcon {
  float: none;
}

.community_avatar_modal .i_block_box_footer_container .alertBtnLeft,
.community_avatar_crop_modal .i_block_box_footer_container .alertBtnLeft {
  float: none;
}

.profile_avatar_crop_modal_avatar .croppie-container .cr-viewport,
.profile_avatar_crop_modal_avatar .croppie-container .cr-resizer {
  margin: 0;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.profile_avatar_modal .profile_avatar_modal_footer,
.profile_avatar_crop_modal .profile_avatar_crop_footer {
  position: relative;
  z-index: 5;
  padding: 16px 24px 22px;
  border-top: 1px solid #e8eef7;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  gap: 12px;
}

.profile_avatar_modal .profile_avatar_modal_footer .alertBtnRightWithIcon,
.profile_avatar_modal .profile_avatar_modal_footer .alertBtnLeft,
.profile_avatar_crop_modal .profile_avatar_crop_footer .alertBtnRightWithIcon,
.profile_avatar_crop_modal .profile_avatar_crop_footer .alertBtnLeft {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  min-width: 138px;
  min-height: 48px;
  margin-left: 0;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: none;
  text-align: center;
  justify-content: center;
}

.profile_avatar_modal .profile_avatar_modal_primary,
.profile_avatar_crop_modal .profile_avatar_modal_primary {
  background: linear-gradient(135deg, #2f80ed 0%, #5b9cff 100%);
  border: 1px solid #4d8ef2;
  color: #ffffff;
}

.profile_avatar_modal .profile_avatar_modal_secondary,
.profile_avatar_crop_modal .profile_avatar_modal_secondary {
  background: #eef3fb;
  border: 1px solid #d4ddeb;
  color: #4f5f79;
}

@media only screen and (max-width: 700px) {
  .profile_avatar_modal .profile_avatar_modal_shell,
  .profile_avatar_crop_modal .profile_avatar_crop_shell {
    width: calc(100vw - 20px);
    border-radius: 22px;
  }

  .profile_avatar_modal .profile_avatar_modal_header,
  .profile_avatar_crop_modal .profile_avatar_crop_header {
    padding: 20px 18px 16px;
    padding-right: 64px;
  }

  .profile_avatar_modal .profile_avatar_modal_stage,
  .profile_avatar_crop_modal .profile_avatar_crop_stage {
    padding: 16px 16px 0;
  }

  .profile_avatar_modal .avatarImageArea {
    margin-top: -72px;
    padding: 0 18px 18px;
  }

  .profile_avatar_modal .avatarImageWrapper,
  .profile_avatar_modal .avatarImage {
    width: 152px;
    height: 152px;
  }

  .profile_avatar_crop_modal .cropier_container {
    min-height: 320px;
  }

  .profile_avatar_crop_modal_avatar .profile_avatar_crop_canvas {
    min-height: 320px;
  }

  .profile_avatar_crop_modal_avatar .cropier_container {
    min-height: 320px;
  }

  .profile_avatar_modal .profile_avatar_modal_footer,
  .profile_avatar_crop_modal .profile_avatar_crop_footer {
    padding: 16px 16px 18px;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
  }

  .profile_avatar_modal .profile_avatar_modal_footer .alertBtnRightWithIcon,
  .profile_avatar_modal .profile_avatar_modal_footer .alertBtnLeft,
  .profile_avatar_crop_modal .profile_avatar_crop_footer .alertBtnRightWithIcon,
  .profile_avatar_crop_modal .profile_avatar_crop_footer .alertBtnLeft {
    width: 100%;
  }
}

/*******************************************/
/***********************************/
/* Rotation Tools */
/***********************************/
.cr-rotate-controls {
  position: absolute;
  bottom: 5px;
  left: 5px;
  z-index: 1;
}

.cr-rotate-controls button {
  border: 0;
  background: none;
}

.cr-rotate-controls i:before {
  display: inline-block;
  font-style: normal;
  font-weight: 900;
  font-size: 22px;
}

.cr-rotate-l i:before {
  content: "↺";
}

.cr-rotate-r i:before {
  content: "↻";
}

.i_tab_container {
  display: inline-block;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_tab_header {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #f0f2f5;
}

.border_top {
  border-top: 1px solid #f0f2f5;
}

.border_top_radius {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-top-left-radius: 10px;
  -moz-border-top-right-radius: 10px;
}

.border_bottom_radius {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-bottom-left-radius: 10px;
  -moz-border-bottom-right-radius: 10px;
}

.tab_item {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  padding: 13px;
  color: #f65169;
  border-right: 1px solid #f0f2f5;
}

.teb_item:last-child {
  border-right: none;
}

.i_tab_list_item_container {
  display: inline-block;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
}

.i_tab_list_item {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #f0f2f5;
}

.agencies_settings .i_settings_wrapper_item {
  padding: 8px 0;
  flex-direction: column;
  align-items: stretch;
  overflow-x: hidden;
}

.agencies_settings .i_settings_wrapper_in {
  display: block;
  width: 100%;
  max-width: 100%;
}

.agencies_settings .i_settings_item_title {
  padding: 18px 20px 10px;
  font-size: 18px;
  width: 100%;
  text-align: left;
}

.agencies_settings .i_settings_item_title_for {
  padding: 6px 20px 18px;
  width: 100%;
  min-width: 0;
}

.agencies_settings .i_tab_container {
  background: #ffffff;
  border: 1px solid #f0f2f5;
  border-radius: 12px;
  overflow: hidden;
}

.agencies_settings .i_tab_header {
  background: #f9fafb;
}

.agencies_settings .i_tab_header .tab_item {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  line-height: 1.2;
  min-width: 0;
}

.agencies_settings .tab_item {
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 16px 12px;
  text-transform: uppercase;
  width: auto;
  white-space: nowrap;
  box-sizing: border-box;
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}

.agencies_settings .i_tab_list_item {
  min-height: 54px;
}

.agencies_settings .tab_detail_item {
  padding: 16px 12px;
  width: auto;
  box-sizing: border-box;
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}

.agencies_settings .i_tab_header .tab_item:last-child {
  border-right: none;
}

.agencies_settings .i_overflow_x_auto {
  padding: 4px 0;
}

.agencies_settings .tab_item.tab_detail_item_maxwidth,
.agencies_settings .tab_detail_item.tab_detail_item_maxwidth {
  max-width: none;
  min-width: 220px;
  width: 240px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 240px;
  flex: 0 0 240px;
}

.agencies_settings .agency_actions {
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.agencies_settings .agency_actions .creatorAgencyInviteAction,
.agencies_settings .agency_actions .agencyOwnerRequestAction {
  width: 100%;
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.agencies_settings .agency_actions .seePost {
  background: #e9f7ef;
  border-color: #cfeee0;
  color: #1e8e5a;
}

.agencies_settings .agency_actions .delu {
  background: #fdecec;
  border-color: #f5c2c7;
  color: #c23b32;
}

.agencies_settings .agency_actions .creatorAgencyInviteAction,
.agencies_settings .agency_actions .agencyOwnerRequestAction,
.agencies_settings .agency_actions .seePost,
.agencies_settings .agency_actions .delu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.2;
}

.agencies_settings .agency_actions .creatorAgencyInviteAction svg,
.agencies_settings .agency_actions .agencyOwnerRequestAction svg,
.agencies_settings .agency_actions .seePost svg,
.agencies_settings .agency_actions .delu svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
  fill: currentColor;
  stroke: currentColor;
}

.agencies_settings .agency_boost_row .agencyBoostPaymentMethod {
  width: 100%;
  min-height: 36px;
  padding: 6px 32px 6px 10px;
  border-radius: 10px;
  border: 1px solid #d7dde7;
  background-color: #f8fafc;
  color: #111827;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  box-sizing: border-box;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.agencies_settings .agency_boost_row .agencyBoostPaymentMethod:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  outline: none;
}

.agencies_settings .agency_boost_row .agencyBoostPaymentMethod:disabled {
  background-color: #f1f5f9;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
}

.agencies_settings .agency_actions .agencyBoostCreate {
  min-height: 36px;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: normal;
  text-align: center;
  line-height: 1.15;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #eefcf5, #ddf6e7);
  border-color: #bfe8d4;
  color: #137a49;
  box-shadow: 0 10px 18px rgba(16, 185, 129, 0.18);
  box-sizing: border-box;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.agencies_settings .agency_actions .agencyBoostCreate:hover {
  transform: translateY(-1px);
  border-color: #a8dfc6;
  box-shadow: 0 14px 22px rgba(16, 185, 129, 0.22);
}

.agencies_settings .agency_actions .agencyBoostCreate.disabled,
.agencies_settings .agency_actions .agencyBoostCreate[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.agencies_settings .agency_boost_scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.agencies_settings .agency_table_wrap,
.agencies_settings .agency_boosted_table_wrap {
  max-width: 100%;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.agencies_settings .agency_table_scroll,
.agencies_settings .agency_boosted_table_scroll {
  max-width: 100%;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.agencies_settings .agency_table,
.agencies_settings .agency_boosted_table {
  min-width: 900px;
}

.agencies_settings .agency_boost_table .i_tab_header,
.agencies_settings .agency_boost_table .i_tab_list_item {
  display: grid !important;
  grid-template-columns:
    minmax(0, 2.2fr) minmax(0, 1.1fr) minmax(0, 0.8fr)
    minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1.4fr) minmax(0, 1.1fr);
  align-items: center;
}

.agencies_settings .agency_boost_table .i_tab_header .tab_item {
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  line-height: 1.2;
  font-size: 11px;
  letter-spacing: 0.015em;
  padding: 12px 8px;
  overflow: hidden;
  min-width: 0;
}

.agencies_settings .agency_boost_table .tab_item,
.agencies_settings .agency_boost_table .tab_detail_item {
  width: auto;
  min-width: 0;
  box-sizing: border-box;
}

.agencies_settings .agency_boost_table .tab_item.tab_detail_item_maxwidth,
.agencies_settings
  .agency_boost_table
  .tab_detail_item.tab_detail_item_maxwidth {
  width: auto;
  min-width: 0;
  max-width: none;
}

.agencies_settings
  .agency_boost_table
  .i_tab_header
  .agency_boost_header_label {
  display: block;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.2;
  text-align: center;
}

.agencies_settings .agency_boost_table .i_tab_header .tab_item:nth-child(5),
.agencies_settings .agency_boost_table .i_tab_header .tab_item:nth-child(6),
.agencies_settings .agency_boost_table .i_tab_header .tab_item:nth-child(7) {
  font-size: 10px;
  letter-spacing: 0.01em;
  padding: 12px 6px;
}

.agencies_settings .agency_actions .agencyBoostCreate svg {
  vertical-align: -2px;
  margin-right: 6px;
}

.agencies_settings .agency_boost_table .i_tab_list_item .tab_detail_item {
  min-width: 0;
}

.agencies_settings .agency_boost_table .agencyBoostDuration,
.agencies_settings .agency_boost_table .agencyBoostPaymentMethod {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.agencies_settings .agency_profile_form {
  --agency-card-bg: #ffffff;
  --agency-card-border: #e6eaf2;
  --agency-card-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  --agency-label: #111827;
  --agency-muted: #6b7280;
  --agency-input-bg: #f8fafc;
}

.agencies_settings .agency_profile_form .agency_profile_row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 14px;
  background: var(--agency-card-bg);
  margin-bottom: 12px;
}

.agencies_settings .agency_profile_form .agency_profile_row .irow_box_left {
  width: 100%;
  font-weight: 600;
  font-size: 13px;
  color: var(--agency-label);
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.agencies_settings .agency_profile_form .agency_profile_row .irow_box_right {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.agencies_settings .agency_profile_form textarea,
.agencies_settings .agency_profile_form input[type="text"],
.agencies_settings .agency_profile_form input[type="file"] {
  width: 100%;
}

.agencies_settings .agency_profile_form textarea.i_input,
.agencies_settings .agency_profile_form input.i_input {
  background: var(--agency-input-bg);
  border: 1px solid #dfe4ec;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.agencies_settings .agency_profile_form textarea[name="agency_about"] {
  font-size: 14px;
  line-height: 1.6;
  font-family: "Noto Sans", sans-serif;
}

.agencies_settings .agency_profile_form textarea[name="agency_services"] {
  font-size: 14px;
  line-height: 1.6;
  font-family: "Noto Sans", sans-serif;
}

.agencies_settings .agency_profile_form textarea.i_input:focus,
.agencies_settings .agency_profile_form input.i_input:focus {
  border-color: #c5d0e0;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
  outline: none;
}

.agencies_settings .agency_profile_form .agency_media_row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.agencies_settings .agency_profile_form .agency_media_preview {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  flex: none;
}

.agencies_settings .agency_profile_form .agency_media_preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.agencies_settings .agency_profile_form .agency_profile_section_title {
  font-weight: 600;
  font-size: 12px;
  color: var(--agency-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 8px 4px 12px;
}

.agencies_settings .agency_profile_form .agency_profile_socials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.agencies_settings
  .agency_profile_form
  .agency_profile_socials
  .agency_profile_row {
  box-shadow: none;
  margin-bottom: 0;
}

.agencies_settings .agency_profile_form .agency_profile_action {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-top: 6px;
}

.agencies_settings .agency_profile_form .agency_profile_action .irow_box_right {
  display: flex;
  justify-content: flex-start;
}

.agencies_settings #creatorAgencyCreateForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agencies_settings #creatorAgencyCreateForm .i_general_row_box_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e6eaf2;
  padding: 14px;
}

.agencies_settings #creatorAgencyCreateForm .irow_box_left {
  width: 100%;
  font-weight: 600;
  font-size: 13px;
  color: #111827;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.agencies_settings #creatorAgencyCreateForm .irow_box_right {
  width: 100%;
}

.agencies_settings #creatorAgencyCreateForm input.i_input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #dfe4ec;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.agencies_settings #creatorAgencyCreateForm input.i_input:focus {
  border-color: #c5d0e0;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
  outline: none;
}

@media (max-width: 768px) {
  .agencies_settings .i_tab_container {
    width: 100%;
  }
  .agencies_settings .i_tab_header .tab_item:last-child {
    border-right: none;
  }
  .agencies_settings .tab_item,
  .agencies_settings .tab_detail_item {
    min-width: 0;
    padding: 10px 8px;
  }
  .agencies_settings .tab_item {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.2;
    font-size: 11px;
    letter-spacing: 0.02em;
  }
  .agencies_settings .tab_detail_item {
    word-break: break-word;
    overflow-wrap: anywhere;
    font-size: 12px;
  }
  .agencies_settings .tab_item.tab_detail_item_maxwidth,
  .agencies_settings .tab_detail_item.tab_detail_item_maxwidth {
    min-width: 0;
    width: auto;
    flex: 1 1 0;
  }
  .agencies_settings .agency_boost_table .i_tab_header,
  .agencies_settings .agency_boost_table .i_tab_list_item {
    grid-template-columns:
      minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 0.8fr)
      minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1.2fr) minmax(0, 1fr);
  }
  .agencies_settings .agency_boost_table .i_tab_header .tab_item {
    padding: 10px 6px;
  }
  .agencies_settings .agency_boost_table .i_tab_list_item .tab_detail_item {
    padding: 12px 6px;
  }
  .agencies_settings .agency_actions .agencyBoostCreate,
  .agencies_settings .agency_actions .creatorAgencyInviteAction,
  .agencies_settings .agency_actions .agencyOwnerRequestAction {
    padding: 8px 10px;
    font-size: 11px;
  }
}

@media (max-width: 520px) {
  .agencies_settings .agency_boost_table .i_tab_header,
  .agencies_settings .agency_boost_table .i_tab_list_item {
    grid-template-columns:
      minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.7fr)
      minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1.2fr);
  }
  .agencies_settings .agency_boost_table .i_tab_header .tab_item {
    font-size: 10px;
    letter-spacing: 0.01em;
    padding: 8px 6px;
  }
  .agencies_settings .agency_boost_table .i_tab_list_item .tab_detail_item {
    padding: 10px 6px;
  }
  .agencies_settings .agency_boost_row .agencyBoostPaymentMethod {
    padding: 5px 28px 5px 8px;
    font-size: 11px;
  }
  .agencies_settings .agency_actions {
    word-break: normal;
    overflow-wrap: normal;
  }
  .agencies_settings .agency_actions .agencyBoostCreate {
    padding: 6px 8px;
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.1;
    word-break: normal;
    overflow-wrap: normal;
  }
  .agencies_settings .agency_actions .agencyBoostCreate svg {
    margin-right: 4px;
  }
}
.tab_subscriber_avatar {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  margin-right: 10px;
}

.truncated {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tab_subscriber_avatar img {
  height: 100%;
  width: 100%;
}

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

.tabing_non_justify {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tabing__justify {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tab_detail_item {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-weight: 400;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 14px;
  padding: 10px;
  color: #000000;
  border-right: 1px solid #f0f2f5;
}

.tab_detail_item a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}

.tab_detail_item:last-child {
  border-right: none;
}

.i_become_creator_box_footer ul {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin-top: 10px;
}

.i_become_creator_box_footer ul li {
  display: inline;
  text-align: center;
}

.i_become_creator_box_footer ul li a {
  text-decoration: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  padding: 10px;
  color: #f65169;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
}

.i_become_creator_box_footer ul li a:hover {
  background-color: #e0e3eb;
}

.i_become_creator_box_footer ul li.active a {
  background-color: #f65169;
  color: #ffffff;
}

.i_become_creator_box_footer ul li.next a,
.i_become_creator_box_footer ul li.prev a {
  font-weight: 600;
}

.tab_detail_item .active {
  background-color: #0097a7;
  color: #ffffff;
  padding: 5px;
  font-weight: 600;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-borde-radius: 30px;
}

.tab_detail_item .inactive {
  background-color: #f65169;
  color: #ffffff;
  padding: 5px;
  font-weight: 600;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-borde-radius: 30px;
}

.i_payout_methods_form_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding-bottom: 0px;
}

.payouts_form_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px 25px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.tab_detail_item .tabing .pending {
  background-color: #f57c00;
}

.tab_detail_item .tabing .success {
  background-color: #43a047;
}

.tab_detail_item .tabing .declined {
  background-color: #e53935;
}

.minimum_amount {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -ms-border-radius: 10px;
  padding: 15px;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #fab429;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.minimum_amount svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  fill: #ffffff;
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.method_not {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -ms-border-radius: 10px;
  padding: 15px;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #868dac;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}

.method_not svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  fill: #ffffff;
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.method_not a {
  margin-left: 5px;
  text-decoration: none;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
}

.method_not a:hover {
  color: #2e2e2e;
  text-decoration: underline;
}

.next_payout {
  padding: 20px;
  background-color: #e0e3eb;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.next_payout_title {
  font-weight: 600;
  font-size: 18px;
  color: #000000;
}

.next_payout_not {
  padding-top: 15px;
  color: #000000;
}

.your_balance {
  font-weight: 600;
  font-size: 30px;
  color: #2e2e2e;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 15px 0px;
}

.withdrawal_box {
  display: inline-block;
  width: 100%;
  padding: 10px 0px;
}

.withdrawal_box input {
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  border: 1px solid #f0f2f5;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  min-width: 350px;
  outline: none;
}

.withdrawal_box input:focus {
  border: 1px solid #f65169;
}

.user_current_withdrawal {
  border: 1px solid #f0f2f5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #f0f1f5;
}

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

.premium_locked {
  top: 0;
  right: 0;
  position: absolute;
  display: block;
  z-index: 2;
}

.premium_locked:after {
  border-top: 150px solid rgba(0, 0, 0, 0.4);
  border-left: 150px solid transparent;
  display: block;
  content: "";
}

.premium_locked_icon {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 20px;
}

.premium_locked_icon svg {
  width: 35px;
  height: 35px;
  fill: #ffffff;
}

.waiting_approve {
  width: 100%;
  padding: 15px;
  background-color: #f0f2f5;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  font-size: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.waiting_approve svg {
  width: 23px;
  height: 23px;
  fill: #000000;
  margin-right: 10px;
}

.fr_subs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 8px 15px;
  font-weight: 400;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 10px;
  -webkit-boder-radius: 10px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  cursor: pointer;
  color: #ffffff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.fr_subs:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.fr_subs svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-right: 4px;
}

.buyThisPost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 10px;
  -webkit-boder-radius: 10px;
  background: #d81b60;
  cursor: pointer;
  color: #ffffff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.buyThisPost span {
  font-weight: 600;
  font-size: 22px;
  margin-right: 10px;
}

.buythistext {
  padding-top: 10px;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.purchase_premium_header {
  background-color: #f0f2f5;
  padding: 20px;
  font-weight: 600;
  font-size: 15px;
  color: #000000;
}

.purchase_post_details {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 15px;
  background-color: #ffffff;
}

.wallet-debit-confirm-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.owner_avatar {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #f0f2f5;
}

.album-details {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 600;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 14px;
  padding-left: 15px;
}

.album-wanted-point {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #f65169;
  padding: 0 1rem;
  font-size: 30px;
  line-height: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.album-wanted-point span {
  color: #2e2e2e;
  width: 100%;
  padding-top: 5px;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
}

.purchase_live_stream_modal .purchase_live_stream_modal_shell {
  width: min(520px, calc(100vw - 32px));
}

.purchase_live_stream_modal .purchase_live_stream_modal_content {
  border-radius: 28px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.2) !important;
}

.purchase_live_stream_modal .purchase_live_stream_modal_header {
  justify-content: center !important;
  min-height: 74px !important;
  position: relative !important;
  padding: 18px 72px 16px !important;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%) !important;
  border-bottom: 1px solid #e4ebf5 !important;
}

.purchase_live_stream_modal .purchase_live_stream_modal_title {
  color: #22304d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.purchase_live_stream_modal .purchase_live_stream_modal_close {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid #dbe4f1;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.purchase_live_stream_modal .purchase_live_stream_modal_close svg {
  width: 20px;
  height: 20px;
}

.purchase_live_stream_modal .purchase_live_stream_modal_body {
  padding: 20px !important;
  background: #f8fafc !important;
}

.purchase_live_stream_modal .purchase_live_stream_modal_summary {
  flex-direction: column;
  align-items: center !important;
  gap: 16px !important;
  padding: 16px !important;
  border-radius: 24px !important;
  border: 1px solid #dce6f3 !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  box-shadow:
    0 20px 38px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
}

.purchase_live_stream_modal .purchase_live_stream_modal_avatar {
  width: 78px;
  min-width: 78px;
  height: 78px;
  border-radius: 22px;
  align-self: center;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.purchase_live_stream_modal .purchase_live_stream_modal_copy {
  flex: 0 0 auto;
  color: #3d4b67;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  padding-left: 0;
  text-align: center;
  max-width: 320px;
}

.purchase_live_stream_modal .purchase_live_stream_modal_points {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff5c7a 0%, #f5b93a 100%);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 16px 30px rgba(255, 92, 122, 0.2);
  align-self: stretch;
}

.purchase_live_stream_modal .purchase_live_stream_modal_points div {
  width: 100%;
  max-width: none;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.purchase_live_stream_modal .purchase_live_stream_modal_points span {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.94;
  padding-top: 0;
}

.purchase_live_stream_modal .purchase_live_stream_modal_footer {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  padding: 0 20px 20px !important;
  background: #f8fafc !important;
  border-top: 0 !important;
  font-size: 0 !important;
}

.purchase_live_stream_modal .purchase_live_stream_modal_submit,
.purchase_live_stream_modal .purchase_live_stream_modal_cancel {
  float: none !important;
  min-width: 138px !important;
  min-height: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 16px !important;
  padding: 0 20px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-right: 0 !important;
}

.purchase_live_stream_modal .purchase_live_stream_modal_submit {
  background: linear-gradient(135deg, #ff5c7a 0%, #f5b93a 100%) !important;
  box-shadow: 0 16px 30px rgba(255, 92, 122, 0.2) !important;
}

.purchase_live_stream_modal .purchase_live_stream_modal_cancel {
  background: #98a2c3 !important;
  color: #ffffff !important;
}

.purchase_premium_post_modal .purchase_premium_post_modal_shell {
  width: min(560px, calc(100vw - 32px));
}

.purchase_premium_post_modal .purchase_premium_post_modal_content {
  border-radius: 30px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.24) !important;
}

.purchase_premium_post_modal .purchase_premium_post_modal_header {
  justify-content: center !important;
  min-height: 74px !important;
  padding: 18px 24px 16px !important;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%) !important;
  border-bottom: 1px solid #e4ebf5 !important;
}

.purchase_premium_post_modal .purchase_premium_post_modal_title {
  color: #22304d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.purchase_premium_post_modal .purchase_premium_post_modal_body {
  padding: 20px !important;
  background: #f8fafc !important;
}

.purchase_premium_post_modal .purchase_premium_post_modal_summary {
  flex-direction: column;
  align-items: center !important;
  gap: 16px !important;
  padding: 16px !important;
  border-radius: 24px !important;
  border: 1px solid #dce6f3 !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
}

.purchase_premium_post_modal .purchase_premium_post_modal_avatar {
  width: 78px;
  min-width: 78px;
  height: 78px;
  border-radius: 22px;
  align-self: center;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.purchase_premium_post_modal .purchase_premium_post_modal_copy {
  flex: 0 0 auto;
  padding-left: 0;
  color: #3d4b67;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  max-width: 340px;
}

.purchase_premium_post_modal .purchase_premium_post_modal_points {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff5c7a 0%, #f5b93a 100%);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 16px 30px rgba(255, 92, 122, 0.22);
  align-self: stretch;
}

.purchase_premium_post_modal .purchase_premium_post_modal_points div {
  width: 100%;
  max-width: none;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.purchase_premium_post_modal .purchase_premium_post_modal_points span {
  display: block;
  margin-top: 5px;
  padding-top: 0;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.94;
}

.purchase_premium_post_modal .purchase_premium_post_modal_footer {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  padding: 0 20px 20px !important;
  background: #f8fafc !important;
  border-top: 0 !important;
}

.purchase_premium_post_modal .purchase_premium_post_modal_submit,
.purchase_premium_post_modal .purchase_premium_post_modal_cancel {
  float: none !important;
  min-width: 138px !important;
  min-height: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 0 !important;
  border-radius: 16px !important;
  padding: 0 20px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.purchase_premium_post_modal .purchase_premium_post_modal_submit {
  background: linear-gradient(135deg, #ff5c7a 0%, #f5b93a 100%) !important;
  box-shadow: 0 16px 30px rgba(255, 92, 122, 0.22) !important;
}

.purchase_premium_post_modal .purchase_premium_post_modal_cancel {
  background: #98a2c3 !important;
  color: #ffffff !important;
}

@media (max-width: 700px) {
  .purchase_live_stream_modal .purchase_live_stream_modal_shell {
    width: min(100vw - 16px, 520px);
  }

  .purchase_live_stream_modal .purchase_live_stream_modal_header {
    min-height: 68px;
    padding: 16px 64px 14px 18px;
  }

  .purchase_live_stream_modal .purchase_live_stream_modal_title {
    font-size: 17px;
    text-align: left;
  }

  .purchase_live_stream_modal .purchase_live_stream_modal_close {
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .purchase_live_stream_modal .purchase_live_stream_modal_body {
    padding: 16px;
  }

  .purchase_live_stream_modal .purchase_live_stream_modal_summary {
    align-items: center;
    gap: 12px;
    padding: 16px;
  }

  .purchase_live_stream_modal .purchase_live_stream_modal_avatar {
    width: 68px;
    min-width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .purchase_live_stream_modal .purchase_live_stream_modal_copy {
    font-size: 14px;
    max-width: none;
  }

  .purchase_live_stream_modal .purchase_live_stream_modal_points {
    padding: 12px 14px;
  }

  .purchase_live_stream_modal .purchase_live_stream_modal_footer {
    flex-direction: column-reverse;
    padding: 0 16px 16px !important;
  }

  .purchase_live_stream_modal .purchase_live_stream_modal_submit,
  .purchase_live_stream_modal .purchase_live_stream_modal_cancel {
    width: 100%;
    min-width: 0;
  }

  .purchase_premium_post_modal .purchase_premium_post_modal_shell {
    width: min(100vw - 16px, 560px);
  }

  .purchase_premium_post_modal .purchase_premium_post_modal_header {
    min-height: 68px !important;
    padding: 16px 18px 14px !important;
  }

  .purchase_premium_post_modal .purchase_premium_post_modal_title {
    font-size: 17px;
  }

  .purchase_premium_post_modal .purchase_premium_post_modal_body {
    padding: 16px !important;
  }

  .purchase_premium_post_modal .purchase_premium_post_modal_summary {
    gap: 12px !important;
    padding: 16px !important;
  }

  .purchase_premium_post_modal .purchase_premium_post_modal_avatar {
    width: 68px;
    min-width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .purchase_premium_post_modal .purchase_premium_post_modal_copy {
    font-size: 14px;
    max-width: none;
  }

  .purchase_premium_post_modal .purchase_premium_post_modal_points {
    padding: 12px 14px;
  }

  .purchase_premium_post_modal .purchase_premium_post_modal_footer {
    flex-direction: column-reverse !important;
    padding: 0 16px 16px !important;
  }

  .purchase_premium_post_modal .purchase_premium_post_modal_submit,
  .purchase_premium_post_modal .purchase_premium_post_modal_cancel {
    width: 100%;
    min-width: 0 !important;
  }
}

.premium_plans_container {
  width: 100%;
  padding: 20px;
  max-width: 1280px;
  margin: 0px auto;
  z-index: 1;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.premium_plans_container h1 {
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 45px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 8rem;
  margin-bottom: 0.5rem;
}

.premium_plans_container h2 {
  text-align: center;
  color: #7a0a1b;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
  opacity: 0.8;
  display: block;
}

.buyCreditWrapper {
  position: relative;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 80px;
}

.credit_plan_box {
  padding: 0.5rem;
  -webkit-box-flex: 0;
  flex: 0 0 30%;
  -webkit-flex: 0 0 30%;
  -moz-flex: 0 0 30%;
  -ms-flex: 0 0 30%;
  -o-flex: 0 0 30%;
  position: relative;
}

.credit_plan_box.buyFrameGift i::after {
  content: none !important;
  display: none !important;
}

.plan_box {
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  padding: 2rem;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.plan_box:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.plan_name {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #f65169;
  margin-bottom: 0.75rem;
  width: 100%;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  text-align: center;
}

.plan_name::after {
  width: 3rem;
  border-radius: 1rem;
  height: 0.3rem;
  content: "";
  background: #f65169;
  display: block;
  margin: 1.3rem auto;
}

.plan_value {
  position: relative;
  text-align: center;
  width: 100%;
}

.plan_price {
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  text-align: center;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.plan_point {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1;
  width: 100%;
  text-align: center;
  font-weight: 400;
}

.plan_point_icon {
  font-size: 3rem;
  margin-left: 0.5rem;
  position: absolute;
  opacity: 0.3;
  right: -1.5rem;
  top: -1rem;
}

.plan_point_icon svg {
  width: 26px;
  height: 26px;
  fill: #2e2e2e;
}

.purchaseButton {
  margin-top: 2rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid #f65169;
  width: 100%;
  display: block;
  padding: 15px 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: #f65169;
  letter-spacing: 3px;
  font-weight: 300;
  line-height: 1;
  position: relative;
  text-align: center;
}

.purchaseButton strong .plan_point_icon {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.purchaseButton strong span svg {
  width: 15px;
  height: 15px;
  fill: #f65169;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
}

.plan_box:hover .purchaseButton {
  border: 1px solid #f65169;
  background-color: #f65169;
  color: #ffffff;
}

.plan_box:hover .purchaseButton strong span svg {
  fill: #ffffff;
}

.foramount {
  color: #000000;
  text-align: center;
  letter-spacing: 1px;
  text-transform: none;
  font-size: 1.2rem;
  margin-top: 0.25rem;
  font-size: 13px;
}

.plan_box:hover .purchaseButton .foramount {
  color: #ffffff;
}

.payment_method_box {
  float: left;
  position: relative;
  width: 100%;
  width: calc(50% - 0px);
  width: -o-calc(100% / 2 - 0px);
  width: -ms-calc(100% / 2 - 0px);
  width: -moz-calc(100% / 2 - 0px);
  padding: 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  cursor: pointer;
}

.payment_method_box:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.payment_method_item {
  width: 100% !important;
  min-height: 64px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border: 1px solid #e8ecf4;
  background: none !important;
  background-color: #f8f9fc !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 14px;
  text-align: center;
}

.payment_method_label {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #2e2e2e;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bitpay {
  width: 90px;
  height: 40px;
  background: url("paymentIcons/bitpay.svg") no-repeat center;
  background-size: cover;
}

.razorpay {
  width: 120px;
  height: 40px;
  background: url("paymentIcons/razorpay-logo.svg") no-repeat center;
  background-size: contain;
}

.paypal {
  width: 90px;
  height: 40px;
  background: url("paymentIcons/paypal.svg") no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
}

.stripe {
  width: 90px;
  height: 40px;
  background-image: url("paymentIcons/stripe.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.paystack {
  width: 120px;
  height: 40px;
  background: url("paymentIcons/paystack-logo.svg") no-repeat center;
  background-size: contain;
}

.iyzico {
  width: 92px;
  height: 40px;
  background: url("paymentIcons/iyzico-logo.svg") no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
}

.authorize {
  width: 90px;
  height: 40px;
  background: url("paymentIcons/authorize.svg") no-repeat center;
  background-size: contain;
}

.coinpayment {
  width: 90px;
  height: 40px;
  background: url("paymentIcons/coinpayment.svg") no-repeat center;
  background-size: contain;
}

.point_purchase_not {
  background-color: #f57c00;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  padding: 15px;
  margin-top: 30px;
}

.point_purchase_not svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  margin-right: 10px;
}

.payment_failed,
.payment_success {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
  padding-top: 100px;
}

.payment_result_icon {
  width: 100%;
  max-width: 350px;
  margin: 0px auto;
}

.payment_result_icon svg {
  width: 300px;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -o-flex;
  display: -ms-flex;
  display: -moz-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.payment_result_title {
  text-align: center;
  font-weight: 700;
  font-size: 35px;
  color: #f65169;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.payment_result_description {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: #2e2e2e;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.payment_result_footer {
  width: 100%;
  padding: 15px 0px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
}

.payment_result_item {
  width: 100%;
  max-width: 200px;
  text-align: center;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  padding: 15px 12px;
}

.payment_result_item:hover {
  background-color: #e0e3eb;
}

.payment_result_item a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
}

.payment_result_item a:hover {
  color: #f65169;
}

.pay_form_group_plus .i_form_group_plus_extra > label {
  font-weight: 600;
  color: #525c7a;
  font-size: 14px;
  letter-spacing: 1px;
  width: 100%;
  display: block;
  line-height: normal;
  padding-bottom: 0.5rem;
}

.pay_form_group_plus .i_form_group_plus_extra .form-control input {
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  padding: 15px;
  outline: none;
  border: 1px solid transparent;
  font-size: 14px;
  color: #000000;
}

.i_form_group_plus_extra {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  width: calc(33.3333333333% - 0px);
  width: -o-calc(100% / 3 - 0px);
  width: -ms-calc(100% / 3 - 0px);
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding-right: 15px;
}

.i_form_group_plus_extra .form-control #card_expiry {
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  padding: 15px;
  outline: none;
  border: 1px solid transparent;
  font-size: 14px;
  color: #000000;
  background-color: #ffffff;
  padding-left: 45px;
}

.i_form_group_plus_extra .form-control #card_cvc {
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  padding: 15px;
  outline: none;
  border: 1px solid transparent;
  font-size: 14px;
  color: #000000;
  background-color: #ffffff;
  padding-left: 45px;
}

.i_credit_card_form
  .pay_form_group_plus
  .i_form_group_plus_extra
  .form-control {
  position: relative;
}

.i_credit_card_form
  .pay_form_group_plus
  .i_form_group_plus_extra
  .form-control
  .inora_user_input {
  padding-left: 45px;
}

.i_form_group_plus_extra:last-child {
  padding-right: 0px;
}

.i_tab_padding {
  padding: 15px;
}

.general_page_footer {
  position: relative;
  padding: 25px 15px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}

.i_sub_box_container {
  width: 100%;
  width: calc(50% - 4px);
  width: -ms-calc(50% - 4px);
  width: -o-calc(50% - 4px);
  float: left;
  padding: 8px;
}

.i_sub_box_wrp {
  position: relative;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 13px;
  border: 1px solid #f0f2f5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -moz-border-radius: 10px;
}

.isubavatar {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-color: #f0f2f5;
}

.isubavatar img {
  height: 100%;
  width: 100%;
}

.i_sub_box_name_time {
  padding-left: 16px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.i_sub_box_name {
  font-weight: 600;
  font-size: 17px;
  padding-bottom: 5px;
}

.i_sub_box_name a {
  color: #000000;
  text-decoration: none;
}

.i_sub_box_name a:hover {
  color: #f65169;
}

.i_sub_box_unm {
  font-weight: 400;
  font-size: 14px;
  color: #b3b9cc;
}

.i_sub_flw {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  margin: 0px auto;
}

.i_sub_flw .i_btn_like_item_flw {
  margin: 0px auto;
  padding: 8px 12px;
  text-align: center;
  color: #ffffff;
  border: 1px solid #f65169;
  font-weight: 400;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

.i_sub_flw .i_btn_like_item_flw:hover {
  color: #000000;
  background-color: #f0f2f5;
  border: 1px solid #f0f2f5;
}

.i_sub_flw .i_btn_like_item_flw svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 23px;
  height: 23px;
  fill: #ffffff;
  margin-right: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_sub_flw .i_btn_like_item_flw:hover svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 23px;
  height: 23px;
  fill: #000000;
  margin-right: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_sub_flw .i_btn_like_item {
  margin: 0px auto;
  padding: 8px 12px;
  text-align: center;
  color: #000000;
  background-color: #f0f2f5;
  border: 1px solid #f0f2f5;
  font-weight: 400;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

.i_sub_flw .i_btn_like_item:hover {
  background-color: #f65169;
  color: #ffffff;
}

.i_sub_flw .i_btn_like_item svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 23px;
  height: 23px;
  fill: #000000;
  margin-right: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_sub_flw .i_btn_like_item:hover svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 23px;
  height: 23px;
  fill: #ffffff;
  margin-right: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pointIN {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 12px 15px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  outline: none;
  border: none;
  border: 2px solid #f0f1f5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-top: 10px;
  width: 100%;
}

.point_input_wrapper {
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.become_a_creator {
  color: #fab429;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

/*CHAT PAGE STYLES*/
.i_chat_wrapper {
  position: relative;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  min-height: calc(100vh - 72px);
  min-height: -o-calc(100vh - 72px);
  min-height: -ms-calc(100vh - 72px);
  background-color: #ffffff;
}

.chat_left_container {
  z-index: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 360px;
  position: relative;
  min-width: 0px;
  min-height: inherit;
  max-width: 100%;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.chat_middle_container {
  z-index: 0;
  -ms-flex-preferred-size: 0px;
  flex-basis: 0px;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  min-width: 0px;
  min-height: inherit;
  max-width: 100%;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  border-left: 1px solid #e0e3eb;
}

.chat_left_header {
  padding: 15px 18px 10px 15px;
  width: 100%;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.chat_left_header_title {
  font-weight: 700;
  font-size: 20px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  text-align: left;
}

.chat_search_box {
  padding: 10px 0px;
  position: relative;
}

.c_search {
  outline: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 30px;
  background-color: #f0f2f5;
  width: 100%;
  padding: 8px 20px;
  border: 1px solid transparent;
  font-weight: 300;
  font-size: 14px;
  color: #000000;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABmJLR0QA/wD/AP+gvaeTAAACyElEQVRIie2WTUhUURTHf+fONFbQQkhLKohKIqFoEUi4LmrahNLkG61NUaTmzl3Bo2UfYKbmVpx5MwgRpH1Ai6JdEBFEtQrsOyKCKFBr3j0t3hsxy+a9ylb9N/ed+849v8u595574b/+kSSqo+u6pm5dw+qvydIqtfbzklTq1eFM5sOCgfuKxfWJku1B2AusmPVLgfugI3519VB3Oj39V8CqKoOed0KREwKpCnEm1Ehrl+Pc/SOwqspFzxtW5EDY5QNjgl5HEy+s+CnBbFU0I9AQ+kwp2tLV1nbtt8ED+fxJkFOh+ciqdY63tz+c6+e6rqndsPGIivYCVcAnEqaxs7X1SWxwX7G43vj2cZjeR8lFyaajmczHXwUZ8LxdKONAArjZ2ZbdWQls5nYkSrYnhPpWrVMJCtCZzd5A6A3NHf2FQmMssOu6Jty9gIz/LL3zBiqVThPsBUS1ORZ4eX39GsIjI9hIm6SsYwcPvkO5B6DKtlhgjFlZ/lSR53HAAIhOBA11scBGdXIGbGVJbDCyNGioWEy+A6eSyZcEFQljdHN8MOUxE7HAYe29D2CV/a7r/rDr59OFXK4JWBtYejsWOBw0AiDQULth45EoUPfWraQRcyY0J5Mi+dhgv7p6iDBVKto7mCvurgStef12CNgeTFjPHc1m38cGd6fT02qkFZgCqlTs2IDnne0bHa2Z63shl2uqef3mDuihmYmLPKgEDSY4j/rz+bQgRWBZOWZ4Tp+pYbEoW5hZ0+80LUZaOhzn6m+BAQaKxU349jyw4xduk4Ke80UeGCVPcFlUhEd6gfQXCo2i2qzKNlHqEL4iPFWV24tEvfKaDhYKe9TqpSjwyE+fqApvqsvAYoUvxsq+jgPOlQUHR4UvCBh+SPuUr7a+u739Zfl/5MoUVx2Oc1WMtBAcS6myqQVj/VQXh0dX9eVyq/8p9L9m6xtdNRQHwoG8EgAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-position: 12px 7px;
  padding-left: 46px;
  background-size: 20px;
  -webkit-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
}

.chat_users_wrapper {
  min-height: 0;
  -webkit-perspective-origin: right top;
  perspective-origin: right top;
  overflow-x: hidden;
  scrollbar-width: none;
  overflow-x: hidden;
  position: relative;
  -webkit-perspective: 1px;
  perspective: 1px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform, scroll-position;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 15px 10px;
}

.chat_users_wrapper a {
  text-decoration: none;
  color: #000000;
}

.i_message_owner_name .i_plus_g {
  display: initial;
}

.i_message_owner_name .i_plus_g svg {
  width: 14px;
  height: 14px;
}

.chat_empty {
  width: 100%;
  height: 100%;
  background-color: #f0f2f5;
}

.chat_empty_logo {
  width: 100%;
  max-width: 280px;
  height: 280px;
  background-image: url("img/chat.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.conversation_box_header {
  width: 100%;
  padding: 15px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

.conversation_avatar {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-color: #f0f1f5;
}

.conversation_avatar img {
  height: 100%;
  width: 100%;
}

.conversation_user_d {
  width: 100%;
}

.conversation_user {
  position: relative;
  padding-left: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c_u_f_nm {
  font-weight: 600;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.c_u_f_nm a {
  text-decoration: none;
  color: #000000;
}

.c_dotdot {
  width: 40px;
  height: 40px;
  position: relative;
}

.c_set {
  position: relative;
  padding: 14px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
}

.c_set:hover {
  background-color: #e0e3eb;
}

.c_set svg {
  width: 20px;
  height: 20px;
  fill: #000000;
}

.cSetc {
  position: absolute;
  width: 100%;
  max-width: 220px;
  min-width: 220px;
  padding: 10px 0px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  right: 0px;
  top: 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  display: none;
}

.cSetc .i_post_menu_item_out {
  cursor: pointer;
}

.conversations_container {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  -ms-flex-preferred-size: 1;
  flex-basis: 1;
  overflow-x: hidden;
  position: relative;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.messages_container {
  -ms-flex-preferred-size: 0px;
  flex-basis: 0px;
  position: relative;
  max-width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.msg_wrapper {
  -ms-flex-preferred-size: 0px;
  flex-basis: 0px;
  position: relative;
  max-width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.message_send_form_wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 54px;
  flex-basis: 54px;
  border-top: 1px solid #e0e3eb;
  padding: 8px 0px;
}

.all_messages {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  bottom: 0px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-top: 15px;
}

.all_messages_container {
  position: relative;
  width: 100%;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.msg {
  position: relative;
  width: 100%;
  padding: 3px 20px;
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.msg_me {
  float: right;
  max-width: 500px;
  padding: 12px;
  background-color: rgb(0, 153, 255);
  color: #ffffff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -o-border-bottom-right-radius: 5px;
  -ms-border-top-right-radius: 5px;
  -moz-border-bottom-right-radius: 5px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  -webkit-border-top-left-radius: 30px;
  -o-border-bottom-left-radius: 30px;
  -ms-border-top-left-radius: 30px;
  -moz-border-bottom-left-radius: 30px;
  position: relative;
}

.msg_with_sticker {
  background-color: transparent !important;
}

.msg_friend {
  float: left;
  max-width: 500px;
  padding: 12px;
  background-color: #e4e6eb;
  color: #000000;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -o-border-bottom-left-radius: 5px;
  -ms-border-top-left-radius: 5px;
  -moz-border-bottom-left-radius: 5px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  -webkit-border-top-right-radius: 30px;
  -o-border-bottom-right-radius: 30px;
  -ms-border-top-right-radius: 30px;
  -moz-border-bottom-right-radius: 30px;
  position: relative;
}

.msg_with_gif {
  padding: 0px !important;
  background-color: transparent !important;
}

.msg_txt {
  display: inline-block;
  width: 100%;
  padding: 10px;
  word-break: break-word;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.story-reply-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 12px;
  margin: 2px 0 8px;
}

.msg_me .story-reply-card {
  background: rgba(255, 255, 255, 0.18);
}

.msg_friend .story-reply-card {
  background: rgba(0, 0, 0, 0.06);
}

.story-reply-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.msg_friend .story-reply-thumb {
  border-color: rgba(0, 0, 0, 0.1);
}

.story-reply-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1.2;
}

.story-reply-label {
  font-size: 12px;
  font-weight: 600;
  color: inherit;
}

.story-reply-unavailable {
  font-size: 11px;
  opacity: 0.7;
  color: inherit;
}

.msg_friend .msg_o_avatar {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border: 2px solid #ffffff;
  left: -10px;
  top: -10px;
  z-index: 1;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  overflow: hidden;
  background-color: #ffffff;
}

.msg_me .msg_o_avatar {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border: 2px solid #ffffff;
  right: -10px;
  top: -10px;
  z-index: 1;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  overflow: hidden;
  background-color: #ffffff;
}

.msg_me img,
.msg_friend img {
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.me_btns_cont {
  position: absolute;
  background-color: #ffffff;
  bottom: 0px;
  right: -10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  cursor: pointer;
}

.me_btns_cont:hover {
  background-color: #f0f2f5;
}

.me_btns_cont_icon {
  position: relative;
  padding: 4px;
}

.me_btns_cont_icon svg {
  width: 10px;
  height: 10px;
  fill: #000000;
}

.me_msg_plus {
  position: absolute;
  width: 200px;
  padding: 10px 0px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  top: 20px;
  right: 0px;
  z-index: 2;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  display: none;
}

.message_form_items {
  position: relative;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0px 2px;
  width: 100%;
}

.message_form_plus {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  cursor: pointer;
}

.message_form_plus:hover {
  background-color: #f0f2f5;
}

.message_pls {
  padding: 10px;
}

.message_pls svg {
  width: 20px;
  height: 20px;
  fill: #000000;
}

.message_send_text {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0px 3px;
}

.message_text_textarea {
  width: 100%;
  position: relative;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  background-color: #f0f2f5;
  padding-left: 10px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.message_text_textarea textarea {
  width: 100%;
  border: none;
  resize: none;
  outline: none;
  background-color: transparent;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 0px;
  margin: 0px;
  height: 34px;
  padding: 8px 10px;
}

.message_smiley {
  position: absolute;
  z-index: 5;
  right: 0px;
  bottom: 0px;
}

.message_smiley .message_form_smiley_plus {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  cursor: pointer;
}

.message_smiley .message_form_smiley_plus:hover {
  background-color: #e0e3eb;
}

.message_smiley .message_form_smiley_plus .message_pls {
  padding: 8px;
}

.Message_stickersContainer {
  position: relative;
  display: inline-block;
  width: 100%;
  right: 0px;
  top: 0px;
  height: 380px;
  z-index: 1;
}

.Message_stickers_wrapper {
  padding: 5px;
}

.Message_stickers_wrapper .Message_sticker {
  display: inline-block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  width: calc(25% - 5px);
  width: -o-calc(100% / 4 - 5px);
  width: -ms-calc(100% / 4 - 5px);
}

.Message_stickers_wrapper .Message_sticker img {
  position: relative;
  width: 100%;
}

.giphy_results_container_conversation {
  /* Prevent vertical gaps */
  line-height: 0;
  -webkit-column-count: 4;
  -webkit-column-gap: 0px;
  -moz-column-count: 4;
  -moz-column-gap: 0px;
  column-count: 4;
  column-gap: 0px;
  display: table-cell;
}

.giphy_results_container_conversation img {
  /* Just in case there are inline attributes */
  width: 99% !important;
  height: auto !important;
  margin: 1px;
  border-radius: 8px;
  cursor: pointer;
}

.nanos {
  padding: 0px 15px;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
  background-color: #ffffff;
}

.preLoadC {
  display: inline-block;
  padding: 15px;
  width: 100%;
}

.Message_stickers_wrapper .sticker {
  display: inline-block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  width: 80px;
  height: 80px;
}

.Message_stickers_wrapper .sticker img {
  position: relative;
  width: 100%;
}

.fl_btns {
  position: absolute;
  top: -65px;
  left: 0px;
  overflow: hidden;
}

.ch_fl_btns_container {
  position: relative;
  width: 100%;
  padding-left: 10px;
}

.ch_btn_item {
  padding: 15px;
  margin-right: 5px;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}

.cimage {
  display: none;
  opacity: 0;
}

.ch_btn_item:nth-child(1) {
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  -webkit-animation: slideInUp 0.1s ease-in-out 0.1s;
  animation: slideInUp 0.1s ease-in-out 0.1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #9f4ec8;
}

.ch_btn_item:nth-child(2) {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  -webkit-animation: slideInUp 0.15s ease-in-out 0.15s;
  animation: slideInUp 0.15s ease-in-out 0.15s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #da4f7a;
}

.ch_btn_item:nth-child(3) {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-animation: slideInUp 0.2s ease-in-out 0.2s;
  animation: slideInUp 0.2s ease-in-out 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #5f68c6;
}

.ch_btn_item label .ch_svg svg {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  fill: #ffffff;
}

.msg_txt .mStick {
  width: 80px;
  height: auto;
  display: block;
  position: relative;
}

.msg_txt img.mGifM {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 20px;
  -webkit-border-top-left-radius: 20px;
  -o-border-top-left-radius: 20px;
  -ms-border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -o-border-bottom-left-radius: 20px;
  -ms-border-bottom-left-radius: 20px;
  border-top-right-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -o-border-top-right-radius: 5px;
  -ms-border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -o-border-bottom-right-radius: 5px;
  -ms-border-bottom-right-radius: 5px;
}

.msg:last-child .msg_me .me_btns_cont .me_msg_plus {
  position: absolute;
  width: 200px;
  padding: 10px 0px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  top: -75px;
  right: 0px;
  z-index: 2;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  display: none;
}

.loading_messages {
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;
  padding: 15px;
}

.loading_wrapper {
  width: 100%;
  max-width: 80px;
  margin: 0px auto;
  background-color: #ffffff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.loading_messages .loading_wrapper .i_loading .dot-pulse {
  left: -9962px;
  top: 0px;
}

.seen_all {
  padding: 20px;
}

.nmore {
  color: #ffffff;
  background-color: #f65169;
  font-weight: 500;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  width: 100%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  max-width: 500px;
  margin: 0px auto;
  padding: 15px;
  text-align: center;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.i_uploaded_item_m {
  position: relative;
  float: left;
  width: calc(25% - 1px);
  width: -moz-calc(100%/4 - 1px);
  padding: 3px;
}

.mmi_i {
  background-color: transparent !important;
  padding: 0px !important;
  float: initial;
  margin-left: auto;
}

.msg .mmi_i .i_image_one .i_post_image_swip_wrapper:nth-child(1),
.msg .mmi_i .i_image_two .i_post_image_swip_wrapper:nth-child(1),
.msg .mmi_i .i_image_three .i_post_image_swip_wrapper:nth-child(1),
.msg .mmi_i .i_image_four .i_post_image_swip_wrapper:nth-child(1),
.msg .mmi_i .i_image_five .i_post_image_swip_wrapper:nth-child(1) {
  border-top-left-radius: 20px;
  -webkit-border-top-left-radius: 20px;
  -o-border-top-left-radius: 20px;
  -ms-border-top-left-radius: 20px;
}

.msg .mmi_i .i_image_one .i_post_image_swip_wrapper:nth-child(1),
.msg .mmi_i .i_image_two .i_post_image_swip_wrapper:nth-child(1),
.msg .mmi_i .i_image_three .i_post_image_swip_wrapper:nth-child(1) {
  border-bottom-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -o-border-bottom-left-radius: 20px;
  -ms-border-bottom-left-radius: 20px;
}

.msg .mmi_i .i_image_four .i_post_image_swip_wrapper:nth-child(2),
.msg .mmi_i .i_image_five .i_post_image_swip_wrapper:nth-child(2) {
  border-bottom-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -o-border-bottom-left-radius: 20px;
  -ms-border-bottom-left-radius: 20px;
}

.mmi_if {
  float: initial;
  padding: 0px !important;
  background-color: transparent !important;
}

.msg .mmi_if .i_image_one .i_post_image_swip_wrapper:nth-child(1),
.msg .mmi_if .i_image_two .i_post_image_swip_wrapper:nth-child(1),
.msg .mmi_if .i_image_three .i_post_image_swip_wrapper:nth-child(1),
.msg .mmi_if .i_image_four .i_post_image_swip_wrapper:nth-child(1),
.msg .mmi_if .i_image_five .i_post_image_swip_wrapper:nth-child(1) {
  border-top-right-radius: 20px;
  -webkit-border-top-right-radius: 20px;
  -o-border-top-right-radius: 20px;
  -ms-border-top-right-radius: 20px;
}

.msg .mmi_if .i_image_one .i_post_image_swip_wrapper:nth-child(1),
.msg .mmi_if .i_image_two .i_post_image_swip_wrapper:nth-child(1),
.msg .mmi_if .i_image_three .i_post_image_swip_wrapper:nth-child(1) {
  border-bottom-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -o-border-bottom-right-radius: 20px;
  -ms-border-bottom-right-radius: 20px;
}

.msg .mmi_if .i_image_four .i_post_image_swip_wrapper:nth-child(4),
.msg .mmi_if .i_image_five .i_post_image_swip_wrapper:nth-child(4) {
  border-bottom-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -o-border-bottom-right-radius: 20px;
  -ms-border-bottom-right-radius: 20px;
}

.msg_time_me {
  display: inline-block;
  width: 100%;
  padding: 2px;
  font-weight: 500;
  font-size: 12px;
  text-align: right;
}

.msg_time_fri {
  display: inline-block;
  width: 100%;
  padding: 2px;
  font-weight: 500;
  font-size: 12px;
}

.seenStatus {
  float: right;
}

.notSeen svg {
  width: 15px;
  height: 15px;
  fill: #858fad;
  margin-left: 5px;
}

.seen svg {
  width: 15px;
  height: 15px;
  fill: #f65169;
  margin-left: 5px;
}

.c_u_time {
  font-weight: 400;
  font-size: 13px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 4px;
}

.typingStyle {
  font-weight: 600;
  color: #f65169;
}

.i_message_not_icon {
  position: absolute;
  padding: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  background-color: #f65169;
  z-index: 1;
  bottom: -5px;
  right: -5px;
  border: 2px solid #ffffff;
}

.i_message_not_icon svg {
  width: 13px;
  height: 13px;
  fill: #ffffff;
}

#moreType {
  position: relative;
}

#moreType .loaderWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 6;
  left: 0px;
  top: 0px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

#moreType .loaderWrapper .loaderContainer {
  top: 100px;
}

.NotLoginYet {
  max-width: 1200px;
  margin: 0px auto;
}

.creators_wrapper {
  max-width: 1280px;
  margin: 0px auto;
  padding: 42px 18px 0;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 18px;
}

.creators_hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at left center,
      rgba(246, 81, 105, 0.09),
      transparent 24%
    ),
    linear-gradient(
      115deg,
      rgba(255, 249, 250, 0.96),
      rgba(247, 250, 255, 0.98)
    );
}

.creators_hero:before,
.creators_hero:after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.creators_hero:before {
  inset: auto auto -50px -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 81, 105, 0.1), transparent 72%);
}

.creators_hero:after {
  top: -18px;
  right: 28px;
  width: 120px;
  height: 120px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.54),
    rgba(255, 255, 255, 0.12)
  );
  -webkit-transform: rotate(14deg);
  transform: rotate(14deg);
  opacity: 0.72;
}

.creators_hero_kicker {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #f65169;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.creators_hero_kicker svg {
  width: 16px;
  height: 16px;
  fill: #f65169;
}

.creators_hero_content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.creators_hero_text {
  max-width: 760px;
}

.creators_hero_title {
  margin: 0 0 4px;
  color: #0f172a;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.creators_hero_subtitle {
  margin: 0;
  max-width: 620px;
  color: #526077;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.creators_hero_accent {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 9px;
  min-width: 112px;
  padding-right: 6px;
}

.creators_hero_accent_line {
  display: block;
  width: 56px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(246, 81, 105, 0),
    rgba(246, 81, 105, 0.46)
  );
}

.creators_hero_accent_dot {
  position: relative;
  display: block;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(246, 81, 105, 0.92),
    rgba(255, 155, 101, 0.9)
  );
}

.creators_hero_accent_dot-one {
  width: 8px;
  height: 8px;
}

.creators_hero_accent_dot-two {
  width: 12px;
  height: 12px;
  opacity: 0.78;
}

.creators_hero_accent_dot-three {
  width: 18px;
  height: 18px;
  opacity: 0.62;
}

.creators_menu_wrapper {
  display: inline-block;
  width: 100%;
  padding: 8px 10px 6px;
  position: relative;
}

.creators_menu_shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(30, 41, 59, 0.06);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 252, 0.96)
  );
  overflow: visible;
  position: relative;
}

.creators_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.creator_item {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -o-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background: transparent;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.creator_item:last-child {
  margin-right: 0px;
}

.creator_item:hover {
  background-color: rgba(15, 23, 42, 0.04);
}

.creator_item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: #6b7280;
  text-decoration: none;
  border-radius: inherit;
}

.creator_item a:hover {
  color: #6b7280;
}

.creator_item_label {
  white-space: nowrap;
}

.creator_item_caret {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12px;
  flex: 0 0 12px;
}

.creator_item_caret svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.active_pc {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.06),
    rgba(15, 23, 42, 0.03)
  );
  -webkit-box-shadow: inset 0 0 0 1px rgba(30, 41, 59, 0.08);
  box-shadow: inset 0 0 0 1px rgba(30, 41, 59, 0.08);
}

.active_pc a {
  color: #182235;
  font-weight: 700;
}

.creator_menu_more {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.creator_menu_more_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  background: rgba(248, 250, 252, 0.8);
  cursor: pointer;
  color: #4b5563;
  -webkit-transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.creator_menu_more_btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.creator_menu_more_btn:hover,
.creator_menu_more.open .creator_menu_more_btn {
  border-color: rgba(246, 81, 105, 0.18);
  background: rgba(255, 246, 247, 0.92);
  color: #f65169;
}

.creator_menu_more_dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 15;
  min-width: 240px;
  padding: 10px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  -webkit-box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.creator_menu_more.open .creator_menu_more_dropdown {
  display: block;
}

.creator_menu_more_dropdown .creator_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.creator_menu_more_dropdown .creator_item + .creator_item {
  margin-top: 6px;
}

.creator_menu_more_dropdown .creator_item a {
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 14px;
}

.creator_menu_more_dropdown .subcategoryname {
  left: calc(100% + 10px);
  top: 0;
}

.creators_container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 6px 10px;
}

.creator_pate_title {
  width: 100%;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  grid-column: 1 / -1;
  display: block;
}

.creators_list_container {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  justify-items: center;
  align-items: start;
}

.creators_list_container--suggested {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  justify-items: initial;
  gap: 18px;
}

.creator_list_box_wrp {
  padding: 0px;
  position: relative;
  width: 100%;
  height: 100%;
  float: none;
}

.creator_l_box {
  width: min(100%, 440px);
  max-width: 440px;
  position: relative;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -o-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  background-color: #ffffff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border: 1px solid #e8ecf5;
  -webkit-box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
  height: 100%;
}

.creator_card_cover {
  isolation: isolate;
}

.creator_l_cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  min-height: 190px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.creator_l_cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.creator_cover_layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 12px;
  gap: 8px;
}

.creator_card_tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.creator_category_badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2937;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(17, 24, 39, 0.05);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.creator_category_badge:hover {
  color: #f65169;
  background: #ffffff;
  border-color: rgba(246, 81, 105, 0.3);
}

.creator_category_badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.creator_l_avatar_name {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  margin-top: -36px;
  padding: 0px 18px 18px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.creator_identity_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -o-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  padding: 10px 12px;
}

.creator_avatar_container {
  position: relative;
  width: 110px;
  height: 110px;
}

.creator_avatar {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border: 4px solid #ffffff;
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
}

.creator_avatar img {
  width: 100%;
  height: 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;
}

.creator_identity {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.creator_nm {
  font-family: "Noto Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  text-align: left;
  padding: 0px;
  width: 100%;
}

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

.creator_nm a:hover {
  color: #f65169;
}

.creator_handle {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}

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

.creator_stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  gap: 6px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background: #f9fbff;
  border: 1px solid #e2e8f4;
  border-radius: 14px;
  padding: 6px 8px;
  overflow: visible;
}

.creator_stats .i_btn_item_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid #dce5f5;
  border-radius: 12px;
  padding: 6px 8px;
  font-weight: 700;
  color: #1f2937;
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.creator_stats_more {
  position: relative;
  min-width: 36px;
  justify-content: center;
}

.creator_stats_more_trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.creator_stats_dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 64px;
  background: #ffffff;
  border: 1px solid #e2e8f4;
  border-radius: 12px;
  padding: 10px;
  z-index: 4;
}

.creator_stats_more.open .creator_stats_dropdown,
.creator_stats_more:focus-within .creator_stats_dropdown {
  display: block;
}

.creator_stats_dropdown_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  font-weight: 700;
  color: #1f2937;
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.creator_stats_dropdown_icon svg {
  width: 14px;
  height: 14px;
  fill: #f65169;
}
.creator_stats .i_btn_item_box svg {
  fill: #f65169;
  width: 14px;
  height: 14px;
}

.creator_gallery {
  padding-top: 4px;
  border-top: 1px dashed #e8ecf5;
}

.creator_last_two_post {
  padding: 10px 4px 4px;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (max-width: 1024px) {
  .creator_last_two_post {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .creator_last_two_post {
    grid-template-columns: repeat(2, 1fr);
  }
}

.creator_last_post_item {
  position: relative;
  width: 100%;
}

.creator_last_post_item-box {
  position: relative;
  padding-top: 100%;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -o-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border: 1px solid #e8ecf5;
}

.creator_last_post_item-box--text {
  background: linear-gradient(135deg, #fce3f0, #ffe9d6);
  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;
}

.creator_text_tile {
  position: absolute;
  inset: 0;
  padding: 10px;
  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;
  gap: 6px;
  color: #2d2d2d;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.45)
  );
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}

.creator_text_tile_badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.creator_text_tile_snippet {
  font-size: 12px;
  line-height: 1.4;
  color: #3a3a3a;
  max-height: 1.6em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creator_last_post_item-img {
  position: absolute;
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.creator_last_post_item a {
  position: absolute;
  inset: 0;
  display: block;
}

.creator_last_post_item-box
  a
  .onlySubsSuggestionWrapper
  .onlySubsSuggestion_icon {
  margin: 0px auto;
  border: 1px solid #f65169;
  background: rgba(246, 81, 105, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  padding: 10px;
}

.creator_last_post_item-box
  a
  .onlySubsSuggestionWrapper
  .onlySubsSuggestion_icon
  svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.creators_container .creator_list_box_wrp {
  height: auto;
}

.creators_list_container--suggested .creator_list_box_wrp {
  width: min(100%, 390px);
  max-width: 352px;
  padding: 0;
  float: none;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 390px;
  flex: 0 1 390px;
}

.creators_container .creator_card--compact {
  width: min(100%, 390px);
  max-width: 352px;
  min-height: 100%;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff);
}

.creators_container .creator_card--compact:hover {
  transform: translateY(-2px);
}

.creators_container .creator_card--compact .creator_l_cover {
  height: 104px;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.creators_container .creator_card--compact .creator_l_cover:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      140px 105px at 82% 0%,
      rgba(250, 180, 41, 0.2),
      transparent 68%
    ),
    radial-gradient(
      150px 110px at 0% 0%,
      rgba(148, 163, 184, 0.18),
      transparent 72%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.32),
      rgba(248, 250, 252, 0.04)
    );
  opacity: 0.38;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.creators_container .creator_card--compact:hover .creator_l_cover:before {
  opacity: 0.72;
}

.creators_container .creator_card--compact .creator_cover_layer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  padding: 12px;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.18),
    rgba(15, 23, 42, 0.04) 42%,
    rgba(15, 23, 42, 0.38)
  );
  position: relative;
  z-index: 1;
}

.creators_container .creator_card--compact .creator_card_tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: "Noto Sans", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creators_container .creator_card_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 16px;
  margin-top: -20px;
}

.creators_container .creator_card--compact .creator_identity_row--compact {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
}

.creators_container .creator_card--compact .creator_avatar_container {
  width: 64px;
  height: 64px;
  margin: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 64px;
  flex: 0 0 64px;
}

.creators_container .creator_card--compact .creator_avatar {
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.96);
  background-color: #ffffff;
  -webkit-box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.creators_container .creator_card--compact .creator_identity {
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.creators_container .creator_card--compact .creator_handle {
  width: 100%;
  padding: 0;
  text-align: left;
  color: #111827;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.creators_container .creator_card--compact .creator_handle a,
.creators_container .creator_card--compact .creator_nm a {
  color: inherit;
  text-decoration: none;
}

.creators_container .creator_card--compact .creator_nm {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 2px 0 0;
  text-align: left;
  color: #5b6577;
  font-size: 12px;
  font-weight: 600;
}

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

.creators_container .creator_identity_verified svg {
  width: 14px;
  height: 14px;
  fill: #f65169;
}

.creators_container .creator_relation_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 0;
}

.creators_container .creator_relation_item {
  width: 100%;
  padding: 0;
  border-radius: 13px;
  -webkit-border-radius: 13px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  background: rgba(248, 250, 252, 0.8);
}

.creators_container .creator_relation_item-full {
  grid-column: 1 / -1;
}

.creators_container .creator_relation_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-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: 8px;
  width: 100%;
  min-height: 40px;
  padding: 0 10px 0 9px;
  text-decoration: none;
  color: #162033;
  white-space: nowrap;
}

.creators_container .creator_relation_icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  background: rgba(15, 23, 42, 0.05);
}

.creators_container .creator_relation_icon svg {
  width: 13px;
  height: 13px;
  fill: #0f172a;
  margin: 0;
}

.creators_container .creator_relation_copy {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-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: 8px;
  width: 100%;
  min-width: 0;
}

.creators_container .creator_relation_label {
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  color: #4b5563;
  letter-spacing: 0.01em;
}

.creators_container .creator_relation_value {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: #111827;
}

.creators_container .creator_relation_item:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(246, 81, 105, 0.16);
}

.creators_container .creator_relation_item:hover .creator_relation_label,
.creators_container .creator_relation_item:hover .creator_relation_value,
.creators_container .creator_relation_item:hover .creator_relation_icon svg {
  color: #f65169;
  fill: #f65169;
}

.creators_container .creator_action_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.creators_container .creator_action_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.creators_container .creator_action_btn svg {
  width: 14px;
  height: 14px;
}

.creators_container .creator_action_btn-follow,
.creators_container .creator_action_btn-subscribe {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 160px;
  flex: 1 1 160px;
}

.no_content {
  padding: 26px 0px;
  text-transform: uppercase;
  width: 100%;
  display: block;
  grid-column: 1 / -1;
  font-weight: 700;
  font-size: 13px;
  color: #6b7280;
  background-color: #f0f2f5;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -o-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  text-align: center;
}

.no_creator_f_wrap {
  width: 100%;
  padding: 50px 0px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.no_c_icon {
  position: relative;
  width: 100%;
  max-width: 130px;
  overflow: hidden;
}

.no_c_icon svg {
  width: 130px;
  height: 130px;
  fill: #858fad;
}

.n_c_t {
  width: 100%;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #858fad;
  cursor: pointer;
  padding-bottom: 15px;
  text-transform: uppercase;
  text-align: center;
  padding-top: 35px;
}

.creators_list_container .i_loading {
  display: inline-block;
  width: 100%;
}

.creator_nm a {
  text-decoration: none;
  color: #444444;
}

.creator_nm a:hover {
  color: #f65169;
}

.creator_l_box:hover {
  -webkit-box-shadow: 0 16px 34px rgba(17, 24, 39, 0.14);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.14);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.chart_wrapper {
  position: relative;
  width: 100%;
}

.chart_row {
  width: 100%;
  margin-bottom: 20px;
}

.chart_row_box {
  display: inline-block;
  width: 33.333%;
  padding: 10px;
}

.chart_row_box:first-child {
  padding-left: 0px;
}

.chart_row_box:last-child {
  padding-right: 0px;
}

.chart_row_box_item {
  position: relative;
  width: 100%;
  padding: 20px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
}

.c1 {
  background-color: #f65169;
}

.c2 {
  background-color: #fab429;
}

.c3 {
  background-color: #000000;
}

.chart_row_box_title {
  font-weight: 600;
  font-size: 13px;
}

.chart_row_box_title svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  margin-right: 10px;
}

.chart_row_box_sum {
  font-weight: 700;
  font-size: 30px;
  padding-top: 15px;
}

.chart_question {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  cursor: pointer;
}

.chart_question_icon {
  position: relative;
  padding: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
}

.chart_question_icon svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

.chart_question_icon:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.qb {
  position: absolute;
  z-index: 5;
  top: 35px;
  right: -27px;
  display: none;
}

.answer_bubble {
  position: relative;
  background: #ffffff;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  width: 100%;
  max-width: 280px;
  min-width: 280px;
  border-radius: 10px;
  padding: 0px;
  text-align: left;
  padding: 10px 15px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.answer_bubble:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  z-index: 1;
  border-style: solid;
  border-color: #ffffff transparent;
  border-width: 0 10px 10px;
  top: -10px;
  left: 84%;
  margin-left: -5px;
}

.chart_question:hover .qb {
  display: block;
}

.wmore {
  display: inline-block;
  width: 100%;
  padding-top: 5px;
  font-weight: 500;
  font-size: 13px;
  text-align: right;
}

.wmore svg {
  width: 9px;
  height: 10px;
  fill: #ffffff;
  margin-left: 2px;
}

.wmore a {
  text-decoration: none;
  color: #ffffff;
}

.wmore a:hover {
  text-decoration: underline;
}

.not_yet {
  position: relative;
  width: 100%;
  padding: 100px 0px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.i_postSavedHeader {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 15px;
  border-radius: 8px;
  background-color: #ffffff;
  margin-bottom: 25px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.isave_svg svg {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.i_postHashHeader {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 300;
  color: #000000;
}

.lp_sum {
  font-weight: 500;
  font-size: 14px;
  color: #444444;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 0px 5px;
}

.lc_sum_container {
  position: relative;
  width: 100%;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.comnts {
  padding: 5px 10px;
  background-color: #f0f2f5;
  display: initial;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
}

.comnts:hover {
  background-color: #e4e6eb;
}

.point_box_BG {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  overflow: hidden;
  left: 0px;
  bottom: 0px;
}

.pbg {
  position: relative;
  width: 100%;
  height: 100%;
}

.pbg svg {
  width: 80px;
  height: 80px;
  fill: rgba(0, 0, 0, 0.4);
}

.point_pr {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.point_pr svg {
  width: 25px;
  height: 25px;
  color: #f65169;
  margin-right: 10px;
}

.point_pr a {
  color: #000000 !important;
  text-decoration: none;
}

.crnt_points {
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
}

.point_pr:hover a {
  color: #f65169 !important;
}

.point_pr:hover a svg {
  fill: #f65169;
}

.textStyle {
  font-weight: 500;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
}

.mobile_footer_fixed_menu_container {
  display: none;
  width: 100%;
  position: fixed;
  padding: 8px 10px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--dizzy-theme-panel-background, #ffffff);
  border-top: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1));
  box-shadow: none;
  z-index: 15;
  box-sizing: border-box;
}

@media screen and (max-width: 700px) {
  .mobile_footer_fixed_menu_container {
    display: block;
  }
}

.mobile_fixed_box_wrapper {
  width: 100%;
  max-width: 460px;
  min-height: 48px;
  margin: 0px auto;
  position: relative;
  gap: 6px;
}

.mobile_box {
  position: relative;
  width: 100%;
  min-width: 0;
}

.i_m_box_item {
  padding: 0;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -o-border-radius: 14px;
  -ms-border-radius: 14px;
  width: 42px;
  height: 42px;
  margin: 0px auto;
  color: var(--dizzy-theme-menu-icon, #858fad);
  background: transparent;
}

.i_m_box_item:hover,
.mobile_box.active_p .i_m_box_item,
.mobile_box.active .i_m_box_item,
.mobile_box.is-active .i_m_box_item,
.mobile_fixed_box_wrapper:not(:has(.mobile_box.active_p, .mobile_box.active, .mobile_box.is-active))
  .mobile_box:first-child
  .i_m_box_item {
  background-color: var(--dizzy-theme-hover-surface, #eef2f8);
  color: var(--dizzy-theme-brand-primary, #f65169);
}

.i_m_box_item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.i_m_box_item svg * {
  fill: currentColor;
}

.fms {
  display: none;
}

.commentFooterResize {
  position: relative;
  top: 0px;
}

.pendingTitle {
  font-weight: 700 !important;
  font-size: 23px !important;
}

.verirication_timing_bg {
  height: 203px;
  background-image: url("img/time_management.svg");
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: center;
}

.verification_approve_bg {
  height: 203px;
  background-image: url("img/approved.svg");
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: center;
}

.verification_reject_bg {
  height: 203px;
  background-image: url("img/notify.svg");
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: center;
}

.settings_mobile_ope_menu {
  display: none;
}

.settingsMenuDisplay {
  display: block !important;
}

.cList {
  position: relative;
  padding: 5px;
  margin-right: 10px;
  cursor: pointer;
  display: none;
}

.cList svg {
  width: 20px;
  height: 20px;
  fill: #000000;
}

.blocked_not {
  background-color: #e0e3eb;
}

.blocked_not .tabing_non_justify .message_form_items {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.blocked_not .tabing_non_justify .message_form_items a {
  font-weight: 600;
  color: #f65169;
  text-transform: uppercase;
  text-decoration: none;
}

.talking {
  background-color: #f0f1f5;
}

.chat_users_wrapper_results {
  min-height: 0;
  -webkit-perspective-origin: right top;
  perspective-origin: right top;
  overflow-x: hidden;
  scrollbar-width: none;
  overflow-x: hidden;
  position: relative;
  -webkit-perspective: 1px;
  perspective: 1px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform, scroll-position;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 15px 10px;
}

.chat_users_wrapper_results a {
  text-decoration: none;
  color: #000000;
}

.no_not_here {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
}

.no_not_here svg {
  width: 50px;
  height: 50px;
  fill: #b3b9cc;
}

.i_sub_flw .unblock {
  margin: 0px auto;
  padding: 8px 12px;
  text-align: center;
  color: #000000;
  background-color: #f0f2f5;
  border: 1px solid #f0f2f5;
  font-weight: 400;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  cursor: pointer;
}

.i_sub_flw .unblock:hover {
  background-color: #b3b9cc;
  border: 1px solid #b3b9cc;
}

.i_preference {
  font-weight: 600;
  font-size: 18px;
}

.i_preference svg {
  width: 25px;
  height: 20px;
  fill: #000000;
  margin-right: 10px;
  margin-left: 0px;
}

.i_pref {
  padding-bottom: 0px;
  padding-top: 16px;
}

.pref_top {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #f0f2f5;
}

.maintenance_container {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #f0f2f5;
}

.maintenance_items {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
}

.maintenance_img {
  width: 100%;
  max-width: 500px;
  margin: 0px auto;
  position: relative;
  display: block;
}

.maintenance_img svg {
  width: 100%;
}

.maintenance_not {
  width: 100%;
  padding: 40px 0px;
}

.maintenance_title {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  text-align: center;
}

.maintenance_desc {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #444444;
  margin-top: 25px;
  text-align: center;
}

.contact_us_form_container {
  width: 100%;
  max-width: 600px;
  margin: 0px auto;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  padding: 15px;
}

.i_helper_title {
  padding: 5px 35px;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
}

.i_register_box_ {
  padding: 2rem 1rem;
}

.i_direct_register {
  padding: 20px 0px;
}
.i_register_box_
  .i_direct_register
  form
  > .i_settings_item_title_for.flex_:first-of-type {
  width: 100%;
  padding-left: 0;
  margin-left: 0;
}
.i_register_box_
  .i_direct_register
  form
  > .i_settings_item_title_for.flex_:first-of-type
  .flexBox {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  padding: 0;
}
.i_register_box_
  .i_direct_register
  form
  > .i_settings_item_title_for.flex_:first-of-type
  .youare {
  min-width: 0;
  width: 100%;
}

/* Register + settings gender and intent option rows */
.gender-options-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 0;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border: 1px solid #e4eaf4;
  border-radius: 0px;
  background-color: #f7f9fc;
}
.gender-options-row .flexBox {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(33.333% - 8px);
  flex: 1 1 calc(33.333% - 8px);
  width: auto;
  min-width: 145px;
  max-width: 210px;
  padding: 0;
  margin-bottom: 0;
}
.gender-options-row .youare {
  width: 100%;
}
.gender-options-row .youare span {
  width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  border-color: #d2dceb;
  border-radius: 11px;
  background-color: #ffffff;
  justify-content: center;
  gap: 8px;
  line-height: 1.15;
  letter-spacing: 0.2px;
  font-size: 13px;
  font-weight: 600;
  color: #3f495e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gender-options-row .youare span svg {
  width: 18px;
  height: 18px;
  margin-right: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18px;
  flex: 0 0 18px;
}
.gender-options-row .youare:hover span {
  border-color: #b8c8e3;
  background-color: #ffffff;
}
.gender-options-row .youare input:checked ~ span {
  border-color: #2b6ce0;
  color: #1f5cc2;
  background-color: #eef4ff;
  -webkit-box-shadow: 0 6px 16px rgba(39, 112, 221, 0.14);
  box-shadow: 0 6px 16px rgba(39, 112, 221, 0.14);
  transform: translateY(-1px);
}
.gender-options-row .youare input:checked ~ span svg {
  fill: #2770dd;
}

.gender-options-row a {
  margin-bottom: 0;
}

.i_re_box {
  width: 50%;
  padding: 0px 10px;
}

.register_warning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  margin-bottom: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #d81b60;
  font-weight: 300;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  margin-left: 20px;
  margin-right: 20px;
  display: none;
}

.aura_register_page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(246, 81, 105, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(79, 130, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #f5f7fb 0%, #eef3f9 100%);
}

.aura_register_page .aura_register_wrapper {
  flex: 1 0 auto;
  display: block;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 34px 20px 40px;
}

.aura_register_page > .footer_container_out {
  flex-shrink: 0;
  margin-top: 32px;
}

.aura_register_page .bCreatorBg::before {
  display: none;
  background: none;
}

.aura_register_page .i_become_creator_container.aura_register_page_shell {
  max-width: 1440px;
  margin-top: 0;
  border-radius: 0;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.aura_register_page_shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.aura_register_shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, 620px);
  gap: 30px;
  align-items: start;
}

.aura_register_story,
.aura_register_form_column {
  min-width: 0;
}

.aura_register_story_card {
  position: relative;
  min-height: 0;
  padding: 40px;
  border: 1px solid rgba(222, 230, 242, 0.95);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(246, 81, 105, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(79, 130, 255, 0.12), transparent 22%),
    linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 28px 80px rgba(57, 74, 113, 0.12);
  overflow: hidden;
}

.aura_register_story_card::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 180, 41, 0.18) 0%, transparent 72%);
  pointer-events: none;
}

.aura_register_story_badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #dce5f4;
  background: rgba(255, 255, 255, 0.9);
  color: #f65169;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.aura_register_story_title {
  margin: 20px 0 0;
  font-size: 58px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #172033;
}

.aura_register_story_text {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.75;
  color: #61718b;
}

.aura_register_story_stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.aura_register_story_stat {
  padding: 20px 18px;
  border: 1px solid #e1e8f5;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 36px rgba(78, 97, 140, 0.08);
}

.aura_register_story_stat strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #172033;
}

.aura_register_story_stat span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: #66758f;
}

.aura_register_story_points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.aura_register_story_point {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
  color: #44526c;
}

.aura_register_story_point::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f65169 0%, #fab429 100%);
  box-shadow: 0 0 0 6px rgba(246, 81, 105, 0.1);
}

.aura_register_story_showcase {
  margin-top: 28px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid #e3e9f4;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 36px rgba(78, 97, 140, 0.08);
}

.aura_register_story_showcase_title {
  font-size: 18px;
  font-weight: 800;
  color: #172033;
}

.aura_register_story_showcase_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.aura_register_story_showcase_item {
  padding: 16px 14px;
  border-radius: 20px;
  border: 1px solid #e7edf5;
  background: #ffffff;
}

.aura_register_story_showcase_item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f65169 0%, #fab429 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.aura_register_story_showcase_item strong {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 800;
  color: #172033;
}

.aura_register_story_showcase_item p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: #66758f;
}

.aura_register_referral {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(23, 32, 51, 0.05);
  border: 1px solid rgba(23, 32, 51, 0.08);
}

.aura_register_referral_label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #70809b;
}

.aura_register_referral_name {
  font-size: 18px;
  font-weight: 800;
  color: #172033;
}

.aura_register_form_panel {
  height: 100%;
  border: 1px solid #dde5f1;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 28px 80px rgba(57, 74, 113, 0.12);
  overflow: hidden;
}

.aura_register_form_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 34px 22px;
  border-bottom: 1px solid #e7edf5;
}

.aura_register_form_header .i_login_box_header {
  padding: 0;
}

.aura_register_form_header .i_login_box_wellcome_icon {
  width: 78px;
  min-width: 78px;
  height: 78px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  border-radius: 24px;
  border: 1px solid #e5ebf5;
  background: linear-gradient(145deg, #ffffff 0%, #edf3ff 100%);
  box-shadow: 0 14px 28px rgba(94, 115, 154, 0.12);
}

.aura_register_form_header .i_login_box_wellcome_icon svg {
  width: 34px;
  height: 34px;
}

.aura_register_form_header .i_welcome_back {
  padding: 0 0 0 16px;
}

.aura_register_form_header .i_lBack {
  font-size: 32px;
  line-height: 1.05;
  font-weight: 900;
  color: #172033;
}

.aura_register_form_header .i_lnot {
  padding-top: 8px;
  font-size: 14px;
  color: #66758f;
}

.aura_register_form_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.aura_register_meta_chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #dde6f3;
  background: #ffffff;
  color: #50607b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aura_register_social_login .login-title {
  color: #657690;
}

.aura_register_social_login .login-title::before {
  background: #edf2f8;
}

.aura_register_social_login .login-title > span {
  background: #ffffff;
}

.aura_register_warns {
  padding: 0 34px;
}

.aura_register_warns .i_error {
  margin-top: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97360 0%, #f65169 100%);
  box-shadow: 0 14px 28px rgba(246, 81, 105, 0.18);
}

.aura_register_box {
  padding: 24px 34px 34px;
}

.aura_register_section_title {
  padding: 0;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #50607b;
}

.aura_register_option_row {
  margin-top: 0;
  margin-bottom: 22px;
  padding: 10px;
  border: 1px solid #e4eaf4;
  border-radius: 22px;
  background: #f7f9fc;
}

.aura_register_option_row .flexBox {
  max-width: none;
}

.aura_register_field_grid .extra_style {
  margin: 0 -12px;
}

.aura_register_field_grid .i_re_box {
  padding: 0 12px;
  margin-bottom: 18px;
}

.aura_register_box .i_settings_item_title_extra_with {
  padding: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #50607b;
}

.aura_register_box .i_settings_item_title_for_style {
  padding: 0;
}

.aura_register_box .flnm.min_with {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid #dce5f1;
  background: #f7f9fc;
  color: #172033;
  box-shadow: none;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.aura_register_box .flnm.min_with:focus {
  border-color: rgba(246, 81, 105, 0.45);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(246, 81, 105, 0.12);
}

.aura_register_terms_row {
  margin: 2px 0 0;
}

.aura_register_terms_row .certification_file_form {
  width: 100%;
}

.aura_register_terms_row .certification_file_box {
  width: 100%;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid #e5ebf5;
  background: rgba(255, 255, 255, 0.78);
  color: #5d6d87;
  font-size: 13px;
  line-height: 1.75;
}

.aura_register_box .register_warning {
  margin: 12px 0 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #ffd7de;
  background: #fff3f5;
  color: #b4233f;
  font-size: 13px;
  font-weight: 700;
}

.aura_register_submit_group {
  padding: 8px 0 0;
  margin: 0;
}

.aura_register_submit_group .i_login_button {
  margin-top: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #f65169 0%, #fab429 100%);
  box-shadow: 0 14px 24px rgba(246, 81, 105, 0.18);
}

.aura_register_submit_group .i_login_button button {
  min-height: 48px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.aura_register_signin_note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 18px;
  color: #66758f;
  font-size: 14px;
  font-weight: 600;
}

.aura_register_signin_note a {
  color: #172033;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.aura_register_signin_note a:hover {
  color: #f65169;
}

.aura_register_disabled_shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 48px 32px;
  border: 1px solid #dfe6f3;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 28px 80px rgba(57, 74, 113, 0.1);
}

.aura_register_page .header .i_header_right {
  gap: 8px;
}

.aura_register_page .header .i_login,
.aura_register_page .header .i_singup,
.aura_register_page .header .i_language {
  height: 40px;
  border-radius: 16px;
}

.aura_register_page .header .i_login {
  padding: 0 16px;
  border: 1px solid #dfe5f1;
  background: rgba(255, 255, 255, 0.92);
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(82, 92, 122, 0.08);
}

.aura_register_page .header .i_login:hover {
  background: #ffffff;
  color: #172033;
  border-color: #d2dae9;
  box-shadow: 0 14px 24px rgba(82, 92, 122, 0.12);
}

.aura_register_page .header .i_singup {
  padding: 0 18px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(246, 81, 105, 0.2);
}

.aura_register_page .header .i_singup:hover {
  box-shadow: 0 16px 28px rgba(246, 81, 105, 0.24);
}

.aura_register_page .header .i_language {
  width: 40px;
  border: 1px solid #dfe5f1;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 18px rgba(82, 92, 122, 0.08);
}

.aura_register_page .header .i_language svg {
  width: 18px;
  height: 18px;
  fill: #51607b;
}

.aura_register_page .header .i_language:hover {
  background: #ffffff;
  box-shadow: 0 14px 24px rgba(82, 92, 122, 0.12);
}

@media screen and (max-width: 1220px) {
  .aura_register_shell {
    grid-template-columns: 1fr;
  }

  .aura_register_story_title {
    font-size: 48px;
  }

  .aura_register_story_showcase_grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 940px) {
  .aura_register_page .aura_register_wrapper {
    padding: 22px 14px 32px;
  }


.aura_register_story_card,
.aura_register_form_panel {
  border-radius: 28px;
}

  .aura_register_story_card,
  .aura_register_form_header,
  .aura_register_box,
  .aura_register_warns {
    padding-left: 24px;
    padding-right: 24px;
  }

  .aura_register_story_stats {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 680px) {
  .aura_register_story_title {
    font-size: 38px;
  }

  .aura_register_form_header {
    flex-direction: column;
  }

  .aura_register_form_meta {
    justify-content: flex-start;
  }

  .aura_register_field_grid .extra_style {
    margin: 0;
    display: block;
  }

  .aura_register_field_grid .i_re_box {
    width: 100%;
    padding: 0;
  }

  .aura_register_option_row .flexBox {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.register_disabled {
  font-weight: 500;
  font-size: 20px;
  color: #2770dd;
  text-align: center;
  padding: 30px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.register_disabled svg {
  width: 100px;
  height: 100px;
  fill: #f65169;
  margin-bottom: 30px;
}

.payment_successfully {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  text-align: center;
}

.payment_successfully svg {
  width: 150px;
  height: 150px;
  fill: #525c7a;
}

.payment_not {
  font-weight: 600;
  font-size: 20px;
  color: #444444;
  padding-top: 30px;
}

.payment_success_page {
  display: flex;
  justify-content: center;
  padding: 32px 20px 56px;
}

.payment_success_page .payment_success_page_shell {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 40px 32px 32px;
  border: 1px solid #e6ecf5;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 164, 67, 0.12), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.payment_success_page .payment_success_page_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 32px;
  background: linear-gradient(135deg, #eef4ff 0%, #fff6e8 100%);
  box-shadow: inset 0 0 0 1px rgba(203, 213, 225, 0.45);
}

.payment_success_page .payment_success_page_icon svg {
  width: 72px;
  height: 72px;
  fill: #445072;
}

.payment_success_page .payment_success_page_title {
  padding-top: 0;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 800;
  color: #1e293b;
}

.payment_success_page .payment_success_page_desc {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #667085;
}

.payment_success_page .payment_success_page_summary {
  width: min(100%, 520px);
  margin: 28px auto 0;
  padding: 22px;
  border: 1px solid #e6ecf5;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.payment_success_page .payment_success_page_summary_title {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #667085;
}

.payment_success_page .payment_success_page_summary_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.5;
}

.payment_success_page .payment_success_page_summary_row + .payment_success_page_summary_row {
  border-top: 1px solid #edf2f7;
}

.payment_success_page .payment_success_page_summary_label {
  color: #667085;
  font-weight: 600;
}

.payment_success_page .payment_success_page_summary_value {
  color: #1e293b;
  font-weight: 700;
  text-align: right;
}

.payment_success_page .payment_success_page_invoice_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  margin: 28px auto 0;
  padding: 0 22px;
  border: 1px solid #1d4ed8;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
  box-shadow: 0 16px 34px rgba(29, 78, 216, 0.2);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.payment_success_page .payment_success_page_invoice_btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-right: 0;
}

@media (max-width: 768px) {
  .payment_success_page {
    padding: 20px 12px 36px;
  }

  .payment_success_page .payment_success_page_shell {
    padding: 28px 18px 22px;
    border-radius: 24px;
  }

  .payment_success_page .payment_success_page_icon {
    width: 96px;
    height: 96px;
    margin-bottom: 20px;
    border-radius: 24px;
  }

  .payment_success_page .payment_success_page_icon svg {
    width: 56px;
    height: 56px;
  }

  .payment_success_page .payment_success_page_title {
    font-size: 26px;
  }

  .payment_success_page .payment_success_page_desc {
    font-size: 15px;
  }

  .payment_success_page .payment_success_page_summary {
    width: 100%;
    padding: 18px;
    border-radius: 20px;
  }

  .payment_success_page .payment_success_page_summary_row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .payment_success_page .payment_success_page_summary_value {
    text-align: left;
  }

  .payment_success_page .payment_success_page_invoice_btn {
    width: 100%;
  }
}

.warning_success {
  font-weight: 600;
  font-size: 13px;
  color: #f65169;
  display: none;
}

/* GDPR Cookie dialog */
.gdprcookie {
  position: fixed;
  color: #000000;
  font-size: 0.8em;
  line-height: 1.5em;
  right: 0rem;
  bottom: 0rem;
  width: 100%;
  max-width: 100%;
  padding: 1rem;
  background-color: #ffffff;
  z-index: 999999;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.gdprcookie h1,
.gdprcookie h2 {
  font-size: 1.2em;
  margin-bottom: 0.5rem;
}

.gdprcookie h2 {
  font-size: 1.2em;
}

.gdprcookie a {
  color: inherit;
}

/* GDPR Cookie buttons */
.gdprcookie-buttons {
  text-align: center;
}

.gdprcookie-buttons button {
  color: #ffffff;
  font-family: inherit;
  font-size: 1em;
  padding: 10px 15px;
  border: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  margin: 0 0.5rem;
  background: #000000;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.gdprcookie-buttons button:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.gdprcookie-buttons button:disabled {
  color: #65676b;
  background-color: #868dac;
}

/* GDPR Cookie types */
.gdprcookie-types ul {
  overflow: hidden;
  padding: 0;
  margin: 0 0 1rem;
}

.gdprcookie-types li {
  display: block;
  list-style: none;
  float: left;
  width: 50%;
  padding: 0;
  margin: 0;
}

.gdprcookie-types input[type="checkbox"] {
  margin-right: 0.25rem;
}

.i_one a {
  text-decoration: none;
  color: #000000;
}

/*Live Streamin Feature*/
.camList {
  position: absolute;
  width: 100%;
  min-width: 230px;
  margin-right: 0px;
  background-color: #ffffff;
  top: 46px;
  right: 0px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 15px 0px;
  display: none;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.camList a {
  width: 100%;
  display: inline-block;
  color: #000000;
  font-weight: 500;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 10px 15px;
  cursor: pointer;
  text-decoration: none;
}

.camList a:hover {
  background-color: #e0e3eb;
}

.camListOpen {
  display: block !important;
}

.camera_choose {
  position: absolute;
  padding: 10px;
  top: 50px;
  z-index: 1;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
}

.camera_choose svg {
  width: 25px;
  height: 25px;
  fill: #ffffff;
}

.camera_close {
  position: absolute;
  padding: 10px;
  top: 10px;
  z-index: 1;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
}

.camera_close svg {
  width: 15px;
  height: 15px;
  fill: #ffffff;
}

.live_stream_list {
  padding: 15px 0px;
  font-size: 13px;
}

.live_title {
  font-weight: 600;
  text-transform: uppercase;
  color: #65676b;
  padding-bottom: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
}

.btest .live_title {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  padding-bottom: 0px;
}

.btest .live_item_cont .live_item {
  width: 100%;
  padding: 0px 10px;
  cursor: pointer;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btest .live_item_cont .live_item:hover {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  background-color: #e0e3eb;
}

.btest .live_item_cont .new_s_one {
  font-size: 12px;
}

.btest .live_item_cont {
  padding-bottom: 0px;
}

.live_pay {
  font-weight: 300;
  color: #868dac;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.live_streams_list {
  width: 100%;
  padding: 15px 0px;
}

.live_item_cont {
  float: left;
  width: 100%;
  padding: 10px;
  position: relative;
}

.live_item_cont:nth-child(1) {
  margin-right: 15px;
  padding-left: 0px;
}

.live_item_cont:nth-child(2) {
  padding-right: 0px;
}

.live_item {
  width: 100%;
  padding: 5px 10px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.live_item:hover {
  background-color: #f9f9fb;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.live_item_cont.scheduledLive .live_item {
  background: linear-gradient(135deg, #eef2ff 0%, #ffffff 70%);
  border: 1px solid #c7d2fe;
  -webkit-box-shadow: 0 12px 22px rgba(79, 70, 229, 0.15);
  box-shadow: 0 12px 22px rgba(79, 70, 229, 0.15);
}

.live_item_cont.scheduledLive .live_item:hover {
  background: linear-gradient(135deg, #e0e7ff 0%, #ffffff 70%);
}

.live_item_cont.scheduledLive .live_title {
  color: #65676b;
}

.live_item_cont.scheduledLive .live_title svg,
.live_item_cont.scheduledLive .live_title svg path {
  fill: currentColor;
}

.live_item_cont.scheduledLive .live_title svg {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  flex-shrink: 0;
}

.btest .live_item_cont.scheduledLive .live_item {
  padding: 10px 15px;
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btest .live_item_cont.scheduledLive .live_item:hover {
  background-color: #e0e3eb;
}

.btest .live_item_cont.scheduledLive .live_title {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #444444;
  text-transform: none;
  letter-spacing: 0;
  padding-bottom: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btest .live_item_cont.scheduledLive .live_title svg {
  width: 23px;
  height: 23px;
  margin-right: 10px;
  fill: #b3b9cc;
}

.btest .live_item_cont.scheduledLive .live_item:hover .live_title svg,
.btest .live_item_cont.scheduledLive .live_item:hover .live_title svg path {
  fill: #f65169;
}

.btest .live_item_cont.scheduledLive .live_item {
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.live_title svg,
.live_title_page svg {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}

.new_s_one {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px;
  padding-right: 16px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  margin-bottom: 8px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.new_s_one:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.new_s_first {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
}

.new_s_second {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
}

.alignItem {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.new_s_one svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  margin-right: 8px;
}

.i_live_c_item {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.i_live_c_item .flnm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px 25px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  outline: none;
  border: none;
  background-color: #f0f1f5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 80%;
}

.i_live_c_item .live_notify_audience {
  display: block;
  padding: 15px 45px 15px 25px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  outline: none;
  border: none;
  background-color: #f0f1f5;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  width: 80%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6f7280 50%),
    linear-gradient(135deg, #6f7280 50%, transparent 50%),
    linear-gradient(to right, #d5d9e2, #d5d9e2);
  background-position:
    calc(100% - 22px) calc(50% - 4px),
    calc(100% - 16px) calc(50% - 4px),
    calc(100% - 36px) 50%;
  background-size:
    6px 6px,
    6px 6px,
    1px 20px;
  background-repeat: no-repeat;
  transition:
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.live_notify_select_tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.live_notify_select_btn {
  margin-right: 12px;
}

.live_notify_select_btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.live_notify_selected_hint {
  font-size: 13px;
  color: #525c7a;
}

.i_live_c_item .live_notify_audience:focus {
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(250, 180, 41, 0.25);
}

.i_live_c_item .live_notify_audience:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.live_notify_close {
  position: absolute;
  padding: 15px;
  text-align: center;
  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;
  border-radius: 50%;
  z-index: 1;
  right: 10px;
  top: 6px;
  cursor: pointer;
}

.live_notify_close svg {
  fill: #525c7a;
  width: 18px;
  height: 18px;
}

.live_notify_close:hover {
  background-color: #e4e6eb;
}

.live_notify_modal_body {
  padding: 10px 0 5px 0;
  max-height: 360px;
  overflow-y: auto;
}

.live_notify_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin: 0 10px 18px 10px;
  background-color: #f0f1f5;
  border-radius: 18px;
}

.live_notify_search_icon svg {
  width: 16px;
  height: 16px;
  fill: #8a93a8;
}

.live_notify_search_input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.live_notify_grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 18px 12px;
  padding: 0 12px 8px 12px;
}

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

.live_notify_user_card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.live_notify_avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: visible;
  position: relative;
  background-color: #e6e9f0;
  margin-bottom: 8px;
  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;
  transition: box-shadow 0.2s ease;
}

.live_notify_avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.live_notify_user_card input:checked + .live_notify_avatar {
  box-shadow: 0 0 0 2px #fab429;
}

.live_notify_check {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fab429;
  border: 2px solid #ffffff;
  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;
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  transition:
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.live_notify_check::before {
  content: "";
  width: 6px;
  height: 10px;
  border: 2px solid #ffffff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.live_notify_user_card input:checked + .live_notify_avatar .live_notify_check {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.live_notify_user_name {
  font-weight: 600;
  font-size: 13px;
  color: #000000;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live_notify_search_empty {
  display: none;
  padding: 12px 16px 6px 16px;
  text-align: center;
  font-size: 14px;
  color: #6f7280;
}

.live_notify_search_empty.is-visible {
  display: block;
}

.live_notify_section {
  margin-bottom: 18px;
}

.live_notify_section_title {
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  margin-bottom: 10px;
}

.live_notify_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: 10px;
}

.live_notify_user_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #f0f2f5;
  border-radius: 12px;
  background-color: #ffffff;
}

.live_notify_empty {
  padding: 12px;
  font-size: 14px;
  color: #6f7280;
  text-align: center;
}

.live_notify_modal {
  padding: 24px 16px;
}

.i_modal_bg_in.live_notify_modal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.i_modal_bg_in.live_notify_modal .i_modal_in_in.live_notify_modal_shell {
  width: min(640px, calc(100vw - 32px));
  margin: 0 auto;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.live_notify_modal .live_notify_modal_content {
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: min(820px, calc(100vh - 48px));
  background: transparent;
}

.live_notify_modal .live_notify_modal_header {
  position: relative;
  justify-content: flex-start;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #e7edf6;
  background: linear-gradient(180deg, #fff8f8 0%, #f7f9ff 100%);
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.live_notify_modal .live_notify_close {
  right: 18px;
  top: 50%;
  padding: 10px;
  transform: translateY(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #dce5f0;
  box-shadow: none;
}

.live_notify_modal .live_notify_close svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}

.live_notify_modal .live_notify_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}

.live_notify_modal .live_notify_modal_body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px 0;
  max-height: none;
  overflow: auto;
  background: #f8fafc;
}

.live_notify_modal .live_notify_search {
  gap: 10px;
  margin: 0;
  padding: 12px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
  border: 1px solid #e1e8f2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.live_notify_modal .live_notify_search_icon svg {
  width: 17px;
  height: 17px;
  fill: #7b88a1;
}

.live_notify_modal .live_notify_search_input {
  font-size: 15px;
  color: #1d2942;
}

.live_notify_modal .live_notify_search_input::placeholder {
  color: #95a2b7;
}

.live_notify_modal .live_notify_grid {
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 14px 12px;
  padding: 0 0 4px;
}

.live_notify_modal .live_notify_user_card {
  min-height: 128px;
  padding: 14px 10px 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fe 100%);
  border: 1px solid #e3e9f3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.live_notify_modal .live_notify_user_card:hover {
  transform: translateY(-1px);
  border-color: #d6dfeb;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 14px 24px rgba(15, 23, 42, 0.08);
}

.live_notify_modal .live_notify_avatar {
  width: 72px;
  height: 72px;
  margin-bottom: 10px;
  background: #edf2f8;
}

.live_notify_modal .live_notify_user_card input:checked + .live_notify_avatar {
  box-shadow: 0 0 0 3px rgba(246, 81, 105, 0.24);
}

.live_notify_modal .live_notify_check {
  right: -1px;
  bottom: -1px;
  width: 22px;
  height: 22px;
  background: linear-gradient(
    135deg,
    var(--dizzy-theme-brand-primary, #f65169) 0%,
    var(--dizzy-theme-brand-secondary, #fab429) 100%
  );
  border: 2px solid #ffffff;
}

.live_notify_modal .live_notify_user_name {
  max-width: 100%;
  color: #233146;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.live_notify_modal .live_notify_empty,
.live_notify_modal .live_notify_search_empty {
  padding: 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fe 100%);
  border: 1px solid #e3e9f3;
  color: #73819a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.live_notify_modal .live_notify_modal_footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  padding: 16px 20px 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f6f8fc 100%);
  border-top: 1px solid #e8eef7;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.live_notify_modal .live_notify_apply,
.live_notify_modal .live_notify_cancel {
  float: none;
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 0 18px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  box-shadow: none;
}

.live_notify_modal .live_notify_apply {
  background: linear-gradient(
    135deg,
    var(--dizzy-theme-brand-primary, #f65169) 0%,
    var(--dizzy-theme-brand-secondary, #fab429) 100%
  );
  box-shadow: 0 20px 42px rgba(246, 81, 105, 0.24);
}

.live_notify_modal .live_notify_apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(246, 81, 105, 0.28);
}

.live_notify_modal .live_notify_apply svg {
  width: 17px;
  height: 17px;
  margin-right: 8px;
}

.live_notify_modal .live_notify_cancel {
  background: #edf2f8;
  border: 1px solid #d8e1ed;
  color: #53627c;
  display: inline-flex;
  justify-content: center;
  text-align: center;
}

.live_notify_modal .live_notify_cancel:hover {
  background: #e7edf5;
  border-color: #cfd9e6;
}

@media only screen and (max-width: 700px) {
  .live_notify_modal {
    padding: 12px 10px;
  }

  .i_modal_bg_in.live_notify_modal {
    align-items: flex-start;
  }

  .i_modal_bg_in.live_notify_modal .i_modal_in_in.live_notify_modal_shell {
    width: min(100%, calc(100vw - 24px));
    margin: 12px auto 24px;
    border-radius: 22px;
  }

  .live_notify_modal .live_notify_modal_content {
    max-height: calc(100vh - 24px);
  }

  .live_notify_modal .i_modal_g_header {
    padding: 16px 16px 12px;
    font-size: 17px;
  }

  .live_notify_modal .live_notify_modal_body {
    gap: 14px;
    padding: 16px 16px 0;
  }

  .live_notify_modal .live_notify_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 10px;
  }

  .live_notify_modal .live_notify_user_card {
    min-height: 120px;
    padding: 12px 8px 10px;
    border-radius: 18px;
  }

  .live_notify_modal .live_notify_avatar {
    width: 64px;
    height: 64px;
  }

  .live_notify_modal .live_notify_modal_footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 14px 16px 16px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }
}

.choose_language_modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.choose_language_modal .choose_language_modal_shell {
  width: min(520px, calc(100vw - 32px));
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.choose_language_modal .choose_language_modal_content {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.choose_language_modal .choose_language_modal_header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 20px 24px 16px;
  border: 0;
  border-bottom: 1px solid #e7edf6;
  background: linear-gradient(180deg, #fff8f8 0%, #f7f9ff 100%);
  color: #18233d;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.choose_language_modal .choose_language_modal_body {
  padding: 18px 20px 20px;
  background: #f8fafc;
}

.choose_language_modal .choose_language_modal_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choose_language_modal .choose_language_modal_option {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid #e2e8f2;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fe 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #1f2b45;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.choose_language_modal .choose_language_modal_option:hover {
  border-color: #d3ddea;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  transform: translateY(-1px);
}

.choose_language_modal .choose_language_modal_option .i_block_choose {
  padding-right: 0;
}

.choose_language_modal .choose_language_modal_option .block_a_status {
  width: 16px;
  height: 16px;
}

.choose_language_modal .choose_language_modal_option .blockboxActive::after,
.choose_language_modal .choose_language_modal_option .blockboxPassive::after {
  width: 28px;
  height: 28px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.choose_language_modal .choose_language_modal_option.is-active {
  border-color: rgba(246, 81, 105, 0.28);
  background: linear-gradient(180deg, rgba(246, 81, 105, 0.08) 0%, rgba(250, 180, 41, 0.08) 100%);
}

.choose_language_modal .choose_language_modal_option.is-active .blockboxActive {
  background: #ff587c;
}

.choose_language_modal .choose_language_modal_option.is-active .blockboxActive::after {
  border-color: rgba(255, 88, 124, 0.28);
}

.choose_language_modal .choose_language_modal_label {
  min-width: 0;
  line-height: 1.3;
}

.choose_language_modal .choose_language_modal_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 20px 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-top: 1px solid #e8eef7;
}

.choose_language_modal .choose_language_modal_cancel {
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 15px;
  background: #8b96b7;
  border: 1px solid #7f89a9;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: none;
}

.choose_language_modal .choose_language_modal_cancel:hover {
  background: #7f89a9;
  border-color: #75809f;
}

@media only screen and (max-width: 700px) {
  .choose_language_modal {
    align-items: flex-start;
    padding: 12px 10px;
  }

  .choose_language_modal .choose_language_modal_shell {
    width: min(100%, calc(100vw - 24px));
    border-radius: 22px;
  }

  .choose_language_modal .choose_language_modal_header {
    min-height: 68px;
    padding: 16px 16px 12px;
    font-size: 16px;
  }

  .choose_language_modal .choose_language_modal_body {
    padding: 16px 16px 16px;
  }

  .choose_language_modal .choose_language_modal_list {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .choose_language_modal .choose_language_modal_option {
    min-height: 50px;
    padding: 0 16px;
    border-radius: 16px;
  }

  .choose_language_modal .choose_language_modal_footer {
    padding: 14px 16px 16px;
  }

  .choose_language_modal .choose_language_modal_cancel {
    width: 100%;
  }
}

.give_a_name {
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  margin-bottom: 10px;
}

.free_live_not {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -moz-border-radius: 10px;
  background-color: #fab429;
  color: #ffffff;
  padding: 15px;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
}

.free_live_not svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  margin-right: 10px;
}

.ll_live_not {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -moz-border-radius: 10px;
  color: #da4f7a;
  padding: 15px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}

.ll_live_not svg {
  width: 20px;
  height: 20px;
  fill: #da4f7a;
  margin-right: 10px;
}

.i_liv_stream_video {
  position: relative;
  width: 100%;
  max-width: 650px;
  overflow: hidden;
  margin: 0px auto;
  height: 100%;
  -webkit-box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
}

.live_wrapper {
  position: relative;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 100%;
  padding-top: 90px;
  padding-bottom: 20px;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  background-image: url("img/geometricBg.png");
}

.count_time {
  position: absolute;
  padding: 4px 8px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  z-index: 1;
  right: 10px;
  top: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
}

.count_time svg {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  fill: #ffffff;
}

.i_stream_buttons_right {
  position: absolute;
  right: 10px;
  bottom: 0px;
  z-index: 1;
}

.like_live {
  display: block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.lb_wrapper {
  position: relative;
  padding: 10px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 40px;
}

.like_live svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.lin_like svg {
  fill: #ffffff;
}

.lin_like:hover svg {
  fill: #f65169;
}

.lin_unlike svg {
  fill: #f65169;
}

.lin_unlike:hover svg {
  fill: #ffffff;
}

.live_creator {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  padding: 8px 5px;
}

.live_creator_wrapper {
  position: relative;
  padding: 3px;
  padding-right: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  -webkit-border-radius: 30px;
}

.live_owner_avatar {
  position: relative;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
}

.live_owner_avatar img {
  width: 100%;
  height: auto;
}

.live_owner_name {
  position: relative;
  font-weight: 500;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #ffffff;
  padding-left: 8px;
}

.live_creator_wrapper a {
  text-decoration: none;
  color: #ffffff;
}

.lp_sum_l {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 0px 5px;
}

.online_users {
  position: absolute;
  top: 50px;
  left: 0px;
  z-index: 1;
  padding: 8px 5px;
}

.online_users_total {
  position: relative;
  padding: 3px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  -webkit-border-radius: 30px;
}

.sumonline {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 0px 5px;
}

.column {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.live_stream_title {
  position: absolute;
  width: 100%;
  padding-bottom: 10px;
  padding-left: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  z-index: 1;
  bottom: 0px;
  left: 0px;
}

.live_title_page {
  font-weight: 600;
  text-transform: uppercase;
  color: #444444;
  padding-bottom: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.live_item_cont a {
  text-decoration: none;
  color: #444444;
}

.free_live_Streamings_list_container {
  position: relative;
  width: 100%;
  padding: 30px 0px;
}

.live_list_box_wrapper {
  position: relative;
  width: 100%;
  width: calc(50% - 0px);
  width: -o-calc(100% / 2 - 0px);
  width: -ms-calc(100% / 2 - 0px);
  padding: 8px;
  float: left;
}

.live_list_box_wrapper_in {
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -moz-border-radius: 10px;
  overflow: hidden;
}

.live_creator_cover {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -webkit-border-top-right-radius: 10px;
}

.live_creator_cover_img {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.live_creator_avatar {
  position: relative;
  width: 100%;
  margin-top: -49px;
}

.live_creator_avatar_middle {
  width: 98px;
  height: 98px;
  margin: 0px auto;
}

.i_live_profile_avatar {
  position: relative;
  width: 98px;
  height: 98px;
  margin: 0px auto;
  border: 3px solid #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
}

.live_stream_creator_name {
  position: relative;
  width: 100%;
  padding: 10px 5px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.live_stream_creator_name a {
  text-decoration: none;
  color: #444444;
}

.live_stream_creator_name a:hover {
  color: #f65169;
}

.live_s {
  position: absolute;
  padding: 5px 10px;
  color: #ffffff;
  background-color: #f65169;
  font-weight: 500;
  font-size: 13px;
  z-index: 1;
  left: 10px;
  top: 10px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -moz-border-radius: 10px;
}

.purchaseLiveButton,
.purchasedLiveButton {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid #f65169;
  width: 100%;
  display: block;
  padding: 15px 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: #f65169;
  letter-spacing: 3px;
  font-weight: 300;
  line-height: 1;
  position: relative;
  text-align: center;
}

.purchaseLiveButton strong .plan_point_icon,
.purchasedLiveButton strong .plan_point_icon {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.purchaseLiveButton strong span svg,
.purchasedLiveButton strong span svg {
  width: 15px;
  height: 15px;
  fill: #f65169;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
}

.pr_liv {
  cursor: pointer;
  padding: 0px 10px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.pr_liv:hover .purchaseLiveButton,
.pr_live:hover .purchasedLiveButton {
  border: 1px solid #f65169;
  background-color: #f65169;
  color: #ffffff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.pr_liv:hover .purchaseLiveButton strong span svg,
.pr_liv:hover .purchasedLiveButton strong span svg {
  fill: #ffffff;
}

.pr_liv:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.live_list_box_wrapper_in a {
  text-decoration: none;
}

.i_pr_fm svg {
  width: 20px;
  height: 20px;
}

/*LANDING PAGE*/
.i_post_text iframe.new {
  width: 100%;
  height: 380px;
  border-radius: 10px;
  margin-top: 10px;
}

.landing_wrapper {
  width: 100%;
  height: 100%;
  padding-top: 57px;
}

.landing_section_one {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.landing_header_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  -o-object-fit: cover;
  object-fit: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  z-index: 1;
}

.landing_section_in {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  padding-top: 100px;
  height: 100%;
  z-index: 3;
}

.landing_section_in h1 {
  font-family: "Noto Sans", sans-serif;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  background: -webkit-linear-gradient(135deg, #f65169 0%, #fab429 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  max-width: 600px;
  margin: 0px auto;
}

.landing_section_in .landing_seciond_in_note {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
  padding: 25px;
  text-align: center;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #525c7a;
  font-style: italic;
  margin-bottom: 20px;
}

.landing_section_register {
  width: 100%;
  max-width: 500px;
  margin: 0px auto;
  position: relative;
}

.landing_reg {
  padding: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 512px;
  margin: 0px auto;
  padding: 16px 20px !important;
  background-color: #ffffff;
  z-index: 1;
}

.input-prepend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group-text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 0.375rem 0.4rem;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.5;
  color: #525c7a;
  text-align: center;
  white-space: nowrap;
  background-color: #ffffff;
  border: 0;
  border-radius: 0.25rem;
}

.landing_text {
  border: none !important;
  display: block;
  width: 80%;
  padding: 8px 8px 8px 0;
  font-size: 16px;
  line-height: 18px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #525c7a;
  background-color: #ffffff;
  background-image: none;
  border-radius: 0.25rem;
  -webkit-transition: none !important;
  transition: none !important;
  outline: none;
}

.landing_box_animation {
  padding: 12px 15px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 16px;
  color: #525c7a;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  z-index: 2;
  border-right: solid 4px #f65169;
  border-bottom: solid 5px #f65169;
}

.landing_box_animation svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: #f65169;
}

.i_singup_claim {
  padding: 11px 20px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  border: 1px solid transparent;
  background-color: #f65169;
  cursor: pointer;
  color: #ffffff;
}

.landing_section_two {
  position: relative;
  width: 100%;
  padding: 100px 30px;
}

.landing_arrow {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: -1px;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.landing_section_two_in {
  width: 100%;
  max-width: 1100px;
  position: relative;
  margin: 0px auto;
  padding-top: 80px;
}

.landing_section_two_in h2 {
  width: 100%;
  max-width: 600px;
  margin: 0px auto;
  text-align: center;
  font-size: 35px;
  line-height: 1.3;
  font-weight: 300;
}

.landing_section_two_in h2 span {
  font-weight: 700;
}

.landing_section_two_in h2 .clr {
  color: #fab429;
}

.landing_features_list {
  width: 100%;
  padding-top: 80px;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 40px;
}

.anlan {
  flex-wrap: wrap;
}

.l_feature_box_container {
  width: 33.33333%;
  padding: 0px 60px;
  text-align: center;
  margin-bottom: 4rem;
  float: left;
  font-family: "Noto Sans", sans-serif;
}

.landing_features_list .l_feature_box_container h3 {
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.landing_features_list .l_feature_box_container img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.l_feature_box_container div {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  padding-top: 10px;
}

.landing_section_three {
  width: 100%;
  padding: 80px 0px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Noto Sans", sans-serif;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #fcf8f7;
}

.landing_section_three_in {
  width: 100%;
  max-width: 1100px;
  margin: 0px auto;
}

.landing_create_equal_box {
  width: 50%;
}

.landing_section_three_in .landing_create_equal_box img {
  width: 70%;
  display: block;
  margin: 0 auto;
}

.landing_section_three_in .landing_create_equal_box h2 {
  width: 100%;
  max-width: 600px;
  margin: 0px auto;
  font-size: 35px;
  line-height: 1.3;
  font-weight: 700;
  color: #fab429;
  font-family: "Noto Sans", sans-serif;
}

.landing_section_three_in .landing_create_equal_box div {
  padding-top: 25px;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.8rem;
  font-family: "Noto Sans", sans-serif;
}

.landng_section_four {
  width: 100%;
  padding: 80px 0px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Noto Sans", sans-serif;
  padding-top: 60px;
}

.landng_section_four_in {
  width: 100%;
  max-width: 1100px;
  margin: 0px auto;
}

.landng_section_four_in h2 {
  width: 100%;
  max-width: 600px;
  margin: 0px auto;
  text-align: center;
  font-size: 35px;
  line-height: 1.3;
  font-weight: 500;
  text-transform: capitalize;
}

.landing_section_five {
  position: relative;
  width: 100%;
  padding: 30px 30px;
  background-color: #ffffff;
}

.landing_section_five_in {
  width: 100%;
  max-width: 1100px;
  margin: 0px auto;
}

.landing_section_five_in h2 {
  width: 100%;
  max-width: 600px;
  margin: 0px auto;
  text-align: center;
  font-size: 35px;
  line-height: 1.3;
  font-weight: 300;
  font-family: "Noto Sans", sans-serif;
}

.landing_section_five_in p {
  width: 100%;
  max-width: 600px;
  margin: 0px auto;
  text-align: center;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 300;
  font-family: "Noto Sans", sans-serif;
  padding-top: 30px;
}

.ranges {
  padding-top: 30px;
}

.ranges_ {
  padding-top: 0px;
}

.smiulator_helper {
  width: 100%;
  position: relative;
  padding-bottom: 0px;
  padding-left: 10px;
  font-weight: 500;
  font-size: 15px;
  color: #525c7a;
}

.smiulator_helper svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.helper_right {
  margin-left: auto;
  margin-right: 10px;
}

.helper_right svg {
  margin-right: 5px;
  width: 15px;
  height: 15px;
  fill: #f65169;
}

.landing_sec_ {
  padding: 30px;
  width: 100%;
  position: relative;
}

.landing_sec_ h2 {
  width: 100%;
  max-width: 900px;
  margin: 0px auto;
  text-align: center;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 300;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.landing_sec_ span {
  font-weight: 700;
  color: #f65169;
}

.landing_sec_ p {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0px auto;
}

.landing_create_equal_box .smiulator_helper .helper_right span {
  font-weight: 600;
}

.landing_section_six {
  width: 100%;
  padding: 20px 0px;
  position: relative;
}

.landing_section_six_in {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
}

.error_report {
  width: 100%;
  position: absolute;
  background-color: #ffffff;
  padding: 20px;
  z-index: -1;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #f65169;
  margin-top: -30px;
  padding-top: 52px;
  display: none;
}

.landing-sticky-footer {
  padding: 20px 15px;
  color: #000000;
  position: fixed;
  bottom: 0px;
  margin-top: -50px;
  width: 100%;
  left: 0;
  z-index: 100000;
  font-size: 18px;
  padding-top: 0px;
}

.landing-sticky-footer-in {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 8px 16px;
  background: #ffffff;
  white-space: pre;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight:
    system-ui,
    -apple-system,
    sans-serif;
  letter-spacing: 2.4px;
}

.landing-sticky-footer-in-color-click {
  color: #f65169;
  font-weight: 600;
  font-size: 14px;
  margin-right: 8px;
}

.landing-sticky-footer-in a {
  text-decoration: underline;
  color: #f65169;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.landing-sticky-footer-in svg {
  width: 20px;
  height: 20px;
  fill: #f65169;
  margin-right: 10px;
}

._1u5W_:nth-child(4n + 1) {
  -webkit-animation: _2o46b 4s ease-in-out -0.5s infinite;
  animation: _2o46b 4s ease-in-out -0.5s infinite;
}

@-webkit-keyframes _2o46b {
  0% {
    -webkit-transform: translateY(5%) skew(3deg);
    transform: translateY(5%) skew(3deg);
  }
  25% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
  }
  50% {
    -webkit-transform: translateY(5%) skew(-3deg);
    transform: translateY(5%) skew(-3deg);
  }
  75% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
  }
  to {
    -webkit-transform: translateY(5%) skew(3deg);
    transform: translateY(5%) skew(3deg);
  }
}
._1u5W_:nth-child(4n + 2) {
  -webkit-animation: _2o46b 4s ease-in-out -1s infinite;
  animation: _2o46b 4s ease-in-out -1s infinite;
}

._1u5W_:nth-child(4n + 3) {
  -webkit-animation: _2o46b 4s ease-in-out -1.5s infinite;
  animation: _2o46b 4s ease-in-out -1.5s infinite;
}

._1u5W_:nth-child(4n) {
  -webkit-animation: _2o46b 4s ease-in-out 0s infinite;
  animation: _2o46b 4s ease-in-out 0s infinite;
}

@keyframes _2o46b {
  0% {
    -webkit-transform: translateY(5%) skew(3deg);
    transform: translateY(5%) skew(3deg);
  }
  25% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
  }
  50% {
    -webkit-transform: translateY(5%) skew(-3deg);
    transform: translateY(5%) skew(-3deg);
  }
  75% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
  }
  to {
    -webkit-transform: translateY(5%) skew(3deg);
    transform: translateY(5%) skew(3deg);
  }
}
/*Accordion*/
.landing_section_six_in ul {
  list-style: none;
  padding: 0;
}

.landing_section_six_in ul .inner {
  overflow: hidden;
  display: none;
  padding: 15px;
  background-color: #ffffff;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin: 0px 10px;
}

.landing_section_six_in ul li {
  margin: 0.5em 0;
}

.landing_section_six_in ul li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.landing_section_six_in ul li a.toggle {
  width: 100%;
  display: block;
  background: #ffffff;
  color: #000000;
  padding: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.landing_section_six_in ul li a.toggle:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.activeTogg {
  background-color: #fab429 !important;
  color: #ffffff !important;
}

/*Accordion*/
/*RANGE*/
input[type="range"] {
  width: 100%;
  height: 28px;
  /* thumbHeight + (2 x thumbBorderWidth)*/
  -webkit-appearance: none;
  /*remove the line*/
  outline: none;
  background-color: transparent !important;
  border: 0;
  /*for firefox on android*/
  padding: 0 8px;
  /*for IE*/
  margin: 8px 0;
}

/*chrome and opera*/
input[type="range"]::-webkit-slider-runnable-track {
  background: #fab429;
  /*trackColor*/
  height: 4px;
  /*trackHeight*/
  border-radius: 4px;
  /*trackHeight*/
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

input[type="range"]:hover::-webkit-slider-runnable-track,
input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #fab429;
  /*activeTrackColor*/
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #f65169;
  /*thumbColor*/
  width: 15px;
  /* thumbHeight + (2 x thumbBorderWidth)*/
  height: 15px;
  /* thumbHeight + (2 x thumbBorderWidth)*/
  border-radius: 50%;
  margin-top: -6px;
  /* -[thumbHeight + (2 x thumbBorderWidth) - trackHeight]/2*/
  cursor: pointer;
  border: 1px solid #ffffff;
  /*border-width should be equal to thumbBorderWidth if you want same border width across all browsers and border-color should match the background*/
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

input[type="range"]:hover::-webkit-slider-thumb,
input[type="range"]:focus::-webkit-slider-thumb {
  background: #fab429;
  /*activeThumbColor*/
}

/*firefox*/
input[type="range"]::-moz-focus-outer {
  border: 0;
}

input[type="range"]::-moz-range-track {
  background: #f0f2f5;
  /*trackColor*/
  height: 4px;
  /*trackHeight*/
  border-radius: 4px;
  /*trackHeight*/
  /*background isn't animatable, so can't use transition*/
}

input[type="range"]:hover::-moz-range-track,
input[type="range"]:focus::-moz-range-track {
  background: #f0f2f5;
  /*activeTrackColor*/
}

input[type="range"]::-moz-range-thumb {
  background: #fab429;
  /*thumbColor*/
  width: 10px;
  /*thumbHeight*/
  height: 10px;
  /*thumbHeight*/
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid #ffffff;
  /*border-width = thumbBorderWidth, border-color should match the background*/
}

input[type="range"]:hover::-moz-range-thumb,
input[type="range"]:focus::-moz-range-thumb {
  background: #f65169;
  /*activeThumbColor*/
}

input[type="range"]::-moz-range-progress {
  background: #f65169;
  /*thumbColor*/
  border-radius: 4px;
  /*trackHeight*/
  height: 4px;
  /*trackHeight*/
}

input[type="range"]:hover::-moz-range-progress,
input[type="range"]:focus::-moz-range-progress {
  background: #fab429;
  /*activeThumbColor*/
}

/*edge and IE*/
input[type="range"]::-ms-track {
  background: #f0f2f5;
  /*trackColor*/
  height: 4px;
  /*trackHeight*/
  border-radius: 4px;
  /*trackHeight*/
  border: none;
  color: transparent;
}

input[type="range"]:hover::-ms-track,
input[type="range"]:focus::-ms-track {
  background: #fab429;
  /*activeTrackColor*/
}

input[type="range"]::-ms-thumb {
  background: #f65169;
  /*thumbColor*/
  width: 10px;
  /*thumbHeight*/
  height: 10px;
  /*thumbHeight*/
  border-radius: 50%;
  border: none;
  margin: 0 4px 0;
  /*0 thumbBorderWidth 0*/
  box-shadow: 0 0 0 4px #ffffff;
  /*0 0 0 thumbBorderWidth #fff, box-shadow color should match the background*/
  /*cursor:pointer; doesn't work*/
}

input[type="range"]:hover::-ms-thumb,
input[type="range"]:focus::-ms-thumb {
  background: #fab429;
  /*activeThumbColor*/
}

input[type="range"]::-ms-tooltip {
  display: none;
  /*tooltip makes thumb sliding lagy*/
}

input[type="range"]::-ms-fill-lower {
  background: #f65169;
  /*thumbColor*/
  border-radius: 4px;
  /*trackHeight*/
}

input[type="range"]:hover::-ms-fill-lower,
input[type="range"]:focus::-ms-fill-lower {
  background: #fab429;
  /*activeThumbColor*/
}

.vertically-stacked-slider {
  padding: 8px;
}

.vertically-stacked-slider > input[type="range"] {
  padding: 0;
}

.horizontally-stacked-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.horizontally-stacked-slider > input[type="range"] {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/*RANGE*/
.ds-top-left {
  position: absolute;
  bottom: 32%;
  left: 10%;
}

.ds-top-right {
  position: absolute;
  bottom: 38%;
  right: 12%;
}

.ds-btm-right {
  position: absolute;
  bottom: 18%;
  right: 14%;
}

.ds-btm-left {
  position: absolute;
  bottom: 15%;
  left: 20%;
}

.area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(138, 27, 246, 0.35);
  -webkit-animation: landing_animate 25s linear infinite;
  animation: landing_animate 25s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 12s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 18s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  -webkit-animation-delay: 15s;
  animation-delay: 15s;
  -webkit-animation-duration: 45s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 35s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 11s;
  animation-duration: 11s;
}

.landing_wrapper .footer_container_out {
  position: relative;
  bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px 8px;
  padding: 18px 20px 82px;
  width: 100%;
  left: 0;
  background-color: #f6f8fb;
  border-top: 1px solid #e4eaf2;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  z-index: 5;
  text-align: center;
}

.footer_container_out {
  position: relative;
  bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px 8px;
  padding: 18px 20px;
  width: 100%;
  left: 0;
  background-color: #f6f8fb;
  border-top: 1px solid #e4eaf2;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  z-index: 5;
  text-align: center;
}

@media screen and (max-width: 700px) {
  .landing_wrapper .footer_container_out {
    padding: 16px 14px 82px;
  }

  .footer_container_out {
    gap: 5px 6px;
    padding: 16px 14px;
  }

  .footer_menu_item {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.75rem;
  }
}

@keyframes landing_animate {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    -webkit-transform: translateY(-1000px) rotate(720deg);
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
@-webkit-keyframes landing_animate {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    -webkit-transform: translateY(-1000px) rotate(720deg);
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
.ds-move-slow {
  -webkit-animation: moveInCircle 25s linear infinite;
  /* Chrome, Safari 5 */
  /* Firefox 5-15 */
  /* Opera 12+ */
  animation: moveInCircle 25s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Safari 5 */
}

.ds-move-slower {
  -webkit-animation: moveInCircle 320s linear infinite;
  /* Chrome, Safari 5 */
  /* Firefox 5-15 */
  /* Opera 12+ */
  animation: moveInCircle 32s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Safari 5 */
}

@-webkit-keyframes moveInCircle {
  from {
    -webkit-transform: rotate(5deg) translateX(25px) rotate(-5deg);
    transform: rotate(5deg) translateX(25px) rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(25pxpx) rotate(-360deg);
  }
}
@keyframes moveInCircle {
  from {
    -webkit-transform: rotate(5deg) translateX(25px) rotate(-5deg);
    transform: rotate(5deg) translateX(25px) rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(25px) rotate(-360deg);
    transform: rotate(360deg) translateX(25px) rotate(-360deg);
  }
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
}

.animatedFadeInUp {
  opacity: 0;
}

.fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

.i_sug_cont {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
  float: left;
  min-height: 200px;
}

.sugest {
  width: 50%;
  position: relative;
  padding: 3px;
  float: left;
}

.i_sub_u_cov {
  position: relative;
  padding-top: 90%;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: -webkit-grab;
  cursor: grab;
}

.i_sub_u_det {
  width: 100%;
  bottom: 0px;
  left: 0px;
  position: absolute;
  background: rgba(0, 0, 0, 0.51);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -o-border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -o-border-bottom-right-radius: 10px;
}

.i_sub_u_det_container {
  width: 100%;
  height: 100%;
}

.i_sub_u_ava {
  width: 52px;
  height: 52px;
  margin: 0px auto;
  margin-top: -25px;
  border: 2px solid #f0f2f5;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
}

.i_sub_u_d {
  width: 100%;
  padding: 5px 15px;
  position: relative;
}

.i_sub_u_name {
  width: 100%;
  text-align: center;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 2px;
  text-transform: capitalize;
}

.i_sub_u_name a {
  text-decoration: none;
  color: #ffffff;
}

.i_sub_u_men {
  width: 100%;
  text-align: center;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #ffffff;
  font-weight: 300;
  font-size: 12px;
  margin-bottom: 8px;
}

.i_sub_u_men a {
  text-decoration: none;
  color: #ffffff;
}

.i_sub_u_d .i_p_items_box_ {
  padding-top: 0px;
  margin-bottom: 5px;
}

.i_sub_u_d .i_p_items_box_ .i_btn_item_box {
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.i_sub_u_d .i_p_items_box_ .i_btn_item_box svg {
  width: 11px;
  height: 11px;
  fill: #ffffff;
}

.i_first_letter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px 0px 0px 10px;
}

.i_b_country_container {
  width: 100%;
  padding: 15px;
  float: left;
  padding-bottom: 0px;
}

.i_block_country_item {
  margin-right: 10px;
  background-color: #f9f9fb;
  padding: 8px 12px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-border-radius: 30px;
  font-weight: 500;
  font-size: 13px;
  border: 1px solid #f0f1f5;
  float: left;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.i_block_country_item:hover {
  color: #ffffff;
  background-color: #f65169;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.i_a_body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  color: #ffffff;
  background-color: #f65169;
  margin-left: 10px;
}

.i_a_body .i_h_in {
  width: 100%;
  padding: 0px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.chsed {
  color: #ffffff;
  background-color: #f65169;
}

/*Version 2.5 Live Streaming Main page feature STARTED HERE*/
.i_created_live_streamings_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 15px 0px 10px 10px;
  border-radius: 8px;
  background-color: #ffffff;
  margin-bottom: 25px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  overflow-x: auto;
}

.i_list_live_streams {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_list_live_i_c {
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.i_list_live_owner {
  width: 45px;
  height: 45px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
}

.i_list_live_owner img {
  width: 100%;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_live_paid {
  position: absolute;
  bottom: -3px;
  padding: 3px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  background-color: #ffffff;
  z-index: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_live_paid svg {
  width: 16px;
  height: 16px;
  fill: #f65169;
}

.i_l_see_others {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border: 2px solid #fab429;
  padding: 5px 10px 5px 10px;
  margin-right: 10px;
  min-width: 128px;
}

.i_l_see_others a {
  text-decoration: none;
  color: #444444;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_l_see_others svg {
  width: 28px;
  height: 28px;
}

.i_l_see_others span {
  font-size: 13px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  padding-left: 8px;
}

.c_live_streaming {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  padding: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  margin-right: 12px;
  position: relative;
  cursor: pointer;
}

.c_live_plus {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.c_live_plus svg {
  fill: #ffffff;
  width: 15px;
  height: 15px;
}

.i_live_p_icon {
  position: absolute;
  right: -8px;
  padding: 3px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  background-color: #ffffff;
  z-index: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_live_p_icon svg {
  width: 13px;
  height: 13px;
  fill: #f65169;
}

.swiper {
  width: 240px;
  height: 320px;
}

.swiper-slide {
  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-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
}

.swiper .swiper-wrapper .swiper-slide .i_sub_u_cov {
  padding-top: 150% !important;
}

.i_postFormContainer_swiper {
  display: none;
}

.i_postFormContainer_swiper .i_right_box_header {
  display: inline-block;
  width: 100%;
  padding: 0px 0px 15px 0px;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
}

.horizontal_arrow {
  padding: 10px 0px 0px 0px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.horizontal_arrow svg {
  fill: #f65169;
}

.horizontal_arrow svg {
  width: 35px;
  height: 35px;
}

/*Version 2.5 Live Streaming Main Page Style FINISHED HERE*/
/*Version 2.6 Style STARTED*/
.i_t_warning_earning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  padding: 10px;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding-bottom: 15px;
  display: none;
  color: #43a047;
}

.i_t_warning_earning a {
  text-decoration: none;
  font-weight: 600;
  color: #43a047;
}

.point_subs_not {
  font-weight: 400 !important;
  line-height: 1.4rem;
  font-size: 14px;
}

.pay_subscription_point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 13px 15px;
  border: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #ffffff;
  background-color: #f65169;
  cursor: pointer;
}

.pay_subscription_point:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  background: #f65169;
}

.pay_subscription_point svg {
  fill: #ffffff;
  width: 13px;
  height: 13px;
  margin-left: 4px;
  margin-right: 4px;
}

.pay_subscription_point_renew {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 13px 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #ffffff;
  background-color: #2770dd;
  cursor: pointer;
}

.pay_subscription_point_renew a {
  color: #ffffff;
  text-decoration: none;
}

.pay_subscription_point_renew:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  background-color: #4c7ae4;
}

.pay_subscription_point_renew svg {
  fill: #ffffff;
  width: 13px;
  height: 13px;
  margin-left: 4px;
  margin-right: 4px;
}

.insfsub {
  font-weight: 500;
  color: #e53935;
}

.insfsub a {
  text-decoration: none;
  color: #f65169;
  font-weight: 600;
}

.i_sub_box_unm_interval {
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  text-transform: capitalize;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 4px 10px;
  margin-top: 3px;
  background: #fab429;
}

/*Version 2.6 Style FINISHED*/
/*Version 2.7 Style STARTED*/
.in_tips svg {
  fill: #858fad;
}

.in_tips:hover svg {
  fill: #f65169;
}

.i_post_footer_item {
  width: 16.6%;
}

.modal_tip {
  width: 400px !important;
}

.i_set_subscription_fee_box {
  width: 100%;
}

.border-right-radius {
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.tip_style {
  font-weight: 700;
  color: #65676b;
}

.i_tip_not {
  font-weight: 400;
  font-size: 11px;
  color: #868dac;
  padding-top: 2px;
}

.send_tip_btn {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-filex;
  padding: 13px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  color: #ffffff;
  font-weight: 500;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.send_tip_btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.send_tip_btn svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  margin-right: 10px;
}
.send_tip_methods_btn {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 13px;
  border-radius: 30px;
  background: transparent;
  color: #212121;
  font-weight: 600;
  font-family: "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  border: 2px solid #dcdcdc;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 10px;
}
.send_tip_methods_btn:hover {
  transform: scale(1.03);
  border-color: #b0b0b0;
}
.send_tip_methods_btn svg {
  width: 17px;
  height: 17px;
  margin-right: 10px;
  fill: currentColor;
}

.i_thanks_bubble_cont {
  position: absolute;
  width: 100%;
  max-width: 300px;
  top: 75px;
  left: 0px;
  z-index: 5;
  display: none;
}

.i_bubble {
  position: relative;
  width: 100%;
  padding: 20px 15px;
  background: #468cef;
  border-radius: 10px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
}

.i_bubble:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0 10px 10px;
  border-color: #468cef transparent;
  display: block;
  width: 0;
  z-index: 1;
  top: -10px;
  left: 30px;
}

/*Version 2.7 Style FINISHED*/
/*Version 2.9 Style STARTED*/
.live_wrapper_tik {
  padding-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  min-height: calc(100vh - 0px);
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
}

.live_left_in_holder {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-perspective: 1px;
  perspective: 1px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  padding-right: 12px;
  -webkit-perspective-origin: right top;
  perspective-origin: right top;
  top: 72px;
  bottom: 0;
  width: 240px;
  position: fixed;
  padding: 15px 8px;
}

.live_left_in_holder a {
  text-decoration: none;
}

.live_left {
  border-right: 1px solid #e0e3eb;
}

.live_right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
}

.live_left_in_wrapper {
  position: relative;
  width: 240px;
  -ms-flex: 0 0 240px;
  -webkit-box-flex: 0;
  flex: 0 0 240px;
}

.live_right_in_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: calc(0px + 100%);
  position: relative;
}

.live_right_in_left {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-preferred-size: 0%;
  flex-basis: 0%;
  position: relative;
  overflow-x: hidden;
}

.live_right_in_right {
  min-height: 520px;
  height: calc(0px + 100%);
  height: -ms-calc(0px + 100%);
  height: -o-calc(0px + 100%);
  position: relative;
  overflow-x: initial;
  overflow-y: initial;
  width: 341px;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: initial;
  transition-timing-function: initial;
  -webkit-transition-delay: initial;
  transition-delay: initial;
  -webkit-transition-property: width;
  transition-property: width;
  padding: 20px 10px;
  border-left: 1px solid #e0e3eb;
}

.live_right_in_right_in {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  overflow-y: scroll;
  overflow-x: hidden;
  height: calc(-61px + 100%);
  height: -o-calc(-61px + 100%);
  height: -ms-calc(-61px + 100%);
  padding: 10px 5px;
}

.live_suggested_lives_wrapper {
  position: relative;
  width: 100%;
  display: inline-block;
}

.live_suggested_lives_wrapper .i_right_box_header {
  font-weight: 600;
  font-size: 13px;
  color: #444444;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.i_live_user_avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  margin-right: 8px;
}

.i_live_user_avatar img {
  width: 100%;
  height: auto;
  position: relative;
}

.live_suggested_lives_wrapper .i_left_menu_box {
  font-weight: 500;
  font-size: 13px;
}

.live_suggested_lives_wrapper .i_left_menu_box a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #444444;
}

.live_video_header {
  position: relative;
  width: 100%;
  padding: 13px 10px;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e0e3eb;
  z-index: 2;
}

.live_creator_avatar_live {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 10px;
}

.live_creator_avatar_live img {
  position: relative;
  width: 35px;
  height: 35px;
}

.live_creator_live_name_live_username {
  display: inline-block;
  position: relative;
  font-weight: 600;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.live_creator_live_username a {
  text-decoration: none;
  color: #000000;
}

.live_creator_live_name {
  padding-top: 5px;
  font-weight: 400;
  font-size: 13px;
}

.live_creator_live_name svg {
  width: 14px;
  height: 14px;
  fill: #b3b9cc;
  margin-left: 5px;
}

.live_creator_live_name span {
  font-weight: 600;
  color: #ffffff;
  margin: 0px;
}

.live_header_in_right {
  position: relative;
  margin-left: auto;
}

.live_owner_flw_btn .i_btn_like_item {
  padding: 8px 11px !important;
  font-size: 13px !important;
}

.live__live_video_holder {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: calc(-16rem + 100vh);
}

.live_vide__holder {
  position: relative;
  height: 100%;
  background-color: rgb(0, 0, 0);
}

.live_mics_cameras {
  padding: 0px;
}

.i_h_in_live {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 12px;
}

.live_gif_coins_list {
  padding: 10px 0px;
}

.live_gif_coins_list_wrapper {
  position: relative;
  width: 100%;
}

.live_gif_coins_list_wrapper .swiper {
  width: 100%;
  height: auto;
}

.live_gif_cons_list_wrapper .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  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;
}

.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  font-size: 25px !important;
  color: #f65169 !important;
}

.live_gift_coin_container {
  padding: 10px;
  width: 100%;
  max-width: 200px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.live_gift_coin_avatar {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 0px auto;
}

.live_gift_coin_avatar img {
  position: relative;
  width: 100%;
}

.live_gift_coin_name {
  width: 100%;
  padding-top: 10px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  color: #000000;
}

.live_gift_coin_amount {
  width: 100%;
  padding-top: 3px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  font-style: italic;
}

.live_gift_hv {
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.live_gift_coin_btn {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1;
  display: none;
  padding-top: 22px;
}

.live_gift_coin_container:hover .live_gift_coin_btn {
  display: block;
}

.live_coin_btn {
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0px auto;
}

.live_coin_send {
  padding: 5px 10px;
  color: #ffffff;
  background-color: #f65169;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
  font-style:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.live_coin_send:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  background-color: #fab429;
}

.live_animation_wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.live_an_img {
  position: relative;
  width: clamp(96px, 14vw, 180px);
  height: auto;
  margin: 0;
  -webkit-filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.34));
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.34));
  -webkit-animation:
    liveGiftZoomIn 0.34s cubic-bezier(0.2, 0.8, 0.2, 1) both,
    liveGiftFloat 2.2s ease-in-out 0.34s both;
  animation:
    liveGiftZoomIn 0.34s cubic-bezier(0.2, 0.8, 0.2, 1) both,
    liveGiftFloat 2.2s ease-in-out 0.34s both;
}

.live_an_img img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: block;
}

@-webkit-keyframes liveGiftZoomIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 18px, 0) scale(0.45);
    transform: translate3d(0, 18px, 0) scale(0.45);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes liveGiftZoomIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 18px, 0) scale(0.45);
    transform: translate3d(0, 18px, 0) scale(0.45);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@-webkit-keyframes liveGiftFloat {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scale(1.03);
    transform: translate3d(0, -20px, 0) scale(1.03);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0) scale(1.06);
    transform: translate3d(0, -30px, 0) scale(1.06);
  }
}

@keyframes liveGiftFloat {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scale(1.03);
    transform: translate3d(0, -20px, 0) scale(1.03);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0) scale(1.06);
    transform: translate3d(0, -30px, 0) scale(1.06);
  }
}

@media (max-width: 1050px) {
  .live_an_img {
    width: clamp(105px, 32vw, 180px);
  }
}

.gElp9 {
  width: 100%;
  padding: 4px 8px;
  font-size: 13px;
  line-height: 1.2rem;
}

.gElp9 a {
  color: #000000;
  font-family: "Abril Fatface", cursive;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  margin-right: 10px;
}

.mytransition {
  background-color: transparent;
  -webkit-animation-name: animationName;
  animation-name: animationName;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

@-webkit-keyframes animationName {
  0% {
    background-color: #f9f9fb;
  }
  100% {
    background-color: #f0f1f5;
  }
}

@keyframes animationName {
  0% {
    background-color: #f9f9fb;
  }
  100% {
    background-color: #f0f1f5;
  }
}
.live_send_message_box_wrapper {
  position: absolute;
  width: 100%;
  padding: 10px 8px;
  bottom: 0px;
  left: 0px;
  background-color: #ffffff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 54px;
  flex-basis: 54px;
  border-top: 1px solid #e0e3eb;
}

.live_coin_current_balance {
  position: relative;
  width: 100%;
  padding: 15px;
}

.current_balance_box {
  position: relative;
  width: 100%;
  font-weight: 500;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  padding-top: 10px;
}

.current_balance_box svg {
  fill: #f65169;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  position: relative;
  margin-left: 8px;
  margin-right: 10px;
}

.current_balance_box a {
  padding: 8px 12px;
  text-decoration: none;
  color: #f65169;
  border: 1px solid #f65169;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.current_balance_box a:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.current_balance_box a:hover {
  background-color: #f65169;
  color: #ffffff;
}

.gElp9 img {
  width: 30px;
  height: auto;
  position: relative;
}

.gift_attan {
  font-weight: 600;
  font-size: 13px;
  font-family: "Abril Fatface", cursive;
  color: #fab429;
}

.currentt_live_streamings_list_container {
  position: relative;
  width: 100%;
  padding: 30px 0px;
}

.live_list_box_wrapper_live {
  position: relative;
  width: 100%;
  width: calc(25% - 0px);
  width: -o-calc(100% / 4 - 0px);
  width: -ms-calc(100% / 4 - 0px);
  padding: 8px;
  float: left;
}

.max_height_live_mobile {
  max-height: calc(0rem + 100vh);
  max-height: -ms-calc(0rem + 100vh);
  max-height: -o-calc(0rem + 100vh);
}

.live_video_header_mobile {
  position: fixed;
  border-bottom: 0 !important;
  box-shadow: none !important;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.72) 0%,
    rgba(15, 23, 42, 0.38) 72%,
    rgba(15, 23, 42, 0) 100%
  );
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.loi {
  color: #ffffff !important;
}

.i_header_btn_item_live_mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: rgba(17, 24, 39, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  width: 44px;
  height: 44px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-right: 8px;
}

.i_header_btn_item_live_mobile svg {
  fill: #ffffff !important;
  width: 15px;
  height: 15px;
}

.i_header_btn_item_live_mobile svg *,
.i_header_btn_item_live_mobile svg path,
.i_header_btn_item_live_mobile svg g {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

.i_header_btn_item_live_mobile:hover {
  background: rgba(17, 24, 39, 0.75) !important;
}

.live_video_header_mobile .live_creator_live_username a,
.live_video_header_mobile .live_creator_live_name,
.live_video_header_mobile .live_creator_live_name span {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(15, 23, 42, 0.55);
}

.live_video_header_mobile .live_creator_live_name svg {
  fill: #ffffff !important;
}

.live_right_in_right_mobile {
  max-height: 350px;
  min-height: 350px;
  height: calc(0px + 100%);
  height: -ms-calc(0px + 100%);
  height: -o-calc(0px + 100%);
  position: absolute !important;
  overflow-x: initial;
  overflow-y: initial;
  width: 100% !important;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: initial;
  transition-timing-function: initial;
  -webkit-transition-delay: initial;
  transition-delay: initial;
  -webkit-transition-property: width;
  transition-property: width;
  padding: 20px 10px;
  border-left: 1px solid transparent !important;
  bottom: 0px;
}

.live_right_in_right_mobile .live_send_message_box_wrapper {
  position: absolute;
  width: 100%;
  padding: 10px 8px;
  bottom: 0px;
  left: 0px;
  background-color: transparent !important;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 54px;
  flex-basis: 54px;
  border-top: 1px solid transparent !important;
}

.live_right_in_right_mobile
  .live_send_message_box_wrapper
  .tabing_non_justify
  .message_form_items
  .message_send_text
  .message_text_textarea {
  background-color: transparent !important;
}

.live_right_in_right_mobile
  .live_send_message_box_wrapper
  .tabing_non_justify
  .message_form_items
  .message_send_text
  .message_text_textarea
  .lmSize {
  color: #ffffff !important;
  border: 1px solid #ffffff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  overflow: hidden;
}

.live_right_in_right_mobile
  .live_send_message_box_wrapper
  .tabing_non_justify
  .message_form_items
  .message_send_text
  .message_text_textarea
  .message_smiley
  .message_form_smiley_plus
  .message_pls
  svg {
  fill: #ffffff !important;
}

.live_right_in_right_mobile
  .live_send_message_box_wrapper
  .tabing_non_justify
  .message_form_items
  .message_send_text
  .message_text_textarea
  .message_smiley
  .message_form_smiley_plus:hover {
  background-color: #2e2e2e !important;
}

.live_right_in_right_mobile
  .live_send_message_box_wrapper
  .tabing_non_justify
  .message_form_items
  .message_form_plus:hover {
  background-color: #2e2e2e !important;
}

.live_right_in_right_mobile
  .live_send_message_box_wrapper
  .tabing_non_justify
  .message_form_items
  .message_form_plus
  .message_pls
  svg {
  fill: #ffffff !important;
}

.live_right_in_right_mobile .live_right_in_right_in .gElp9 {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px #2e2e2e;
}

.live_right_in_right_mobile .live_right_in_right_in .gElp9 a {
  color: #ffffff !important;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  text-shadow: 2px 2px 4px #2e2e2e;
}

.live_holder_plus_in {
  position: absolute;
  z-index: 1;
  top: 0px;
  right: 0px;
}

.holder_l_in {
  position: relative;
  width: 100%;
  padding: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 8px;
}

.live_plus_mobile {
  top: 62px !important;
}

.live_pulse {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
  padding: 4px 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  animation: pulse-live 1s infinite alternate;
  -webkit-animation: pulse-live 1s infinite alternate;
  background-color: #f65169;
  margin-bottom: 13px;
}

.live_like_t {
  position: relative;
  margin-bottom: 13px;
}

.live_creator_actions_stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.live_creator_actions_stack .button-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.live_creator_actions_stack .button-group button {
  margin-bottom: 0;
}

.live_action_menu_btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(17, 24, 39, 0.6);
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.3);
}

.live_action_menu_dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: currentColor;
}

.live_action_menu_btn[aria-expanded="true"] {
  background-color: #f65169;
  border-color: #f65169;
}

.live_gift_call {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: none;
  width: 42px;
  height: 42px;
  min-width: 42px;
  margin-bottom: 13px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: rgba(17, 24, 39, 0.6);
  -webkit-transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  -webkit-box-shadow: 0 8px 18px rgba(15, 23, 42, 0.3);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.3);
}

.live_gift_call:hover {
  background-color: rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 255, 255, 0.48);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.live_gift_call svg {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 24px;
  margin: auto;
}

.live_footer_holder {
  display: none;
}

.live_footer_holder_show {
  position: fixed;
  left: 50%;
  bottom: 24px;
  width: min(980px, calc(100vw - 64px));
  max-height: min(560px, 64vh);
  padding: 24px;
  border: 1px solid #e0e3eb;
  border-radius: 26px;
  -webkit-border-radius: 26px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 71;
  display: block !important;
  background-color: #ffffff !important;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
}

.live_footer_holder_show .live_gif_coins_list_wrapper {
  padding: 0 42px;
}

.live_footer_holder_show .swiper-wrapper {
  align-items: stretch;
}

.live_footer_holder_show .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.live_footer_holder_show .live_gift_coin_container {
  min-height: 178px;
  max-width: none;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid #edf0f6;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  background-color: #fbfcff;
  -webkit-transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.live_footer_holder_show .live_gift_coin_container:hover {
  background-color: #ffffff;
  border-color: rgba(246, 81, 105, 0.3);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.live_footer_holder_show .live_gift_coin_avatar {
  width: 70px;
  height: 70px;
}

.live_footer_holder_show .live_gift_coin_name {
  min-height: 38px;
  padding-top: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  color: #121827;
}

.live_footer_holder_show .live_gift_coin_amount {
  padding-top: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  color: #667085;
}

.live_footer_holder_show .live_gift_coin_btn {
  position: static;
  display: block;
  margin-top: auto;
  padding-top: 12px;
}

.live_footer_holder_show .live_coin_send {
  min-height: 34px;
  padding: 0 14px;
  width: 100%;
  max-width: 92px;
  border: 0;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background-color: #f65169;
  box-shadow: none;
}

.live_footer_holder_show .live_coin_send:hover {
  background-color: #e8445d;
  -webkit-transform: none;
  transform: none;
}

.live_footer_holder_show .live_coin_current_balance {
  padding: 18px 8px 0;
}

.live_footer_holder_show .current_balance_box {
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #edf0f6;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  background-color: #fbfcff;
}

.live_footer_holder_show .currentt_live_streamings_list_container {
  display: none;
}

.appendBoxLive {
  z-index: 70;
  background-color: rgba(15, 23, 42, 0.46);
}

@media screen and (max-width: 1050px) {
  .live_footer_holder_show {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: min(500px, 58vh);
    padding: 18px 12px calc(16px + env(safe-area-inset-bottom, 0px));
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    -webkit-border-radius: 22px 22px 0 0;
    -webkit-transform: none;
    transform: none;
  }

  .live_footer_holder_show .live_gif_coins_list_wrapper {
    padding: 0 28px;
  }
}

.live_pin_product_btn {
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background-color: #f9f9fb;
  border: 1px solid #e0e3eb;
  font-size: 12px;
  font-weight: 600;
  color: #2c2f36;
  cursor: pointer;
  margin-bottom: 13px;
}

.live_pin_product_btn svg {
  width: 16px;
  height: 16px;
  fill: #f65169;
}

.live_interactions_toggle_btn {
  display: none;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid #e0e3eb;
  font-size: 12px;
  font-weight: 600;
  color: #2c2f36;
  cursor: pointer;
  margin-bottom: 13px;
  max-width: 180px;
}

.live_interactions_toggle_btn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live_interactions_toggle_btn svg {
  width: 16px;
  height: 16px;
  fill: #7b8292;
}

.live_interactions_toggle_btn.is-active {
  background-color: #f65169;
  border-color: #f65169;
  color: #ffffff;
}

.live_interactions_toggle_btn.is-active svg {
  fill: #ffffff;
}

.live_pinned_product_slot {
  position: absolute;
  right: 16px;
  bottom: 90px;
  max-width: 320px;
  width: 100%;
  z-index: 3;
}

.live_pinned_product_inner {
  display: block;
}

.live_pinned_product_toggle {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid #e0e3eb;
  font-size: 12px;
  font-weight: 600;
  color: #2c2f36;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.live_pinned_product_toggle svg {
  width: 16px;
  height: 16px;
  fill: #f65169;
}

.live_pinned_product_card {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
}

.live_pinned_product_media {
  width: 96px;
  min-width: 96px;
  height: auto;
  min-height: 100%;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

.live_pinned_product_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live_pinned_product_placeholder {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.4px;
}

.live_pinned_product_body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.live_pinned_product_type {
  font-size: 11px;
  font-weight: 700;
  color: #f65169;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live_pinned_product_name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.live_pinned_product_price {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
}

.live_pinned_product_actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2px;
}

.live_pinned_product_cta {
  padding: 7px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f65169 0%, #ff7a8e 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(246, 81, 105, 0.35);
}

.live_unpin_product_btn {
  padding: 7px 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
}

@media (max-width: 900px) {
  .live_pinned_product_slot {
    position: fixed;
    right: 12px;
    left: 12px;
    bottom: 88px;
    max-width: none;
    width: auto;
  }
  .live_pinned_product_slot[data-pinned-id=""] {
    display: none;
  }
  .live_pinned_product_toggle {
    display: inline-flex;
  }
  .live_pinned_product_inner {
    display: none;
    margin-top: 10px;
  }
  .live_pinned_product_slot.is-open .live_pinned_product_inner {
    display: block;
  }
  .live_pinned_product_slot.is-open .live_pinned_product_toggle {
    background-color: #f65169;
    color: #ffffff;
    border-color: #f65169;
  }
  .live_pinned_product_slot.is-open .live_pinned_product_toggle svg {
    fill: #ffffff;
  }
}

.live_interaction_modules {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1050px) {
  .live_video_header_mobile .live_mics_cameras {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .live_video_header_mobile .i_header_btn_item_live_mobile {
    margin-right: 0 !important;
  }
  .live_plus_mobile .live_pulse {
    margin-top: 8px;
  }
  .live_video_header_mobile
    .i_header_btn_item_live_mobile.live_header_btn_camera {
    background: linear-gradient(135deg, #0891b2 0%, #0ea5e9 100%) !important;
    border-color: rgba(186, 230, 253, 0.95);
  }
  .live_video_header_mobile .i_header_btn_item_live_mobile.live_header_btn_mic {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%) !important;
    border-color: rgba(191, 219, 254, 0.95);
  }
  .live_video_header_mobile .i_header_btn_item_live_mobile.live_header_btn_end {
    background: #ef4444 !important;
    border-color: #fecaca;
  }
  .live_plus_mobile .live_action_menu_btn {
    display: flex;
  }
  .live_plus_mobile .live_creator_actions_stack {
    width: 196px;
    min-width: 196px;
    padding: 8px;
    border-radius: 14px;
    background-color: rgba(15, 23, 42, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.35);
    display: none;
  }
  .live_plus_mobile.live_actions_open .live_creator_actions_stack {
    display: flex;
  }
  .live_plus_mobile .live_creator_actions_stack .button-group button,
  .live_plus_mobile .live_creator_actions_stack .live_pin_product_btn,
  .live_plus_mobile .live_creator_actions_stack .live_interactions_toggle_btn {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    justify-content: flex-start;
  }
  .live_plus_mobile .live_creator_actions_stack .button-group button {
    padding: 8px 10px;
    border-radius: 10px;
    background-color: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
  }
  .live_plus_mobile .live_creator_actions_stack #mute-audio {
    background-color: #0f766e;
    border-color: #5eead4;
    color: #ffffff;
  }
  .live_plus_mobile .live_creator_actions_stack #mute-video {
    background-color: #1d4ed8;
    border-color: #93c5fd;
    color: #ffffff;
  }
  .live_plus_mobile .live_creator_actions_stack .live_pin_product_btn {
    background-color: #c2410c;
    border-color: #fdba74;
    color: #ffffff;
  }
  .live_plus_mobile .live_creator_actions_stack .live_pin_product_btn svg {
    fill: #ffffff;
  }
  .live_plus_mobile .live_creator_actions_stack .live_interactions_toggle_btn {
    background-color: #7c3aed;
    border-color: #c4b5fd;
    color: #ffffff;
  }
  .live_plus_mobile
    .live_creator_actions_stack
    .live_interactions_toggle_btn
    svg {
    fill: #ffffff;
  }
  .live_plus_mobile
    .live_creator_actions_stack
    .live_interactions_toggle_btn.is-active {
    background-color: #be185d;
    border-color: #f9a8d4;
  }
  .live_interactions_toggle_btn {
    display: flex;
  }
  .live_right_in_right_mobile .live_interaction_modules {
    display: none;
  }
  .live_right_in_right_mobile.live_interactions_open .live_interaction_modules {
    display: flex;
    max-height: calc(100vh - 230px);
    overflow-y: auto;
    margin-bottom: 8px;
  }
}

.live_module {
  border: 1px solid #e0e3eb;
  border-radius: 10px;
  background-color: #ffffff;
  overflow: hidden;
}

.live_module_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #2c2f36;
}

.live_module_toggle {
  background: transparent;
  border: none;
  cursor: pointer;
}

.live_module_toggle svg {
  width: 16px;
  height: 16px;
  fill: #7b8292;
}

.live_module_body {
  padding: 10px;
  display: none;
}

.live_module.is-open .live_module_body {
  display: block;
}

.live_poll_question {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.live_poll_options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.live_poll_option {
  position: relative;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #e0e3eb;
  background-color: #ffffff;
  text-align: left;
  font-size: 12px;
  cursor: pointer;
  overflow: hidden;
}

.live_poll_option.is-locked {
  cursor: default;
}

.live_poll_option_bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: rgba(246, 81, 105, 0.2);
  z-index: 0;
}

.live_poll_option_text,
.live_poll_option_percent {
  position: relative;
  z-index: 1;
}

.live_poll_option_percent {
  float: right;
  font-weight: 600;
}

.live_poll_option.is-selected {
  border-color: #f65169;
}

.live_poll_meta {
  margin-top: 8px;
  font-size: 11px;
  color: #7b8292;
}

.live_poll_create {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.live_poll_question_input,
.live_poll_option_input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #e0e3eb;
  border-radius: 8px;
  font-size: 12px;
}

.live_poll_create_actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.live_poll_add_option,
.live_poll_submit,
.live_poll_close_btn {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #e0e3eb;
  background-color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.live_poll_submit {
  background-color: #f65169;
  color: #ffffff;
  border-color: #f65169;
}

.live_poll_warning {
  font-size: 11px;
  color: #f65169;
}

.live_poll_empty {
  font-size: 12px;
  color: #7b8292;
}

.live_qa_input {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.live_qa_textarea {
  width: 100%;
  min-height: 70px;
  padding: 8px 10px;
  border: 1px solid #e0e3eb;
  border-radius: 8px;
  font-size: 12px;
  resize: vertical;
}

.live_qa_send,
.live_qa_action {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #e0e3eb;
  background-color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.live_qa_send {
  background-color: #2c2f36;
  color: #ffffff;
  border-color: #2c2f36;
}

.live_qa_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.live_qa_item {
  border: 1px solid #e0e3eb;
  border-radius: 8px;
  padding: 8px 10px;
}

.live_qa_author {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.live_qa_text {
  font-size: 12px;
  color: #2c2f36;
}

.live_qa_status {
  font-size: 11px;
  color: #7b8292;
  margin-top: 6px;
}

.live_qa_actions {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.live_qa_empty {
  font-size: 12px;
  color: #7b8292;
}

/* Aura live creator studio refresh */
.live_media_status {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #05070d;
  color: #ffffff;
  text-align: center;
}

.live_media_status_inner {
  width: min(420px, 100%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background-color: rgba(17, 24, 39, 0.76);
}

.live_media_status_title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.live_media_status_text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

@media screen and (min-width: 1051px) {
  .live_wrapper_tik {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background-color: #f4f6fb;
  }

  .live_right {
    height: calc(100vh - 72px);
  }

  .live_right_in_wrapper {
    height: 100%;
  }

  .live_right_in_left {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 14px 12px 14px 14px;
    background-color: #f4f6fb;
  }

  .live_video_header {
    flex: 0 0 72px;
    min-height: 72px;
    padding: 10px 14px;
    background-color: #ffffff;
    border: 1px solid #e0e3eb;
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
  }

  .live_creator_avatar_live,
  .live_creator_avatar_live img {
    width: 42px;
    height: 42px;
  }

  .live_creator_live_name_live_username {
    min-width: 0;
  }

  .live_creator_live_username a {
    font-size: 14px;
    font-weight: 700;
    color: #121827;
  }

  .live_creator_live_name {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    color: #667085;
    font-size: 12px;
  }

  .live_creator_live_name span {
    color: #667085;
  }

  .live_mics_cameras {
    gap: 8px;
  }

  .live_mics_cameras .i_header_btn_item {
    width: 44px;
    height: 44px;
    border: 1px solid #e0e3eb;
    border-radius: 14px;
    background-color: #f8fafc;
  }

  .live_mics_cameras .i_header_btn_item:hover {
    background-color: #eef2f7;
  }

  .live_mics_cameras .i_h_in_live {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .live_mics_cameras .i_h_in_live svg {
    width: 17px;
    height: 17px;
  }

  .live_header_btn_end {
    background-color: #f65169 !important;
    border-color: #f65169 !important;
  }

  .live_header_btn_end svg,
  .live_header_btn_end svg * {
    fill: #ffffff !important;
    stroke: #ffffff !important;
  }

  .live__live_video_holder {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e0e3eb;
    border-top: 0;
    border-radius: 0 0 18px 18px;
  }

  .live_vide__holder,
  .filtvid {
    height: 100%;
    min-height: 360px;
  }

  .live_holder_plus_in {
    top: 16px;
    right: 16px;
    width: auto;
  }

  .holder_l_in {
    padding: 0;
    gap: 10px;
    align-items: flex-end;
  }

  .live_pulse {
    margin-bottom: 0;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .live_like_t {
    margin-bottom: 0;
  }

  .live_creator_actions_stack {
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(224, 227, 235, 0.9);
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.92);
  }

  .live_creator_actions_stack .button-group,
  .live_creator_actions_stack .button-group button {
    width: 100%;
  }

  .live_creator_actions_stack .button-group button,
  .live_pin_product_btn,
  .live_interactions_toggle_btn {
    min-height: 36px;
    margin-bottom: 0;
    border-radius: 10px;
    font-size: 12px;
  }

  .live_pin_product_btn {
    background-color: #ffffff;
  }

  .live_right_in_right {
    width: 360px;
    min-height: 0;
    height: 100%;
    padding: 14px;
    background-color: #f4f6fb;
    border-left: 1px solid #e0e3eb;
  }

  .live_right_in_right_in {
    position: relative;
    left: auto;
    top: auto;
    height: calc(100% - 74px);
    padding: 12px;
    overflow-y: auto;
    border: 1px solid #e0e3eb;
    border-radius: 18px;
    background-color: #ffffff;
  }

  .live_interaction_modules {
    gap: 12px;
  }

  .live_module {
    border-radius: 14px;
  }

  .live_module_header {
    padding: 10px 12px;
  }

  .live_send_message_box_wrapper {
    width: calc(100% - 28px);
    left: 14px;
    bottom: 14px;
    padding: 8px;
    border: 1px solid #e0e3eb;
    border-radius: 18px;
    background-color: #ffffff;
  }
}

@media screen and (max-width: 1050px) {
  .live_wrapper_tik {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background-color: #05070d;
  }

  .live_right,
  .live_right_in_wrapper,
  .live_right_in_left {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
  }

  .live_right_in_wrapper {
    display: block;
  }

  .live_right_in_left {
    overflow: hidden;
  }

  .live_video_header_mobile {
    height: 64px;
    padding: 8px 10px;
    z-index: 5;
  }

  .live_video_header_mobile .live_creator_avatar_live,
  .live_video_header_mobile .live_creator_avatar_live img {
    width: 40px;
    height: 40px;
  }

  .live_video_header_mobile .live_creator_live_name_live_username {
    min-width: 0;
    max-width: calc(100vw - 210px);
  }

  .live_video_header_mobile .live_creator_live_username a,
  .live_video_header_mobile .live_creator_live_name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .live_video_header_mobile .live_mics_cameras {
    gap: 8px;
  }

  .live_video_header_mobile .i_header_btn_item_live_mobile {
    width: 42px;
    height: 42px;
  }

  .live_video_header_mobile .i_header_btn_item_live_mobile.live_header_btn_camera,
  .live_video_header_mobile .i_header_btn_item_live_mobile.live_header_btn_mic {
    background: rgba(17, 24, 39, 0.56) !important;
    border-color: rgba(255, 255, 255, 0.34) !important;
  }

  .live_video_header_mobile .i_header_btn_item_live_mobile.live_header_btn_end {
    background: #f65169 !important;
    border-color: rgba(255, 255, 255, 0.42) !important;
  }

  .live__live_video_holder.max_height_live_mobile,
  .live__live_video_holder {
    height: 100vh;
    min-height: 100vh;
    max-height: none;
    overflow: hidden;
    background-color: #05070d;
  }

  .live_vide__holder,
  .filtvid {
    height: 100vh;
    min-height: 100vh;
  }

  .live_plus_mobile {
    top: 74px !important;
    right: 12px;
    z-index: 4;
  }

  .live_plus_mobile .live_pulse {
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 999px;
    font-size: 12px;
  }

  .live_plus_mobile .live_action_menu_btn {
    margin-bottom: 0;
  }

  .live_plus_mobile .live_creator_actions_stack {
    position: absolute;
    top: 52px;
    right: 0;
    width: min(220px, calc(100vw - 24px));
    min-width: 0;
  }

  .live_plus_mobile .live_creator_actions_stack #mute-audio,
  .live_plus_mobile .live_creator_actions_stack #mute-video,
  .live_plus_mobile .live_creator_actions_stack .live_pin_product_btn,
  .live_plus_mobile .live_creator_actions_stack .live_interactions_toggle_btn {
    background-color: rgba(17, 24, 39, 0.68);
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
  }

  .live_plus_mobile .live_creator_actions_stack .live_pin_product_btn svg,
  .live_plus_mobile .live_creator_actions_stack .live_interactions_toggle_btn svg {
    fill: #ffffff;
  }

  .live_plus_mobile .live_creator_actions_stack .live_interactions_toggle_btn.is-active {
    background-color: #f65169;
    border-color: #f65169;
  }

  .live_right_in_right_mobile {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0 !important;
    top: auto !important;
    z-index: 4;
    width: 100% !important;
    height: auto;
    min-height: 0;
    max-height: min(48vh, 420px);
    padding: 0 10px 10px;
    border-left: 0 !important;
    pointer-events: none;
  }

  .live_right_in_right_mobile.live_interactions_open {
    max-height: min(66vh, 560px);
    padding-top: 12px;
  }

  .live_right_in_right_mobile .live_right_in_right_in {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    max-height: calc(min(48vh, 420px) - 74px);
    padding: 0 0 8px;
    overflow-y: auto;
    pointer-events: auto;
  }

  .live_right_in_right_mobile.live_interactions_open .live_right_in_right_in {
    max-height: calc(min(66vh, 560px) - 86px);
  }

  .live_right_in_right_mobile .live_interaction_modules {
    margin-bottom: 8px;
    padding: 8px;
    max-height: calc(min(48vh, 420px) - 86px);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.96);
  }

  .live_right_in_right_mobile.live_interactions_open .live_interaction_modules {
    max-height: calc(min(66vh, 560px) - 98px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .live_right_in_right_mobile .live_interaction_modules .live_module {
    flex: 0 0 auto;
    overflow: visible;
  }

  .live_right_in_right_mobile .live_module_body {
    overflow: visible;
  }

  .live_right_in_right_mobile .live_poll_create_title {
    color: #667085;
    font-size: 13px;
    font-weight: 600;
  }

  .live_right_in_right_mobile .live_poll_options_inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .live_right_in_right_mobile .live_poll_question_input,
  .live_right_in_right_mobile .live_poll_option_input,
  .live_right_in_right_mobile .live_qa_textarea {
    min-height: 42px;
    border-radius: 10px;
    font-size: 13px;
  }

  .live_right_in_right_mobile .live_qa_send,
  .live_right_in_right_mobile .live_poll_submit,
  .live_right_in_right_mobile .live_poll_add_option {
    min-height: 36px;
    border-radius: 10px;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-radius: 22px;
    background-color: rgba(255, 255, 255, 0.92) !important;
    pointer-events: auto;
  }

  .live_right_in_right_mobile
    .live_send_message_box_wrapper
    .tabing_non_justify
    .message_form_items
    .message_send_text
    .message_text_textarea {
    background-color: #ffffff !important;
  }

  .live_right_in_right_mobile
    .live_send_message_box_wrapper
    .tabing_non_justify
    .message_form_items
    .message_send_text
    .message_text_textarea
    .lmSize {
    min-height: 40px;
    color: #111827 !important;
    border: 1px solid #e0e3eb;
  }

  .live_right_in_right_mobile
    .live_send_message_box_wrapper
    .tabing_non_justify
    .message_form_items
    .message_send_text
    .message_text_textarea
    .message_smiley
    .message_form_smiley_plus
    .message_pls
    svg,
  .live_right_in_right_mobile
    .live_send_message_box_wrapper
    .tabing_non_justify
    .message_form_items
    .message_form_plus
    .message_pls
    svg {
    fill: #667085 !important;
  }
}

.live_interactions_close_btn {
  display: none;
}

.live_send_message_box_wrapper {
  box-sizing: border-box;
  position: relative;
  overflow: visible;
  z-index: 6;
}

.live_send_message_box_wrapper > .nanos {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 10px);
  height: 0;
  max-height: min(348px, calc(100vh - 160px));
  padding: 0 12px;
  border: 1px solid #e0e3eb;
  border-radius: 18px;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
  z-index: 90;
}

.live_send_message_box_wrapper > .nanos .Message_stickersContainer {
  height: auto;
  min-height: 100%;
  z-index: 1;
}

.live_send_message_box_wrapper > .nanos .emojis_Container {
  padding: 8px 0 12px;
}

.live_send_message_box_wrapper .tabing_non_justify,
.live_send_message_box_wrapper .message_form_items {
  width: 100%;
}

.live_send_message_box_wrapper .message_form_items {
  gap: 8px;
  align-items: center;
}

.live_send_message_box_wrapper .message_send_text {
  flex: 1 1 auto;
  min-width: 0;
}

.live_send_message_box_wrapper .message_text_textarea {
  position: relative;
  width: 100%;
  min-height: 44px;
  align-items: center;
  padding: 0 52px 0 16px;
  border: 1px solid #e0e3eb;
  border-radius: 16px;
  background-color: #f8fafc;
}

.live_send_message_box_wrapper .lmSize {
  width: 100%;
  min-height: 42px !important;
  max-height: 96px;
  padding: 11px 0;
  border: 0 !important;
  background: transparent !important;
  color: #121827 !important;
  font-size: 14px;
  line-height: 20px;
  resize: none;
  outline: 0;
}

.live_send_message_box_wrapper .lmSize::placeholder {
  color: #8d96aa;
}

.live_send_message_box_wrapper .message_smiley {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.live_send_message_box_wrapper .message_form_smiley_plus,
.live_send_message_box_wrapper .message_form_smiley_plus .message_pls {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.live_send_message_box_wrapper .message_form_smiley_plus {
  background-color: #eef2f7;
}

.live_send_message_box_wrapper .message_form_smiley_plus:hover {
  background-color: #e6ebf3;
}

.live_send_message_box_wrapper .message_form_plus.livesendmes {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  margin: 0;
  border: 0;
  border-radius: 15px;
  background-color: #f65169;
}

.live_send_message_box_wrapper .message_form_plus.livesendmes:hover {
  background-color: #e8445d;
}

.live_send_message_box_wrapper .message_form_plus.livesendmes .message_pls {
  width: 100%;
  height: 100%;
}

.live_send_message_box_wrapper .message_form_plus.livesendmes svg,
.live_send_message_box_wrapper .message_form_plus.livesendmes svg * {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

@media screen and (min-width: 1051px) {
  .live_send_message_box_wrapper {
    min-height: 62px;
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 1050px) {
  .live_right_in_right_mobile.live_interactions_open .live_interactions_close_btn {
    position: absolute;
    top: 12px;
    right: 18px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #e0e3eb;
    border-radius: 14px;
    background-color: #ffffff;
    pointer-events: auto;
  }

  .live_right_in_right_mobile.live_interactions_open .live_interactions_close_btn svg {
    width: 18px;
    height: 18px;
    fill: #667085;
  }

  .live_right_in_right_mobile.live_interactions_open .live_right_in_right_in {
    padding-top: 46px;
    max-height: calc(min(66vh, 560px) - 40px);
  }

  .live_right_in_right_mobile.live_interactions_open .live_interaction_modules {
    max-height: calc(min(66vh, 560px) - 58px);
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper {
    padding: 7px;
    border-radius: 20px;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper > .nanos {
    bottom: calc(100% + 8px);
    max-height: min(320px, 44vh);
    border-radius: 16px;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper .message_form_items {
    gap: 7px;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper .message_text_textarea {
    min-height: 42px;
    padding-right: 48px;
    border-radius: 15px;
    background-color: #ffffff !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper .lmSize {
    min-height: 40px !important;
    padding: 10px 0;
    font-size: 14px;
    line-height: 20px;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper .message_form_plus.livesendmes {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
  }
}

.live_send_message_box_wrapper .message_smiley {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live_send_message_box_wrapper .message_form_smiley_plus {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid #e0e3eb;
}

.live_send_message_box_wrapper .message_form_smiley_plus .message_pls {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.live_send_message_box_wrapper .message_form_smiley_plus .message_pls svg {
  width: 18px;
  height: 18px;
  fill: #667085 !important;
}

.live_send_message_box_wrapper .message_form_smiley_plus:hover {
  border-color: #d8dfec;
  background-color: #f3f6fb;
}

.live_send_message_box_wrapper .message_form_smiley_plus:hover .message_pls svg {
  fill: #121827 !important;
}

@media screen and (max-width: 1050px) {
  .live_right_in_right_mobile .live_send_message_box_wrapper .message_smiley {
    right: 7px;
    width: 38px;
    height: 38px;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper .message_form_smiley_plus,
  .live_right_in_right_mobile .live_send_message_box_wrapper .message_form_smiley_plus .message_pls {
    width: 36px;
    height: 36px;
  }
}

.live_schedule_fields {
  display: none;
  margin-top: 10px;
}

/* Aura paid live refinement */
.live_setup_modal--paid .live_setup_header:before,
.live_setup_modal--paid .live_setup_header:after {
  display: none;
}

.live_setup_modal--paid .live_setup_header,
.live_setup_modal--paid .live_setup_footer {
  background: #ffffff !important;
}

.live_setup_modal--paid .live_setup_panel--hero,
.live_setup_modal--paid .live_setup_fee_input,
.live_setup_modal--paid .live_setup_inline_note {
  background: #fbfcff !important;
}

.live_setup_modal--paid .live_setup_header_badge,
.live_setup_modal--paid .live_setup_footer .alertBtnRightWithIcon,
.live_setup_modal--paid .live_notify_select_btn,
.purchase_live_stream_modal .purchase_live_stream_modal_submit,
.paid_live_gate .paid_live_gate_submit,
.paid_live_gate .paid_live_gate_points,
.purchase_live_stream_modal .purchase_live_stream_modal_points {
  background: #f65169 !important;
  background-image: none !important;
}

.live_setup_modal--paid .live_setup_header_badge,
.live_setup_modal--paid .live_setup_footer .alertBtnRightWithIcon,
.live_setup_modal--paid .live_notify_select_btn,
.purchase_live_stream_modal .purchase_live_stream_modal_submit,
.paid_live_gate .paid_live_gate_submit {
  box-shadow: none !important;
}

.purchase_live_stream_modal .purchase_live_stream_modal_header,
.purchase_live_stream_modal .purchase_live_stream_modal_summary {
  background: #ffffff !important;
  background-image: none !important;
}

.purchase_live_stream_modal .purchase_live_stream_modal_body,
.purchase_live_stream_modal .purchase_live_stream_modal_footer {
  background: #f6f8fc !important;
}

.paid_live_gate .paid_live_gate_header,
.paid_live_gate .paid_live_gate_summary {
  background-image: none !important;
}

@media (max-width: 700px) {
  .live_setup_modal .live_setup_footer {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px !important;
    padding: 12px 16px calc(16px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .live_setup_modal .live_setup_footer .alertBtnLeft,
  .live_setup_modal .live_setup_footer .alertBtnRightWithIcon {
    width: auto !important;
    min-width: 0 !important;
    min-height: 44px !important;
    margin: 0 !important;
    border-radius: 14px !important;
    font-size: 14px !important;
  }

  .live_setup_modal .live_setup_footer .alertBtnRightWithIcon {
    grid-column: 2;
    grid-row: 1;
  }

  .live_setup_modal .live_setup_footer .alertBtnLeft {
    grid-column: 1;
    grid-row: 1;
  }

  .live_setup_modal .live_setup_body {
    padding-bottom: 12px !important;
  }

  .purchase_live_stream_modal .purchase_live_stream_modal_footer,
  .paid_live_gate .paid_live_gate_footer {
    gap: 10px !important;
    padding: 0 16px calc(16px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

.live_schedule_badge {
  background-color: #f65169;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  margin-left: 10px;
  line-height: 1;
  white-space: nowrap;
}

.live_scheduled_wrapper {
  background-color: #ffffff;
}
.live_scheduled_wrapper .live_video_header {
  padding: 16px;
}
.live_scheduled_wrapper .live_creator_live_name_live_username {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.live_scheduled_wrapper .live_creator_live_username a {
  color: #0f172a !important;
  font-weight: 700;
}
.live_scheduled_wrapper .live_creator_live_name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.live_scheduled_wrapper .live_schedule_badge {
  flex: 0 0 auto;
}

.live_scheduled_holder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.live_scheduled_panel {
  max-width: 480px;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e0e3eb;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.live_scheduled_title {
  font-size: 13px;
  font-weight: 600;
  color: #7b8292;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.live_scheduled_stream_name {
  font-size: 18px;
  font-weight: 700;
  color: #1e1f24;
  margin-bottom: 14px;
}

.live_scheduled_countdown {
  padding: 14px 0;
}

.live_countdown_value {
  font-size: 28px;
  font-weight: 700;
  color: #f65169;
}

.live_countdown_label {
  font-size: 12px;
  color: #7b8292;
}

.live_scheduled_time {
  font-size: 12px;
  color: #2c2f36;
  margin-bottom: 10px;
}

.live_scheduled_actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.live_start_now_btn,
.live_reminder_btn {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid #e0e3eb;
  background-color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.live_start_now_btn {
  background-color: #2c2f36;
  color: #ffffff;
  border-color: #2c2f36;
}

.live_reminder_btn.is-active {
  background-color: #f65169;
  color: #ffffff;
  border-color: #f65169;
}

.live_scheduled_side_card {
  padding: 12px;
  border: 1px solid #e0e3eb;
  border-radius: 12px;
  background-color: #f9f9fb;
}

.live_scheduled_side_title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.live_scheduled_side_note {
  font-size: 12px;
  color: #7b8292;
}

.live_pin_product_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.live_pin_product_item {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid #e0e3eb;
  border-radius: 10px;
  padding: 10px;
}

.live_pin_product_media {
  width: 70px;
  height: 70px;
  background-color: #f3f4f7;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live_pin_product_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live_pin_product_placeholder {
  font-size: 11px;
  color: #7b8292;
}

.live_pin_product_meta {
  flex: 1;
}

.live_pin_product_type {
  font-size: 11px;
  font-weight: 600;
  color: #f65169;
  text-transform: uppercase;
}

.live_pin_product_name {
  font-size: 13px;
  font-weight: 600;
}

.live_pin_product_price {
  font-size: 12px;
  color: #2c2f36;
}

.live_pin_product_actions button {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #e0e3eb;
  background-color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.live_pin_product_empty {
  font-size: 12px;
  color: #7b8292;
}

.live_pin_modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
}

.live_pin_modal .live_pin_modal_shell {
  width: min(760px, calc(100vw - 24px));
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.2);
  overflow: hidden;
}

.live_pin_modal .live_pin_modal_content {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: transparent;
}

.live_pin_modal .live_pin_modal_header {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-height: 82px;
  padding: 20px 24px 16px !important;
  padding-right: 78px !important;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%) !important;
  border-bottom: 1px solid #e7edf6 !important;
}

.live_pin_modal .live_pin_modal_title {
  color: #18233d;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.live_pin_modal .live_pin_modal_close {
  position: absolute !important;
  right: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  padding: 10px !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid #dce5f0 !important;
  box-shadow: none !important;
}

.live_pin_modal .live_pin_modal_close:hover {
  background: #ffffff !important;
  border-color: #ccd8e7 !important;
}

.live_pin_modal .live_pin_modal_close svg {
  width: 15px !important;
  height: 15px !important;
  fill: #5b6781 !important;
}

.live_pin_modal .live_pin_modal_body {
  padding: 18px 20px 20px;
  background: #f8fafc;
}

.live_pin_modal .live_pin_product_list {
  gap: 14px;
}

.live_pin_modal .live_pin_product_item {
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid #dbe4ef;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fe 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.live_pin_modal .live_pin_product_media {
  width: 84px;
  height: 84px;
  min-width: 84px;
  border-radius: 18px;
  background: #eef2f8;
}

.live_pin_modal .live_pin_product_placeholder {
  font-size: 12px;
  font-weight: 700;
  color: #8793a8;
  text-align: center;
  line-height: 1.3;
  padding: 8px;
}

.live_pin_modal .live_pin_product_meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.live_pin_modal .live_pin_product_type {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #f65169;
}

.live_pin_modal .live_pin_product_name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #1f2b45;
  word-break: break-word;
}

.live_pin_modal .live_pin_product_price {
  font-size: 15px;
  font-weight: 700;
  color: #51617d;
}

.live_pin_modal .live_pin_product_actions {
  margin-left: auto;
}

.live_pin_modal .live_pin_product_actions button {
  min-width: 92px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid #d7e1ee;
  background: #ffffff;
  color: #2f405f;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

.live_pin_modal .live_pin_product_actions button:hover {
  background: #f6f9fe;
  border-color: #cbd7e8;
}

.live_pin_modal .live_pin_product_empty {
  padding: 18px;
  border-radius: 20px;
  border: 1px dashed #d6deeb;
  background: #ffffff;
  color: #7b8292;
  font-size: 14px;
  text-align: center;
}

.live_pin_modal .live_pin_modal_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 20px 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-top: 1px solid #e8eef7;
}

.live_pin_modal .live_pin_modal_cancel {
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 16px;
  background: #8b96b7;
  border: 1px solid #7f89a9;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

.live_pin_modal .live_pin_modal_cancel:hover {
  background: #7f89a9;
  border-color: #75809f;
}

.ty_post {
  background-color: #1e88e5;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.ty_profile {
  background-color: #f65169;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.ty_point {
  background-color: #f57c00;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.ty_live_stream {
  background-color: #f87855;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.ty_tips {
  background-color: #f65169;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.ty_live_gift {
  background-color: #fab429;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.ty_product {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.ty_unlockmessage {
  background: #0097a7;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

@keyframes pulse-live {
  0% {
    background-color: #f65169;
  }
  100% {
    background-color: #fab429;
  }
}
@-webkit-keyframes pulse-live {
  0% {
    background-color: #f65169;
  }
  100% {
    background-color: #fab429;
  }
}
/*Version 2.9 Style FINISHED*/
@-webkit-keyframes dot-pulse-before {
  0% {
    -webkit-box-shadow: 9984px 0 0 -5px #f65169;
    box-shadow: 9984px 0 0 -5px #f65169;
  }
  30% {
    -webkit-box-shadow: 9984px 0 0 2px #f65169;
    box-shadow: 9984px 0 0 2px #f65169;
  }
  60%,
  100% {
    -webkit-box-shadow: 9984px 0 0 -5px #f65169;
    box-shadow: 9984px 0 0 -5px #f65169;
  }
}
@keyframes dot-pulse-before {
  0% {
    -webkit-box-shadow: 9984px 0 0 -5px #f65169;
    box-shadow: 9984px 0 0 -5px #f65169;
  }
  30% {
    -webkit-box-shadow: 9984px 0 0 2px #f65169;
    box-shadow: 9984px 0 0 2px #f65169;
  }
  60%,
  100% {
    -webkit-box-shadow: 9984px 0 0 -5px #f65169;
    box-shadow: 9984px 0 0 -5px #f65169;
  }
}
@-webkit-keyframes dot-pulse {
  0% {
    -webkit-box-shadow: 9999px 0 0 -5px #f65169;
    box-shadow: 9999px 0 0 -5px #f65169;
  }
  30% {
    -webkit-box-shadow: 9999px 0 0 2px #f65169;
    box-shadow: 9999px 0 0 2px #f65169;
  }
  60%,
  100% {
    -webkit-box-shadow: 9999px 0 0 -5px #f65169;
    box-shadow: 9999px 0 0 -5px #f65169;
  }
}
@keyframes dot-pulse {
  0% {
    -webkit-box-shadow: 9999px 0 0 -5px #f65169;
    box-shadow: 9999px 0 0 -5px #f65169;
  }
  30% {
    -webkit-box-shadow: 9999px 0 0 2px #f65169;
    box-shadow: 9999px 0 0 2px #f65169;
  }
  60%,
  100% {
    -webkit-box-shadow: 9999px 0 0 -5px #f65169;
    box-shadow: 9999px 0 0 -5px #f65169;
  }
}
@-webkit-keyframes dot-pulse-after {
  0% {
    -webkit-box-shadow: 10014px 0 0 -5px #f65169;
    box-shadow: 10014px 0 0 -5px #f65169;
  }
  30% {
    -webkit-box-shadow: 10014px 0 0 2px #f65169;
    box-shadow: 10014px 0 0 2px #f65169;
  }
  60%,
  100% {
    -webkit-box-shadow: 10014px 0 0 -5px #f65169;
    box-shadow: 10014px 0 0 -5px #f65169;
  }
}
@keyframes dot-pulse-after {
  0% {
    -webkit-box-shadow: 10014px 0 0 -5px #f65169;
    box-shadow: 10014px 0 0 -5px #f65169;
  }
  30% {
    -webkit-box-shadow: 10014px 0 0 2px #f65169;
    box-shadow: 10014px 0 0 2px #f65169;
  }
  60%,
  100% {
    -webkit-box-shadow: 10014px 0 0 -5px #f65169;
    box-shadow: 10014px 0 0 -5px #f65169;
  }
}
@media screen and (max-width: 900px) {
  .live_list_box_wrapper_live {
    width: calc(33.3333333333% - 0px);
    width: -o-calc(100% / 3 - 0px);
    width: -ms-calc(100% / 3 - 0px);
  }
}
@media screen and (max-width: 400px) {
  .live_list_box_wrapper_live {
    width: calc(50% - 0px);
    width: -o-calc(100% / 2 - 0px);
    width: -ms-calc(100% / 2 - 0px);
  }
}
@media screen and (max-width: 400px) {
  .live_list_box_wrapper_live {
    width: calc(100% - 0px);
    width: -o-calc(100% / 1 - 0px);
    width: -ms-calc(100% / 1 - 0px);
  }
}
.appendBoxLive {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(15, 23, 42, 0.46);
  z-index: 70;
  left: 0;
  top: 0;
  bottom: 0;
}

/*Version 3.3 STARTED*/
.qrCodeGenerator {
  padding: 8px 12px;
  color: #ffffff;
  background-color: #43a047;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.qrCodeGenerator:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.qrCodeImage {
  position: relative;
  width: 100%;
}

.qrCodeImage img {
  display: block;
  position: relative;
  width: auto;
  height: auto;
  margin-bottom: 15px;
}

.qrCodeShareButtons {
  padding: 10px;
}

.qrSocialIcon {
  position: relative;
  padding: 8px;
  cursor: pointer;
}

.qrSocialIcon svg {
  width: 30px;
  height: 30px;
  display: inline-block;
}

/*Version 3.3 version 3.4 FINISHED*/
/*Version 3.5 STARTED*/
.i_wrapper_cnt {
  position: relative;
  width: 100%;
  min-height: 350px;
}

.ia_affiliate_wrapper {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: url("img/affilate.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.iu_affilate_link {
  z-index: 3;
}

.i_affilate_input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px 25px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  outline: none;
  border: none;
  background-color: #ffffff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  min-width: 360px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.affilate_earnings {
  margin: 0px auto;
  padding: 20px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  margin-bottom: 30px;
  max-width: 150px;
  position: relative;
  font-weight: 600;
  font-size: 20px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #f65169;
}

.affilate_earnings svg {
  fill: #f65169;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.affilate_not {
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}

.your_balance {
  width: 100%;
  color: #000000;
  font-size: 20px;
}

.share_to {
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  font-weight: 500;
}

.i_uploading_not {
  position: absolute;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  width: 100%;
  text-align: center;
  height: 100%;
  background-color: #ffffff;
  z-index: 5;
  width: calc(100% - 0px);
}

.point_earn_list_wrapper {
  display: block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 1px solid #f0f1f5;
  margin-top: 25px;
  padding: 25px 0px;
  padding-bottom: 0px;
}

.next_payout_not li {
  width: 100%;
  padding: 10px 0px 0px 15px;
}

.point_earn_box_cont {
  width: 100%;
  padding: 15px;
  float: left;
  width: calc(25% - 0px);
  width: -o-calc(100% / 4 - 0px);
  width: -ms-calc(100% / 4 - 0px);
  width: -moz-calc(100% / 4 - 0px);
}

.point_earn_box_cont_in {
  float: left;
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  background-color: #f0f2f5;
}

.point_earn_icon_cont {
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ffffff;
}

.point_earn_icon_wrp {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
}

.point_earn_icon_wrp svg {
  fill: #f65169;
  width: 30px;
  height: 30px;
}

.point_earn_footer {
  width: 100%;
  height: 100%;
  padding: 10px;
}

.point_earn_title_item {
  position: relative;
  margin: 0px auto;
  background-color: #ffffff;
  text-align: center;
  color: #f65169;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -o-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  margin-top: -25px;
}

.point_earn_list_wrp {
  width: 100%;
  padding: 20px 0px;
}

.earn_title_point {
  width: 100%;
  padding: 10px 5px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  font-size: 13px;
}

.r_u_s {
  font-weight: 600;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  color: #000000;
  padding: 5px 10px;
  background-color: #f0f2f5;
  margin-bottom: 10px;
}

.micList {
  position: absolute;
  width: 100%;
  min-width: 230px;
  margin-right: 0px;
  background-color: #ffffff;
  top: 46px;
  right: 0px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 15px 0px;
  display: none;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.micList a {
  width: 100%;
  display: inline-block;
  color: #000000;
  font-weight: 500;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 10px 15px;
  cursor: pointer;
  text-decoration: none;
}

.micList a:hover {
  background-color: #e0e3eb;
}

.holder_l_in .button-group button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
  background-color: rgba(15, 23, 42, 0.65);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  margin-bottom: 10px;
}

/*Version 3.5 FINISHED*/
/*Version 3.6 STARTED*/
.green-audio-player {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  width: 100% !important;
  max-width: 100% !important;
}

.myaudio {
  width: 100%;
}

.onlySubs {
  top: 0px;
}

.mentions_list {
  padding-top: 10px;
}

.ownTooltipWrapper {
  position: absolute;
  max-width: 250px;
  right: 0;
  left: auto;
  top: calc(100% + 10px);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.88);
  padding: 8px 10px;
  color: #ffffff;
  font-weight: 400;
  font-size: 13px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  pointer-events: none;
}

.create_stories {
  padding: 12px 10px;
  cursor: auto;
}

.create_stories svg {
  width: 25px;
  height: 25px;
  fill: #f65169;
}

.upload_story_image {
  display: inline-block;
  width: 113px !important;
  border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  -o-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  min-height: 201px;
  cursor: pointer;
}

.create_sotry_form_container {
  padding-top: 25px;
  position: relative;
}

.create_sotry_form_container .i_upload_progress {
  top: 128px;
}

.story_options {
  margin-top: 14px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.story_option_group {
  padding: 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #eef1f7;
}

.story_option_group + .story_option_group {
  margin-top: 10px;
}

.story_quick_replies_block.is-hidden {
  display: none;
}

.story_quick_replies_trigger {
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid #dbe1ee;
  background: #ffffff;
  font-size: 12px;
  color: #1f2937;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.story_quick_replies_trigger:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  border-color: #c7cfdf;
}

.story_option_label {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story_option_select,
.story_privacy {
  width: 100%;
  border: 1px solid #dbe1ee;
  border-radius: 10px;
  padding: 10px 12px;
  background: #f9fafb;
  color: #0f172a;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.story_overlay_fields,
.story_quick_reply_inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.story_overlay_sticker_field {
  position: relative;
  width: 100%;
  min-height: 42px;
  padding: 6px 10px;
  border: 1px solid #dbe1ee;
  border-radius: 10px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.story_overlay_sticker_field .story_overlay_sticker {
  display: none;
}

.story_sticker_trigger {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid #dbe1ee;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.story_sticker_trigger svg {
  width: 16px;
  height: 16px;
  fill: #1f2937;
}

.story_sticker_trigger:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  border-color: #c7cfdf;
}

.story_sticker_picker {
  margin-top: 10px;
}

.story_sticker_preview {
  display: none;
  align-items: center;
  gap: 10px;
}

.story_sticker_preview.is-visible {
  display: inline-flex;
}

.story_sticker_img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid #e2e7f2;
  background: #ffffff;
  padding: 4px;
  object-fit: contain;
}

.story_sticker_clear {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: 1px solid #e2e7f2;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.story_sticker_clear.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.story_sticker_clear svg {
  width: 14px;
  height: 14px;
  fill: #1f2937;
}

.story_sticker_clear:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.story_sticker_list {
  display: none;
  margin-top: 10px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #e3e7f2;
  background: #ffffff;
  max-height: 220px;
  overflow: auto;
}

.story_sticker_list.is-open {
  display: block;
}

.story_audio_field {
  position: relative;
  width: 100%;
  min-height: 42px;
  padding: 6px 10px;
  border: 1px solid #dbe1ee;
  border-radius: 10px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.story_audio_field .story_overlay_audio {
  display: none;
}

.story_audio_preview {
  display: none;
  align-items: center;
  gap: 10px;
  max-width: 70%;
}

.story_audio_preview.is-visible {
  display: inline-flex;
}

.story_audio_selected {
  font-size: 12px;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.story_audio_clear {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: 1px solid #e2e7f2;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.story_audio_clear.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.story_audio_clear svg {
  width: 14px;
  height: 14px;
  fill: #1f2937;
}

.story_audio_clear:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.story_audio_trigger {
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid #dbe1ee;
  background: #ffffff;
  font-size: 12px;
  color: #1f2937;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.story_audio_trigger:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  border-color: #c7cfdf;
}

.story_audio_list {
  display: none;
  margin-top: 10px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #e3e7f2;
  background: #ffffff;
  max-height: 220px;
  overflow: auto;
}

.story_audio_list.is-open {
  display: block;
}

.story_audio_picker_panel {
  width: 100%;
}

.story_audio_picker_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.story_audio_item {
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f7f9fc;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.story_audio_item_play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #d5ddea;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.story_audio_item_play:focus {
  outline: 2px solid #111827;
  outline-offset: 2px;
}

.story_audio_item_icon svg {
  width: 12px;
  height: 12px;
  fill: #1f2937;
}

.story_audio_item_icon_pause {
  display: none;
}

.story_audio_item.is-playing .story_audio_item_play {
  border-color: #f65169;
  background: #f65169;
}

.story_audio_item.is-playing .story_audio_item_icon svg {
  fill: #ffffff;
}

.story_audio_item.is-playing .story_audio_item_icon_play {
  display: none;
}

.story_audio_item.is-playing .story_audio_item_icon_pause {
  display: inline-flex;
}

.story_audio_item_title {
  font-size: 13px;
  color: #0f172a;
  line-height: 1.3;
  flex: 1 1 auto;
}

.story_audio_item:hover {
  transform: translateY(-2px);
  border-color: #d5ddea;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.story_sticker_picker_panel {
  width: 100%;
}

.story_sticker_picker_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 8px;
}

.story_sticker_item {
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f7f9fc;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.story_sticker_item img {
  width: 100%;
  height: 100%;
  max-height: 48px;
  object-fit: contain;
}

.story_sticker_item:hover {
  transform: translateY(-2px);
  border-color: #d5ddea;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.story_overlay_fields input,
.story_quick_reply_inputs input {
  width: 100%;
  border: 1px solid #dbe1ee;
  border-radius: 10px;
  padding: 10px 12px;
  background: #f9fafb;
  color: #0f172a;
  font-size: 13px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.story_option_select:focus,
.story_privacy:focus,
.story_overlay_fields input:focus,
.story_quick_reply_inputs input:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.story_quick_replies_block .rec_not {
  margin-top: 6px;
  font-size: 12px;
  color: #6b7280;
}

.uploaded_storie_container .add_my_text {
  border: 1px solid #e3e7f2;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.05);
  padding: 12px 14px;
}

.uploaded_storie_container .add_my_text:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.story-view-item,
.story_view_item,
.story-view-item-fake {
  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;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 95px !important;
  padding: 0px;
  border-radius: 22px !important;
  overflow: visible !important;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-right: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  scroll-snap-align: center;
  isolation: isolate;
  min-height: 0;
  max-height: none;
  gap: 6px;
  -webkit-transition:
    -webkit-transform 0.25s ease,
    -webkit-filter 0.25s ease;
  transition:
    -webkit-transform 0.25s ease,
    -webkit-filter 0.25s ease;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    -webkit-transform 0.25s ease,
    -webkit-filter 0.25s ease;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.story-view-item,
.story_view_item,
.story-view-item-fake {
  background-image: none !important;
}

.story-view-item.is-seen {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.story-view-item-fake.chsStoryw {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.story-view-item:before,
.story_view_item:before,
.story-view-item:after,
.story_view_item:after,
.story-view-item-fake:after {
  content: none !important;
}

.story-bubble {
  --story-size: 84px;
  position: relative;
  width: var(--story-size);
  height: var(--story-size);
  border-radius: 50%;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#1d8fe1),
    to(#9b51e0)
  );
  background: linear-gradient(135deg, #1d8fe1 0%, #9b51e0 100%);
  padding: 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;
  -webkit-box-shadow: 0 14px 28px rgba(76, 99, 146, 0.16);
  box-shadow: 0 14px 28px rgba(76, 99, 146, 0.16);
}

.story-bubble .story-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  padding: 0px;
  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;
}

.story-add {
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#e6e9f2),
    to(#d8dce8)
  );
  background: linear-gradient(135deg, #e6e9f2 0%, #d8dce8 100%);
  -webkit-box-shadow: 0 12px 28px rgba(109, 122, 152, 0.14);
  box-shadow: 0 12px 28px rgba(109, 122, 152, 0.14);
}

.story-add .story-ring {
  background: #f8f9ff;
}

.story-add-cta {
  position: absolute;
  bottom: 4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#6c5ce7),
    to(#9c27f5)
  );
  background: linear-gradient(135deg, #6c5ce7 0%, #9c27f5 100%);
  border: 1px solid #ffffff;
  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;
  z-index: 3;
}

.story-live .story-bubble {
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#ff5f6d),
    to(#ffc371)
  );
  background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
  -webkit-box-shadow: 0 14px 30px rgba(255, 95, 109, 0.2);
  box-shadow: 0 14px 30px rgba(255, 95, 109, 0.2);
}

.story-view-item.activated .story-bubble {
  background: linear-gradient(135deg, #dfe3ef 0%, #e9ecf5 100%);
  -webkit-box-shadow: 0 8px 18px rgba(38, 52, 92, 0.08);
  box-shadow: 0 8px 18px rgba(38, 52, 92, 0.08);
  -webkit-filter: saturate(0.7);
  filter: saturate(0.7);
}

.story-view-item.is-seen .story-bubble {
  background: linear-gradient(135deg, #dfe3ef 0%, #e9ecf5 100%);
  -webkit-box-shadow: 0 8px 18px rgba(38, 52, 92, 0.08);
  box-shadow: 0 8px 18px rgba(38, 52, 92, 0.08);
  -webkit-filter: saturate(0.7);
  filter: saturate(0.7);
}

.story-live-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 6px 12px;
  background: #ffffff;
  color: #111827;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  gap: 6px;
  z-index: 3;
}

.story-live-badge span {
  white-space: nowrap;
}

/*REMOVED story live icon*/
.story-live-icon {
  display: none;
}
/*REMOVED story live icon*/
.newSto {
  position: static;
  background: transparent;
  padding: 8px 0px 0px 0px;
  text-align: center;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.35;
  font-family:
    "Noto Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #1f2937;
  letter-spacing: 0.01em;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}

.story-view-item:hover .newSto {
  background-color: transparent;
}

.plusSIc {
  position: static;
  width: 100%;
  margin-bottom: 6px;
  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;
}

.plstr {
  position: relative;
  width: 20px;
  height: 20px;
  background: transparent;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  margin: 0px auto;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.plstr svg {
  fill: #ffffff;
  width: 17px;
  height: 17px;
}

#storie_img {
  opacity: 0;
  display: none;
}

.label_storyUpload {
  cursor: pointer;
  display: inline-block;
  z-index: 99;
  height: 26px;
  top: 0px;
}

.edit_created_stories {
  width: 100%;
  position: relative;
  padding-top: 30px;
}

.uploaded_storie_container {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  margin-bottom: 15px;
  position: relative;
}

.uploaded_storie_image {
  width: 100%;
  height: 100%;
  max-height: 500px;
  min-height: 500px;
  background-color: #2e2e2e;
  position: relative;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}

.uploaded_storie_image img {
  position: absolute;
  margin: 0px auto;
}

.uploaded_storie_before {
  border-radius: 0px !important;
}

.add_a_text {
  width: 100%;
  padding: 15px 15px 0px 15px;
}

.add_my_text {
  outline: none;
  width: 100%;
  resize: none;
  border: none;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  min-height: 55px;
  padding: 15px;
}

.uploaded_storie_image video {
  width: 100%;
  height: 500px;
}

.share_story_btn_cnt {
  width: 100%;
  padding: 8px 15px 9px 15px;
  background-color: #1e88e5;
  cursor: pointer;
  text-transform: capitalize;
  color: #ffffff;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.share_story_btn_cnt svg {
  fill: #ffffff;
  width: 17px;
  height: 17px;
  margin-right: 10px;
}

.share_story_btn_cnt:hover {
  background-color: #1170c4;
}

.dmyStory {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 5;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.dmyStory:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  background-color: #f65169;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.dmyStory svg {
  fill: #ffffff;
  width: 18px;
  height: 18px;
}

.i_uploading_not_story {
  position: absolute;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  width: 100%;
  text-align: center;
  height: 100%;
  background-color: #f0f2f5;
  z-index: 5;
  left: 0px;
  top: 0px;
}

.non-shared-yet {
  position: relative;
  width: 100%;
  display: inline-block;
  padding-top: 20px;
}

.non-shared-title-style {
  font-size: 13px;
}

.shared_storie_time {
  background-color: #ffffff;
  padding: 10px 12px;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.shared_storie_time svg {
  fill: #65676b;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.dmyStory_extra {
  top: 46px;
}

.stories_wrapper {
  position: relative;
  padding: 16px 0px !important;
  gap: 18px;
  overflow: visible;
  background-color: #ffffff !important;
  border: 1px solid #ecf0f5;
  border-radius: 28px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.stories_outer {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.stories_scroller {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  gap: 18px;
  overflow: visible;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0 18px;
  touch-action: pan-x;
  cursor: ew-resize;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.stories_wrapper .swiper {
  height: auto !important;
}

.stories_scroller.is-dragging {
  cursor: ew-resize;
}

.stories_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.stories_wrapper .swiper-slide {
  margin-right: 0 !important;
}

.stories_scroller::-webkit-scrollbar {
  display: none;
}

.stories_nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #eef1f7;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 26px rgba(20, 30, 58, 0.14);
  box-shadow: 0 10px 26px rgba(20, 30, 58, 0.14);
  color: #111827;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  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;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition:
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.stories_wrapper.has-nav .stories_nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.stories_outer.has-nav .stories_nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.stories_nav.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.stories_nav:hover {
  -webkit-transform: translateY(-50%) scale(1.04);
  transform: translateY(-50%) scale(1.04);
}

.stories_nav:active {
  -webkit-transform: translateY(-50%) scale(0.98);
  transform: translateY(-50%) scale(0.98);
}

.stories_nav-prev {
  left: -18px;
}

.stories_nav-next {
  right: -18px;
}

.mystoriesstyle {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  padding-bottom: 3px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.story-view-item .media,
.story_view_item .media {
  display: none;
}

.story-link {
  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;
  gap: 12px;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.story-view-item .name,
.story-view-item-fake .name,
.story_view_item .name {
  position: static;
  width: 100%;
  text-align: center;
  color: #1f2937;
  font-size: 12px;
  font-weight: 500;
  font-family:
    "Noto Sans",
    system-ui,
    -apple-system,
    sans-serif;
  letter-spacing: 0.01em;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  text-shadow: none;
  background: transparent;
  padding: 0;
  text-transform: none;
  line-height: 1.3;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.story-view-item.activated {
  opacity: 0;
}

.story-view-item.activated .name {
  opacity: 0;
}

.sv-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2147483647;
}

.sv-container.transition {
  transition: -webkit-transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}

.sv-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition:
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  -webkit-transition:
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
  z-index: 1000;
}

.sv-mask.swipe-close {
  overflow: hidden;
  width: 50px;
  height: 50px;
  -webkit-transform: scale(0);
  transform: scale(0);
  border-radius: 50%;
}

.sv-mask.open {
  opacity: 1;
}

.sv-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  background: #000000;
  border-radius: 50%;
  z-index: 1001;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.sv-view.removing {
  opacity: 0;
}

.sv-view.move {
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}

.sv-view.open {
  width: 100% !important;
  height: 100% !important;
  border-radius: 0;
}

.sv-view.open .close {
  opacity: 1;
  visibility: visible;
}

.sv-view .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;
  position: absolute;
  top: 40px;
  right: 10px;
  color: #ffffff;
  width: 35px;
  height: 35px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;
  z-index: 999;
  line-height: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.sv-view .close img {
  height: 20px;
}

.sv-view .story-audio-controls {
  position: absolute;
  top: 40px;
  right: 55px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.sv-view.open .story-audio-controls {
  opacity: 1;
  visibility: visible;
}

.sv-view .story-audio-controls.is-hidden {
  display: none;
}

.sv-view .story-audio-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.sv-view .story-audio-btn svg {
  width: 18px;
  height: 18px;
}

.sv-view .story-audio-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.sv-view .story-audio-badge {
  position: absolute;
  top: 80px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-size: 12px;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: none;
  z-index: 2;
}

.sv-view .story-audio-badge.is-visible {
  display: inline-flex;
}

.sv-view .story-audio-element {
  display: none;
}

.sv-view .story-audio-tip {
  position: absolute;
  top: 85px;
  right: 55px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 12px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 998;
}

.sv-view .story-audio-tip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sv-view .story-audio-tip:after {
  content: "";
  position: absolute;
  top: -6px;
  right: 16px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.7) transparent;
}

.sv-view .content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 1;
  -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;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.sv-view .content .current-media {
  max-height: 100%;
  max-width: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sv-view .content .current-media.effect {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.sv-view .content img,
.sv-view .content video {
  transition:
    opacity 0.1s ease,
    -webkit-transform 0.1s ease;
  -webkit-transition:
    opacity 0.1s ease,
    -webkit-transform 0.1s ease;
  transition:
    transform 0.1s ease,
    opacity 0.1s ease;
  transition:
    transform 0.1s ease,
    opacity 0.1s ease,
    -webkit-transform 0.1s ease;
  opacity: 0;
}

.sv-view .content img.next,
.sv-view .content video.next {
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}

.sv-view .content img.prev,
.sv-view .content video.prev {
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}

.sv-view .content .media-container {
  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;
  height: 100%;
  width: 100%;
}

.sv-view .media-bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 5px;
  margin: 0;
  padding: 0;
  min-height: 45px;
  list-style: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sv-view .media-bars li {
  position: relative;
  width: 100%;
  min-height: 3px;
  margin: 0 3px;
  border-radius: 3px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
}

.sv-view .media-bars .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 5px;
  background-color: #ffffff;
}

.sv-view .profile {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 40px;
  left: 15px;
  max-width: 240px;
  padding-right: 40px;
  height: 35px;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border-radius: 40px;
  transition:
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  -webkit-transition:
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    -webkit-transform 0.2s ease;
  z-index: 2;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition-delay: 0;
  transition-delay: 0;
}

.sv-view .profile.show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sv-view .profile:not(.can-visible) {
  opacity: 0 !important;
}

.sv-view .profile.sv-profile-image:not(.sv-profile-name) {
  padding-left: 5px;
  padding-right: 5px;
}

.sv-view .profile.sv-profile-image:not(.sv-profile-name) .image {
  margin-left: 0;
}

.sv-view .profile.sv-profile-image:not(.sv-profile-name) .name {
  display: none;
}

.sv-view .profile.sv-profile-name:not(.sv-profile-image) {
  padding-left: 40px;
}

.sv-view .profile.sv-profile-name:not(.sv-profile-image) .name {
  margin-left: 0;
}

.sv-view .profile.sv-profile-name:not(.sv-profile-image) .image {
  display: none;
}

.sv-view .profile .image {
  width: 35px;
  height: 35px;
  min-width: 35px;
  min-height: 35px;
  border-radius: 50%;
  margin-left: 5px;
  background: transparent none no-repeat center center/cover;
}

.sv-view .profile .name {
  display: block;
  max-height: 60px;
  margin-left: 10px;
  font-size: 13px;
  color: #ffffff;
}

.sv-view .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.sv-view--with-reply .hereText {
  bottom: 70px;
}

.hereText {
  position: absolute;
  width: 100%;
  margin: 0px auto;
  max-width: 360px;
  text-align: center;
  bottom: 0px;
  padding: 16px 18px 18px;
  color: #ffffff;
  font-size: 15px;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -o-border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: auto;
  box-sizing: border-box;
  display: none;
}

.hereText.is-hidden {
  display: none;
}

.hereText.is-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.story-reply {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 16px calc(12px + env(safe-area-inset-bottom));
  z-index: 6;
  pointer-events: auto;
}

.story-reply-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 8px 6px 14px;
}

.story-reply-input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  padding: 6px 0;
}

.story-reply-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.story-reply-input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.story-reply-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 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;
  cursor: pointer;
  padding: 0;
}

.story-reply-send svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.story-reply-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.story-reply-status {
  margin-top: 6px;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.story-reply-status.is-visible {
  opacity: 1;
}

.story-reply-status.is-error {
  color: #ffb4b4;
}

.story-reactions,
.story-quick-replies {
  position: absolute;
  left: 0;
  right: 0;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  z-index: 6;
  pointer-events: auto;
}

.story-reactions {
  bottom: calc(120px + env(safe-area-inset-bottom));
}

.story-quick-replies {
  bottom: calc(78px + env(safe-area-inset-bottom));
  display: none;
}

.story-reactions.is-hidden {
  display: none;
}

.story-quick-replies.is-visible {
  display: flex;
}

.story-reaction-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
}

.story-reaction-btn.is-selected {
  background: rgba(255, 255, 255, 0.85);
  color: #111111;
}

.story-reactions.is-loading .story-reaction-btn {
  opacity: 0.6;
  pointer-events: none;
}

.story-quick-reply-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  touch-action: manipulation;
}

.story-overlays {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.story-overlays.is-hidden {
  display: none;
}

.story-overlay {
  position: absolute;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-size: 12px;
  text-decoration: none;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: auto;
}

.story-overlay.is-visible {
  display: inline-flex;
}

.story-overlay-link {
  top: 80px;
  left: 16px;
}

.story-overlay-mention {
  top: 80px;
  right: 16px;
}

.story-overlay-sticker {
  bottom: 140px;
  right: 16px;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.story-overlay-sticker.is-visible {
  display: flex;
}

.story-overlay-sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1 !important;
}

.story-overlay-layer {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 76%;
  box-sizing: border-box;
  min-width: 42px;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 18px;
  color: #ffffff;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.52);
  transform-origin: center center;
  overflow-wrap: break-word;
  word-break: normal;
  pointer-events: none;
}

.story-overlay-layer-text {
  width: auto;
  max-width: calc(100% - 32px);
  white-space: normal;
}

.story-overlay-layer-badge {
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(12, 17, 29, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: auto;
  white-space: nowrap;
}

.story-overlay-layer-link {
  background: rgba(30, 136, 229, 0.88);
}

.story-overlay-layer-sticker {
  --story-sticker-size: 112px;
  width: var(--story-sticker-size, 112px);
  height: var(--story-sticker-size, 112px);
  max-width: none;
  min-width: 0;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  line-height: 0;
  text-shadow: none;
}

.story-overlay-layer-sticker img {
  display: block;
  width: var(--story-sticker-size, 112px);
  height: var(--story-sticker-size, 112px);
  object-fit: contain;
  visibility: visible !important;
  opacity: 1 !important;
}

.story-overlay-layer-quick-replies {
  width: min(300px, 86vw);
  display: grid;
  align-items: stretch;
  justify-content: stretch;
  justify-items: stretch;
  align-content: start;
  gap: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 28px;
  background: transparent;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.28));
  text-shadow: none;
  backdrop-filter: none;
  pointer-events: auto;
}

.story-overlay-quick-reply-title {
  width: 100%;
  box-sizing: border-box;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px 12px;
  border-radius: 28px 28px 0 0;
  background: #0d1320;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.story-overlay-quick-reply-options {
  width: 100%;
  box-sizing: border-box;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 0 0 28px 28px;
  background: #ffffff;
}

.story-overlay-quick-reply-btn {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 18px;
  background: #eef1f6;
  color: #101828;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.sv-view .story-overlay-layer-quick-replies .story-overlay-quick-reply-btn {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 16px;
  border-radius: 18px;
  background: #eef2f7;
  color: #101828;
  border-color: transparent;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
}

.sv-view .story-overlay-layer-quick-replies .story-overlay-quick-reply-btn:hover,
.sv-view .story-overlay-layer-quick-replies .story-overlay-quick-reply-btn:focus-visible {
  transform: none;
  background: #dfe4ec;
  color: #101828;
  border-color: transparent;
}

.story-access-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  z-index: 7;
  transition: opacity 0.2s ease;
}

.story-access-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.story-access-content {
  max-width: 320px;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.story-access-text {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 12px;
}

.story-access-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.story-access-btn {
  border: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-weight: 600;
  cursor: pointer;
}

.story-access-btn.is-hidden {
  display: none;
}

.story-access-btn.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.gradient {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0)),
    to(rgb(0, 0, 0))
  );
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  height: 100%;
}

.hereTextContent {
  width: 100%;
  position: relative;
  max-height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.4;
  word-break: break-word;
}

.hereTextContent p {
  width: 100%;
  margin: 0;
}

.hereTextFade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  height: 18px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
  border-radius: 0 0 12px 12px;
}

.hereTextToggle {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hereTextToggle:hover {
  background: rgba(0, 0, 0, 0.5);
}

.hereTextToggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.hereTextClicked {
  max-height: 360px;
}

.hereTextClicked .hereTextContent {
  max-height: 260px;
  -webkit-line-clamp: unset;
  overflow-y: auto;
}

.hereTextClicked .hereTextFade {
  display: none;
}

.hereTextClicked .hereTextContent p {
  display: block;
}

@-webkit-keyframes loading-spinner {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading-spinner {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.sv-view .loading.show {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.sv-view .loading.show span {
  opacity: 1;
}

.sv-view .loading > span {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border-radius: 50%;
  border-top: 2px solid #ffffff;
  border-right: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  -webkit-animation: loading-spinner 0.6s linear infinite;
  animation: loading-spinner 0.6s linear infinite;
}

.story-view-pr-avatar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-box-shadow: none;
  box-shadow: none;
  z-index: 3;
  background: var(--story-bg, #f1f3f9);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.exBody {
  float: left;
  position: relative;
  width: 100%;
}

._pbwg8 {
  position: relative;
  float: left;
  width: calc(25% - 1px);
  width: -moz-calc(100%/4 -1px);
  padding: 1px;
}

._jjzlb {
  position: relative;
  padding-top: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #2e2e2e;
}

.exPex {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: auto;
}

.exBody {
  float: left;
  position: relative;
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  margin-bottom: 40px;
}

.exPex {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: auto;
}

.st_det {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.set_items {
  position: relative;
  width: 100%;
  height: 100%;
}

.set_ite_footer {
  position: absolute;
  bottom: 0px;
  width: 100%;
  padding: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-shadow:
    1px 1px 1px rgba(0, 0, 0, 0.35),
    1px 0 1px rgba(0, 0, 0, 0.35);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    to(rgba(0, 0, 0, 0.7))
  );
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.set_the_top_right_btns {
  position: absolute;
  right: 0px;
  padding: 10px;
  top: 0px;
  z-index: 5;
}

.set_eye {
  position: relative;
  margin: 0px auto;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 6px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  cursor: pointer;
}

.set_eye svg {
  fill: #ffffff;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.set_replies,
.set_reactions {
  position: relative;
  margin: 0 0 0 8px;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 6px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
}

.set_replies svg,
.set_reactions svg {
  fill: #ffffff;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.set_btn {
  position: relative;
  padding: 10px;
  margin-bottom: 5px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  cursor: pointer;
}

.set_btn svg {
  fill: #ffffff;
  width: 14px;
  height: 14px;
}

.viewer_list_container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
  padding: 14px 20px 20px;
  max-height: 420px;
  background: #f8fafc;
  border-top: 1px solid #eef1f7;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.viewer_list_container::-webkit-scrollbar {
  width: 8px;
}

.viewer_list_container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.viewer_list_container::-webkit-scrollbar-track {
  background: transparent;
}

.viewer_list_container {
  scrollbar-color: #cbd5e1 transparent;
  scrollbar-width: thin;
}

#storieViewersModalTitle {
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  color: #101828;
  letter-spacing: 0.2px;
}

#storieViewersModalTitle .shareClose {
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  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: 6px;
  cursor: pointer;
  -webkit-transition:
    background 0.2s ease,
    border-color 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

#storieViewersModalTitle .shareClose:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

#storieViewersModalTitle .shareClose svg {
  width: 16px;
  height: 16px;
  fill: #111827;
}

.story_analytics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
  padding: 14px 20px 8px;
}

.story_analytics_item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7f0;
  background: #ffffff;
  color: #1f2937;
  font-size: 12px;
  font-weight: 600;
  -webkit-box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

.story_analytics_item span {
  font-weight: 700;
  color: #0f172a;
}

.story_reaction_summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
  padding: 0 20px 12px;
}

.story_reaction_badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7f0;
  background: #ffffff;
  color: #111827;
  font-size: 12px;
  font-weight: 600;
  -webkit-box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

.no_one_has_viewed {
  position: relative;
  padding: 24px;
  min-height: 260px;
  font-weight: 600;
  font-size: 16px;
  color: #6b7280;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background: #ffffff;
  border: 1px dashed #e5e7eb;
  border-radius: 14px;
}

.wpr a {
  text-decoration: none;
  color: #111827;
  width: 100%;
}

.viewer_list_container .i_message_wrapper {
  background: transparent;
  border: 0;
  border-radius: 14px;
  padding: 0px !important;
  margin-bottom: 10px;
  -webkit-transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    -webkit-transform 0.2s ease;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.viewer_list_container .i_message_wrapper:last-child {
  margin-bottom: 0;
}

.viewer_list_container .i_message_wrapper:hover {
  background: transparent;
  border-color: transparent;
  -webkit-box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.viewer_list_container .i_message_owner_avatar {
  width: 44px;
  height: 44px;
  margin-right: 12px;
}

.viewer_list_container .i_message_avatar {
  width: 44px;
  height: 44px;
}

.viewer_list_container .i_message_avatar img {
  border-radius: 50%;
}

.viewer_list_container .i_message_info_container {
  gap: 4px;
}

.viewer_list_container .i_message_owner_name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.viewer_list_container .i_message_i {
  font-size: 12px;
  color: #64748b;
}

.crate_a_product_wrapper {
  position: relative;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.crate_a_product_item {
  position: relative;
  display: inline-block;
  width: 100%;
  width: 33.333%;
  padding: 10px;
}

.start_from_scratch {
  border: 2px dashed rgba(34, 34, 34, 0.05);
  height: 100px;
  background: rgba(34, 34, 34, 0.03);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #65676b;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.start_from_scratch:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  z-index: 1;
}

.cretate_item_box {
  height: 100px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 10px 15px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.cretate_item_box:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  z-index: 1;
}

.cibBoxColorOne {
  background: #1e88e5;
}

.cibBoxColorTwo {
  background: #f65169;
}

.cibBoxColorThree {
  background: #fab429;
}

.cibBoxColorFour {
  background: #9f4ec8;
}

.cibBoxColorFive {
  background: #f87855;
}

.cibIcon {
  padding: 10px;
}

.cibIcon svg {
  fill: #ffffff;
  width: 30px;
  height: 30px;
}

.create_product_form {
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.create_product_form_column {
  width: 100%;
  padding: 20px 0px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.input_title {
  width: 65%;
}

.input_title_title {
  margin-top: 8px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  padding-left: 10px;
}

.input_price {
  width: 30%;
}

.prc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px 25px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #f0f1f5;
  color: #000000;
  outline: none;
  border: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 100%;
  margin-top: 16px;
  border: 1px solid rgba(34, 34, 34, 0.05);
}

.relativePosition {
  position: relative;
}

.input_prc_padding {
  padding-left: 64px;
}

.prc_currency {
  width: 48px;
  height: 100%;
  border-right: 1px solid rgba(34, 34, 34, 0.05);
  top: 0;
  left: 0;
  font-size: 16px;
  position: absolute;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 600;
  color: #65676b;
}

.input_file_form {
  width: 20%;
}

.input_uploaded_images {
  width: 85%;
}

.i_pr_file,
.i_prd_file {
  border: 2px dashed rgba(34, 34, 34, 0.25);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: block;
  width: 100%;
  height: 100px;
}

.i_pr_file:hover,
.i_prd_file:hover {
  background-color: #f0f2f5;
}

.pr_file_,
.prd_file_ {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  position: absolute;
  cursor: pointer;
}

.i_pr_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 5px;
  cursor: pointer;
  margin-right: 5px;
}

.i_pr_btn svg {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  fill: #65676b;
}

.input_uploaded_images {
  padding-left: 10px;
}

.input_uploaded {
  width: 100%;
  background-color: #f0f2f5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  height: 100%;
}

.input_uploaded_file {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  height: 100%;
}

.col-tit {
  margin-top: 8px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  padding-left: 10px;
}

.col-tit-advanced-settings {
  margin-top: 8px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  color: #000000;
}

.col-textarea-box {
  width: 100%;
  position: relative;
}

.col-textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px 25px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #f0f1f5;
  color: #000000;
  outline: none;
  border: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 100%;
  margin-top: 16px;
  border: 1px solid rgba(34, 34, 34, 0.05);
  min-height: 100px;
}

.col-tit span svg,
.qmark span svg {
  fill: #000000;
  width: 15px;
  height: 15px;
  margin-left: 10px;
}

.pr_save_btna {
  position: relative;
  width: 100%;
  margin: 0px auto;
  text-align: center;
  padding: 15px;
  color: #ffffff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.pr_save_btna:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 1;
}

.input_uploaded .i_uploaded_item {
  position: relative;
  float: left;
  width: 98px;
  min-height: 98px;
  padding: 3px;
}

.pr_im img {
  width: 20px;
  height: auto;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  -moz-border-radius: 4px;
}

.delprod {
  padding: 8px 10px;
  color: #ffffff;
  margin-right: 10px;
  background-color: #f65169;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -moz-border-radius: 5px;
  font-size: 13px;
  font-weight: 400;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.delprod svg {
  width: 13px;
  height: 13px;
  fill: #ffffff;
  margin-right: 5px;
}

.edtprod {
  padding: 8px 10px;
  color: #ffffff;
  margin-right: 10px;
  background-color: #468cef;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -moz-border-radius: 5px;
  font-size: 13px;
  font-weight: 400;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.edtprod a {
  text-decoration: none;
  color: #ffffff;
}

.edtprod svg {
  width: 13px;
  height: 13px;
  fill: #ffffff;
  margin-right: 5px;
}

.edtprod:hover,
.delprod:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 1;
}

.crate_a_product_item a {
  text-decoration: none;
  color: #ffffff;
}

.uploadedFileContainer {
  background-color: #f0f2f5;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  width: 100%;
  max-width: 350px;
  height: 100px;
  padding: 10px;
  position: relative;
  display: none;
}

.uploadedFileContainer:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 1;
}

.uploadedFileContainer a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.theFileIcon {
  width: 50px;
  height: 50px;
  position: relative;
}

.theFileIcon svg {
  width: 50px;
  height: 50px;
}

.theFileName {
  width: 100%;
  max-width: 270px;
  color: #000000;
  font-weight: 500;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding-left: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.now_creating {
  font-weight: 600;
  font-size: 20px;
  color: #65676b;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  text-align: center;
  padding: 20px 0px;
  text-align: center;
}

.story_choice_shell {
  width: min(680px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.story_choice_modal {
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfdff 0%, #f7faff 100%);
  border: none;
  box-shadow: none;
}

.story_choice_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px 20px;
  border-bottom: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(245, 248, 252, 0.9) 100%
  );
  border-radius: 0;
}

.story_choice_head_copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.story_choice_heading {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  color: #111827;
}

.story_choice_intro {
  max-width: 440px;
  font-size: 14px;
  line-height: 1.55;
  color: #667085;
}

.story_choice_close {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.52);
  border: none;
  color: #475467;
}

.story_choice_close:hover {
  background: rgba(255, 255, 255, 0.82);
  color: #111827;
}

.story_choice_body {
  padding: 0;
  background: transparent;
}

.story_choice_body .i_block_user_nots_wrapper,
.story_choice_body .i_blck_in {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.choose_me.story_choice_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 8px 32px 32px;
}

.chsm-item {
  width: 100%;
  padding: 0;
}

.chsm-item a,
.story_choice_link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.chsm {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 216px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 22px;
  border-radius: 18px;
  border: none;
  box-shadow: none;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.chsm:before {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
}

.story_choice_link:hover .chsm,
.story_choice_link:focus-visible .chsm {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.story_choice_link:focus-visible .chsm {
  outline: none;
}

.chsm_bg_one {
  background: linear-gradient(180deg, #f4f9ff 0%, #edf4ff 100%);
}

.chsm_bg_one:before {
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.16) 0%,
    rgba(59, 130, 246, 0) 72%
  );
}

.chsm_bg_two {
  background: linear-gradient(180deg, #fff7f2 0%, #fff0e7 100%);
}

.chsm_bg_two:before {
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.18) 0%,
    rgba(249, 115, 22, 0) 72%
  );
}

.story_choice_card_top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.chsm_icon {
  width: 56px;
  height: 56px;
  margin: 0;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  box-shadow: none;
}

.chsm_bg_one .chsm_icon {
  color: #2563eb;
}

.chsm_bg_two .chsm_icon {
  color: #ea580c;
}

.chsm_icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.story_choice_card_body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chsm_title {
  color: #0f172a;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  padding: 0;
  width: 100%;
  justify-content: flex-start;
}

.story_choice_desc {
  max-width: 280px;
  color: #667085;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.55;
}

.st_bg_cont {
  padding: 5px;
}

.create_text_story_bg_wrapper {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 10px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.st_img_wrapper {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.st_img_wrapper:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  z-index: 1;
}

.choosed_bg {
  border: 3px solid #1170c4;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  z-index: 1;
}

.bgs {
  width: 100%;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 15px;
  color: #444444;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-bottom: 1px solid #f9f9fb;
  margin-bottom: 15px;
}

.typing_textarea {
  width: 100%;
  position: relative;
}

.strt_typing {
  position: relative;
  width: 100%;
  min-height: 200px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border: 1px solid #e4e6eb;
  font-size: 1rem;
  font-weight: 500;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 10px;
}

.choosed_image {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 20px;
  background-color: #2e2e2e;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  padding: 40px 0px;
}

.choosed_image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.choosed_image_or {
  width: 100%;
  position: relative;
  max-width: 400px;
  margin: 0px auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
}

.text_typed {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  font-family: "Bebas Neue", cursive;
  font-size: 25px;
  font-weight: 600;
  padding: 20px;
}

.hereTextStyle_one {
  width: 100%;
  max-width: 527px;
  font-family: "Bebas Neue", cursive;
  font-size: 25px;
  color: #ffffff;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  bottom: auto;
  background-color: transparent;
  border: 0;
  padding: 0 20px;
  overflow-y: none !important;
  text-align: center;
  display: -ms-inline-grid;
  display: inline-grid;
  display: -moz-inline-grid;
  white-space: break-spaces;
  word-break: break-all;
}

.share_my_story {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.share_my_story .share_story_btn_cnt {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
}

.share_my_story .share_story_btn_cnt {
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.share_my_story:hover .share_story_btn_cnt {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
  z-index: 1;
}

.product_wrapper {
  width: 100%;
  max-width: 1140px;
  margin: 0px auto;
  padding: 0px 15px;
  padding-top: 20px;
}

.product_details_left {
  position: relative;
  width: 60%;
  height: 100%;
}

.product_details_right {
  position: relative;
  width: 40%;
  height: 100%;
}

.product_images_container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
}

.product_images_container .swiper {
  width: 100%;
  height: auto;
  max-height: 500px;
  position: relative;
}

.product_images_container .swiper {
  background-color: #ffffff;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
}

.swiper-img {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0px;
}

.swiper-img video {
  width: 100%;
  height: auto;
}

.timp {
  display: block;
  min-height: 0px;
  max-height: 500px;
  height: auto;
  min-width: 0px;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product_images_container .swiper .swiper-pagination {
  background-color: #ffffff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
}

.product_p_description {
  padding-top: 20px;
  width: 100%;
  position: relative;
}

.product__description {
  width: 100%;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.product__d_all {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.3rem;
}

.other_items_by_owner {
  width: 100%;
  max-width: 1140px;
  margin: 0px auto;
  padding: 18px 16px 10px;
  margin-top: 20px;
  background: linear-gradient(135deg, #fff4f5, #f4f7ff);
  border: 1px solid #f0e9f4;
  border-radius: 16px;
  -webkit-box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.other_items_by_owner_title {
  width: 100%;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 20px;
  color: #0f172a;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.other_items_by_owner_title a {
  text-decoration: none;
  color: #f65169;
  font-weight: 700;
}

.i_other_products_container {
  width: 100%;
  padding: 10px 0px 6px;
  gap: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.s_p_product_container {
  width: 100%;
  max-width: 285px;
  min-width: 240px;
  padding: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 250px;
  flex: 1 1 250px;
}

.s_p_product_wrapper {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.s_p_product_wrapper:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  z-index: 1;
}

.s_p_product_container a {
  text-decoration: none;
}

.product_image {
  position: relative;
  width: 100%;
  height: 200px;
  margin: 0px;
  background-color: #fffaf5;
  overflow: hidden;
}

.s_p_details {
  width: 100%;
  padding: 20px 10px;
}

.s_p_title {
  width: 100%;
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
  padding-bottom: 8px;
  text-transform: capitalize;
}

.s_p_price {
  width: 100%;
  padding-top: 10px;
  color: #f87855;
  font-weight: 700;
  font-size: 25px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.s_p_product_type {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-border-radius: 10px;
  -webkit-border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius: 10px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-radius: 10px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 3px 9px;
}

.scratch {
  color: #ffffff !important;
  background: #858fad;
}

.bookazoom {
  background: #1e88e5;
}

.digitaldownload {
  background: #f65169;
}

.liveeventticket {
  background: #fab429;
}

.artcommission {
  background: #9f4ec8;
}

.joininstagramclosefriends {
  background: #f87855;
}

.product_details_right_in {
  width: 100%;
  position: relative;
  background-color: transparent;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  margin-left: 15px;
  padding: 0px;
  margin-bottom: 15px;
}

.h_product_title {
  display: inline-block;
  width: 100%;
  font-weight: 700;
  font-size: 22px;
  color: #65676b;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  margin: 0px;
  text-transform: capitalize;
}

.s_p_owner_cont {
  position: relative;
  width: 100%;
}

.i_unm_product {
  padding-bottom: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_unm_product svg {
  fill: #4c7ae4;
  width: 15px;
  height: 15px;
  margin-left: 8px;
}

.s_p_owner_cont .i_u_details {
  margin-top: 20px;
  margin-bottom: 10px;
}

.product_details_right_in .s_p_price {
  width: 100%;
  padding-top: 10px;
  color: #f87855;
  font-weight: 600;
  font-size: 26px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding-bottom: 10px;
}

.buy_my_product {
  width: 100%;
  padding: 10px 0px;
  display: inline-block;
}

.buy__myproduct {
  width: 100%;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.buy__myproduct:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  z-index: 1;
}

.buy__myproduct svg {
  fill: #ffffff;
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.s_p_price span {
  font-weight: 400;
  font-size: 15px;
}

.product_details_right_in .s_p_product_type {
  margin-bottom: 15px;
}

.s_share_on_social {
  width: 100%;
  position: relative;
  padding: 20px 0px;
}

.s_social {
  position: relative;
  font-weight: 500;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
}

.s_social svg {
  fill: #43a047;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.on_s {
  position: relative;
  margin-right: 15px;
  cursor: pointer;
}

.on_s svg {
  width: 16px;
  height: 16px;
}

.s_p_s_p {
  width: 100%;
  position: relative;
  margin-top: 15px;
  padding: 15px 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #f0f2f5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  color: #000000;
}

.s__p {
  position: relative;
  width: 100%;
}

.s__p:first-child {
  border-right: 1px solid #f0f2f5;
}

.s__p svg {
  fill: #f65169;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.purchase_pp_container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 15px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.yourWallet,
.p_p_wallet_cont,
.s_p_p_before,
.s_p_p_p_download,
.s_p_live_not {
  width: 100%;
  padding: 0px 0px;
  position: relative;
}

.your_wallet_icon_cont {
  position: relative;
  width: 100%;
}

.your_wallet_icon {
  background-color: #f0f2f5;
  margin: 0px auto;
  padding: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
}

.your_wallet_icon svg {
  fill: #f65169;
  width: 40px;
  height: 40px;
}

.crnt_points span {
  font-weight: 400;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #f65169;
}

.s_p_p_before {
  font-weight: 700;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #43a047;
  margin-top: 10px;
  padding: 10px 0px;
}

.s_p_p_before svg {
  fill: #43a047;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.s_p_p_p_download {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  padding: 15px;
  background: rgb(63, 94, 251);
  background: linear-gradient(
    319deg,
    rgb(63, 94, 251) 0%,
    rgb(252, 70, 107) 100%
  );
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.s_p_p_p_download:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  z-index: 1;
}

.s_p_p_p_download svg {
  fill: #ffffff;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.s_p_p_p_download a {
  text-decoration: none;
  color: #ffffff;
}

.wrapper_product {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 72px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 150px;
  display: inline-block;
}

.s_p_live_not {
  background-color: #f0f2f5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
}

.s_p_live_not {
  padding: 15px;
  margin-top: 15px;
}

.owner_not {
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.owner_not_text {
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding-top: 15px;
  line-height: 1.2rem;
}

.product_details_right_in_top {
  width: 100%;
  position: relative;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  margin-left: 15px;
  padding: 15px;
  margin-bottom: 15px;
}

.add_new_product {
  background: linear-gradient(90deg, #f65169, #fab429);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -o-border-radius: 12px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  width: 100%;
  padding: 16px;
  position: relative;
  -webkit-box-shadow: 0 14px 28px rgba(246, 81, 105, 0.25);
  box-shadow: 0 14px 28px rgba(246, 81, 105, 0.25);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.add_new_product:hover {
  -webkit-box-shadow: 0 18px 36px rgba(246, 81, 105, 0.3);
  box-shadow: 0 18px 36px rgba(246, 81, 105, 0.3);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.add_new_product a {
  text-decoration: none;
  color: #ffffff;
}

.add_new_product a svg {
  fill: #ffffff;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.ed_del_prod {
  position: relative;
  width: 100%;
  padding-top: 15px;
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.edit_prod {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -o-border-radius: 12px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 14px;
  width: calc(50% - 6px);
  -webkit-box-shadow: 0 10px 24px rgba(34, 197, 94, 0.25);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.25);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.edit_prod:hover {
  -webkit-box-shadow: 0 14px 28px rgba(34, 197, 94, 0.3);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.3);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.edit_prod a {
  text-decoration: none;
  color: #ffffff;
}

.del_prod {
  background: linear-gradient(90deg, #ef4444, #dc2626);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -o-border-radius: 12px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 14px;
  width: calc(50% - 6px);
  cursor: pointer;
  -webkit-box-shadow: 0 10px 24px rgba(239, 68, 68, 0.25);
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.25);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.del_prod:hover {
  -webkit-box-shadow: 0 14px 28px rgba(239, 68, 68, 0.3);
  box-shadow: 0 14px 28px rgba(239, 68, 68, 0.3);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.ed_del_prod svg {
  fill: #ffffff;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.type_news {
  font-weight: 500;
  font-size: 12px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 5px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  margin-bottom: 8px;
}

.shopi svg {
  width: 18px;
  height: 18px;
}

.shop_menu_wrapper {
  max-width: 1280px;
  margin: 0px auto;
  padding: 35px 20px 25px;
  gap: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.shopping_left_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  max-width: 320px;
  position: sticky;
  top: 110px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 320px;
  flex: 0 0 320px;
}

.i_shopping_menu_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(246, 81, 105, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 0%,
      rgba(250, 180, 41, 0.15),
      transparent 45%
    ),
    #ffffff;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -o-border-radius: 14px;
  min-height: 400px;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  height: -webkit-fit-content;
  padding: 18px;
  border: 1px solid #f0f1f5;
  -webkit-box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
  gap: 8px;
}

.shop_main_wrapper {
  width: auto;
  padding-left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  min-width: 0;
}

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

.ishopping_wrapper_in {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.i_shop_title {
  display: inline-block;
  padding: 14px 12px 6px;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  margin-bottom: 4px;
  text-align: left;
}

.i_sh_menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -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;
}

.i_sh_menu_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  padding: 6px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.i_sh_menu_wrapper a {
  text-decoration: none;
  color: #000000;
}

.i_sp_menu_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 12px 14px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  color: #111827;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.i_sp_menu_box:hover {
  background-color: #f5f7fb;
  -webkit-box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.i_sp_menu_box svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 22px;
  height: 22px;
  fill: #0f172a;
  margin-right: 10px;
  -webkit-transition: fill 0.25s ease;
  transition: fill 0.25s ease;
}

.shopping_left_menu .active_p {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  color: #ffffff !important;
  -webkit-box-shadow: 0 12px 30px rgba(246, 81, 105, 0.25);
  box-shadow: 0 12px 30px rgba(246, 81, 105, 0.25);
}

.shopping_left_menu .active_p svg {
  fill: #ffffff !important;
}

.product_category_title {
  width: 100%;
  position: relative;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.product_category_title svg {
  width: 25px;
  height: 25px;
  fill: #f65169;
  margin-right: 10px;
}

.ishopping_wrapper_in .s_p_product_container {
  width: 33%;
  max-width: 100%;
}

.marketplace-hero {
  position: relative;
  width: 100%;
  padding: 20px 22px;
  border-radius: 16px;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#fff4f5),
    to(#f4f7ff)
  );
  background: linear-gradient(135deg, #fff4f5, #f4f7ff);
  border: 1px solid #f0e9f4;
  -webkit-box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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;
}

.marketplace-hero:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(246, 81, 105, 0.2), transparent 60%);
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
}

.marketplace-hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.marketplace-hero__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 14px 28px rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 28px rgba(255, 255, 255, 0.55);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.marketplace-hero__icon svg {
  width: 26px;
  height: 26px;
  fill: #f65169;
}

.marketplace-hero__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.marketplace-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f65169;
  font-weight: 800;
}

.marketplace-hero__title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.marketplace-hero__subtitle {
  font-size: 14px;
  color: #4b5563;
}

.marketplace-hero__highlights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.marketplace-hero__highlights a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #eef0f5;
  -webkit-box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
  color: #0f172a;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.marketplace-hero__highlights a:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 16px 32px rgba(17, 24, 39, 0.12);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.12);
}

.marketplace-hero__highlights a.highlight {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  color: #ffffff;
  border: 0;
  -webkit-box-shadow: 0 16px 32px rgba(246, 81, 105, 0.3);
  box-shadow: 0 16px 32px rgba(246, 81, 105, 0.3);
}

.hero-highlight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(246, 81, 105, 0.15);
  font-weight: 600;
  font-size: 13px;
  color: #0f172a;
  -webkit-box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.hero-highlight.alt {
  border-color: rgba(250, 180, 41, 0.2);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f65169;
  -webkit-box-shadow: 0 0 0 6px rgba(246, 81, 105, 0.12);
  box-shadow: 0 0 0 6px rgba(246, 81, 105, 0.12);
}

.pulse-dot.alt {
  background-color: #fab429;
  -webkit-box-shadow: 0 0 0 6px rgba(250, 180, 41, 0.12);
  box-shadow: 0 0 0 6px rgba(250, 180, 41, 0.12);
}

.marketplace-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  background: transparent;
  border-radius: 0;
  padding: 0 0 12px 0;
  margin-bottom: 0px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  gap: 12px;
}

.marketplace-toolbar__left {
  gap: 12px;
}

.toolbar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #fdf2f8;
  -webkit-box-shadow: inset 0 0 0 1px rgba(246, 81, 105, 0.15);
  box-shadow: inset 0 0 0 1px rgba(246, 81, 105, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.toolbar-icon svg {
  width: 22px;
  height: 22px;
  fill: #f65169;
}

.toolbar-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 700;
}

.toolbar-title-text {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.marketplace-toolbar__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
  align-items: center;
}

.profile-product-select {
  min-width: 200px;
  padding: 10px 0px 10px 14px;
  border-radius: 12px;
  border: 1px solid #d5d9e3;
  background: #ffffff;
  font-weight: 600;
  font-size: 14px;
  color: #111827;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23111827' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-origin: content-box;
  -webkit-box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.profile-product-select:hover {
  border-color: #c3c8d3;
  -webkit-box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
}

.profile-product-select:focus {
  outline: none;
  border-color: #f65169;
  -webkit-box-shadow: 0 0 0 3px rgba(246, 81, 105, 0.12);
  box-shadow: 0 0 0 3px rgba(246, 81, 105, 0.12);
}

.toolbar-chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background-color: #f5f7fb;
  color: #111827;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid transparent;
}

.toolbar-chip.accent {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  color: #ffffff;
  -webkit-box-shadow: 0 10px 24px rgba(246, 81, 105, 0.25);
  box-shadow: 0 10px 24px rgba(246, 81, 105, 0.25);
}

.marketplace-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(240px, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  width: 100%;
  padding: 0 10px 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  justify-items: center;
}

.marketplace-grid .s_p_product_container {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 0px;
  display: block;
  max-width: 540px;
  margin: 0 auto;
}

.marketplace-grid .s_p_product_container a {
  text-decoration: none;
}

#moreType[data-po="products"] {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(240px, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  width: 100%;
  padding: 0 0px 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  justify-items: center;
}

#moreType[data-po="products"] .s_p_product_container {
  width: 100%;
  max-width: 540px;
  min-width: 0;
  padding: 0;
  display: block;
}

#moreType[data-po="products"] .s_p_product_container a {
  text-decoration: none;
}

#moreType[data-po="products"] ~ .profile-product-filter,
#moreType[data-po="products"] + .profile-product-filter,
.profile-product-filter {
  width: 100%;
}

#moreType[data-po="products"] .i_post_body {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

#moreType[data-po="products"] .i_post_body:hover {
  box-shadow: none;
}

#moreType[data-po="products"] .marketplace-card {
  border: none;
  -webkit-box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
}

#moreType[data-po="products"] .marketplace-card:hover {
  -webkit-transform: none;
  transform: none;
}

.marketplace-card {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -o-border-radius: 16px;
  border: 1px solid #eef0f5;
  -webkit-box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
  overflow: hidden;
  cursor: pointer;
  -webkit-transition:
    -webkit-transform 0.25s ease,
    -webkit-box-shadow 0.25s ease;
  transition:
    -webkit-transform 0.25s ease,
    -webkit-box-shadow 0.25s ease;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    -webkit-transform 0.25s ease,
    -webkit-box-shadow 0.25s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.marketplace-card:hover {
  -webkit-box-shadow: 0 22px 44px rgba(17, 24, 39, 0.12);
  box-shadow: 0 22px 44px rgba(17, 24, 39, 0.12);
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

.marketplace-card .product_image {
  height: 220px;
  background: #f8f9fb;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.marketplace-card .product_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition:
    transform 0.35s ease,
    -webkit-transform 0.35s ease;
}

.marketplace-card:hover .product_image img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.marketplace-card .image_tag {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.marketplace-card .s_p_details {
  padding: 16px 16px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.product-hero-card {
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#fff4f5),
    to(#f4f7ff)
  );
  background: linear-gradient(135deg, #fff4f5, #f4f7ff);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #f0e9f4;
  -webkit-box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.product-hero-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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: 12px;
}

.product-price-hero {
  margin-left: auto;
}

.product-hero-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.product-hero-owner a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.hero-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.hero-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-owner-meta .i_unm_product {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.hero-owner-meta .i_see_prof {
  font-size: 12px;
  color: #6b7280;
}

.product-hero-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.product-hero-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.product_page_shell {
  width: 100%;
  background: #f5f7fb;
}

.product_page_grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.product-market-hero {
  max-width: 1280px;
  margin: 16px auto 0px;
}

.product-market-cta {
  max-width: 1280px;
  margin: 0 auto 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #fff4f5, #f4f7ff);
  border: 1px solid #f0e9f4;
  border-radius: 16px;
  -webkit-box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-market-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.p-market-label {
  display: inline-block;
  padding: 6px 10px;
  background: rgba(246, 81, 105, 0.1);
  color: #f65169;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  border-radius: 999px;
}

.p-market-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.p-market-sub {
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}

.p-market-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-market-actions .s_p_chip {
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.p-market-actions .s_p_chip.highlight {
  background: linear-gradient(90deg, #f65169, #fab429);
  color: #ffffff;
  border: 0;
  -webkit-box-shadow: 0 10px 24px rgba(246, 81, 105, 0.25);
  box-shadow: 0 10px 24px rgba(246, 81, 105, 0.25);
}

.product-left-card {
  background-color: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
  border: 1px solid #eef0f5;
  overflow: hidden;
}

.product_images_container {
  background-color: transparent;
}

.product_p_description.card-block {
  margin-top: 0;
  padding: 20px;
  border-top: 1px solid #eef0f5;
}

.product__description {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.product-share-row .on_s svg {
  width: 18px;
  height: 18px;
}

.marketplace-card .s_p_title {
  font-size: 17px;
  line-height: 1.4;
  white-space: normal;
  color: #0f172a;
  padding-bottom: 0px;
}

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

.s_p_submeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.s_p_chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f5f7fb;
  color: #0f172a;
  font-weight: 600;
  font-size: 12px;
  -webkit-box-shadow: inset 0 0 0 1px #eef0f5;
  box-shadow: inset 0 0 0 1px #eef0f5;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.s_p_chip svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.s_p_chip.soft {
  background-color: #fdf2f8;
  color: #f65169;
  -webkit-box-shadow: inset 0 0 0 1px rgba(246, 81, 105, 0.2);
  box-shadow: inset 0 0 0 1px rgba(246, 81, 105, 0.2);
}

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

.marketplace-card .s_p_product_type {
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 12px;
  text-transform: capitalize;
}

.marketplace-price {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  background: transparent;
  color: #0f172a;
  padding: 0;
  border-radius: 0;
  font-weight: 800;
  font-size: 25px;
  letter-spacing: 0.01em;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  white-space: nowrap;
  margin-left: auto;
  text-align: right;
  width: auto;
  min-width: unset;
}

.marketplace-empty-card {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fdf2f8),
    to(#eef2ff)
  );
  background: linear-gradient(90deg, #fdf2f8, #eef2ff);
  padding: 26px 22px;
}

.marketplace-empty-card__badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(246, 81, 105, 0.1);
  color: #f65169;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-box-shadow: inset 0 0 0 1px rgba(246, 81, 105, 0.1);
  box-shadow: inset 0 0 0 1px rgba(246, 81, 105, 0.1);
}

.marketplace-empty-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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;
  gap: 12px;
}

.marketplace-empty-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.marketplace-empty-card__icon svg {
  width: 24px;
  height: 24px;
  fill: #f65169;
}

.marketplace-empty-card__title {
  font-weight: 800;
  font-size: 18px;
  color: #0f172a;
}

.marketplace-empty-card__subtitle {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}

.marketplace-empty-card__cta {
  margin-top: 6px;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  -webkit-box-shadow: 0 12px 24px rgba(246, 81, 105, 0.25);
  box-shadow: 0 12px 24px rgba(246, 81, 105, 0.25);
}

/*Version 3.6 FINISHED*/
/*Version 3.7 STARTED*/
.camcloseCall {
  background-color: #e53935;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
}

.camcloseCall svg {
  fill: #ffffff !important;
}

.i_profile_menu {
  width: 100%;
  margin-top: 18px;
}

.i_profile_menu_middle {
  position: relative;
  width: 100%;
  margin: 0px auto;
  padding: 5px;
}

.i_profile_menu_item {
  width: 100%;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.i_profile_menu_item:hover {
  background-color: #f0f2f5;
  color: #f65169;
}

.i_profile_menu_item:hover svg {
  fill: #f65169;
}

.active_page_menu {
  background-color: #f0f2f5 !important;
  color: #f65169 !important;
}

.active_page_menu a .i_p_sum {
  color: #f65169 !important;
}

.active_page_menu a .i_profile_menu_item_name {
  color: #f65169 !important;
}

.active_page_menu svg {
  fill: #f65169 !important;
}

.i_p_sum {
  font-weight: 700;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  text-align: center;
}

.i_profile_menu_item_con {
  position: relative;
  width: 100%;
}

.i_profile_menu_icon {
  padding: 5px;
}

.i_profile_menu_icon svg {
  fill: #000000;
  width: 15px;
  height: 15px;
}

.i_profile_menu_item_name {
  font-weight: 400;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
}

.i_profile_menu_item a {
  text-decoration: none;
}

.i_profile_menu_item:hover .i_p_sum {
  color: #f65169;
}

.i_profile_menu_item:hover .i_profile_menu_item_con .i_profile_menu_item_name {
  color: #f65169;
}

.i_product_post_body {
  position: relative;
  display: inline-block;
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.i_product_post_body:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  z-index: 1;
}

.i_product_post_body:nth-child(odd) {
  margin-right: 10px;
  float: left;
  width: calc(50% - 10px);
  width: -o-calc(100% / 2 - 10px);
}

.i_product_post_body:nth-child(even) {
  margin-right: 0px;
  float: left;
  width: calc(50% - 0px);
  width: -o-calc(100% / 2 - 0px);
}

.i_product_wrp_p {
  position: relative;
  width: 100%;
}

.i_product_wrp_header {
  width: 100%;
  padding: 10px 8px;
  border-bottom: 1px solid #f9f9fb;
}

.i_product_o_avatar {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

.i_product_o_avatar img {
  height: 100%;
  width: 100%;
}

.i_post_i_p {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px 0px 0px 10px;
  width: 100%;
  position: relative;
}

.i_post_username_p {
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: capitalize;
}

.i_post_username_p a {
  text-decoration: none;
  color: #444444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 200px;
}

.i_prod_p_i_c {
  position: relative;
  width: 100%;
  height: 200px;
  margin: 0px;
  background-color: #fffaf5;
}

.s_p_title a {
  text-decoration: none;
  color: #000000;
}

.move_my_point {
  width: 100%;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  margin-top: 20px;
  background-color: #f65169;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-align: center;
  color: #ffffff;
}

.move_my_point:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  z-index: 1;
}

.revenue_sum_u {
  color: #f65169;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  padding: 20px 0px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.revenue_title_u {
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  text-transform: uppercase;
  text-align: center;
}

.i_social_link_ {
  position: relative;
  width: 100%;
  padding-bottom: 10px;
}

.i_settings_item_title_for .flnmk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 15px 25px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  outline: none;
  border: none;
  background-color: #f0f1f5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  min-width: 400px;
  padding-left: 40px;
}

.i_i_social_icon {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 9px;
  top: 9px;
}

.iisocialicon svg {
  width: 16px;
  height: 16px;
}

.s_m_link {
  position: relative;
  padding: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-align: center;
}

.s_m_link svg {
  width: 24px;
  height: 24px;
}

.s_m_link:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  background-color: #e4e6eb;
  z-index: 1;
}

.i_btn_send_to_point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 10px 15px;
  font-weight: 400;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 10px;
  -webkit-boder-radius: 10px;
  background: #000000;
  cursor: pointer;
  color: #ffffff;
  -webkit-box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-left: 10px;
}

.i_btn_send_to_point:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.i_btn_send_to_point svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-right: 4px;
}

.send_tip_btn_profile {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-filex;
  padding: 13px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  color: #ffffff;
  font-weight: 500;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.send_tip_btn_profile:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.send_tip_btn_profile svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  margin-right: 10px;
}

.move_my_point_to_balance {
  width: 100%;
  position: relative;
  padding: 15px 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #f65169;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-align: center;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 500;
  font-size: 13px;
}

.move_my_point_to_balance:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  z-index: 1;
}

/*Version 3.7 FINISHED*/
/*Version 3.6.5 STARTED*/
.sp_wrp {
  width: 100%;
  position: relative;
  padding-left: 2px;
  padding-right: 2px;
  margin-bottom: 20px;
}

.sp_wrp_plus {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.suggested_products {
  position: relative;
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  background-color: #ffffff;
}

.suggested_products_plus {
  position: relative;
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  background-color: #ffffff;
}

.sp_products {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sp_product_wrapper {
  width: 100%;
  float: none;
  overflow: hidden;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -o-border-radius: 16px;
}

.sp_product_wrapper:nth-child(4n + 1),
.sp_product_wrapper:nth-child(4n) {
  grid-column: 1 / -1;
}

.sp_product_container {
  width: 100%;
  position: relative;
  display: block;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -o-border-radius: 16px;
  -moz-border-radius: 16px;
  background-color: #0f172a;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 240px;
  cursor: pointer;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
}

.sp_product_wrapper:nth-child(4n + 1) .sp_product_container,
.sp_product_wrapper:nth-child(4n) .sp_product_container {
  aspect-ratio: 16 / 9;
  min-height: 260px;
}

.sp_product_wrapper .sp_product_container .sp_product_img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sp_product_wrapper .sp_product_container .sp_product_img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition:
    transform 0.35s ease,
    -webkit-transform 0.35s ease;
}

.sp_product_container:hover .sp_product_img img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.sp_product_overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #ffffff;
  z-index: 1;
}

.sp_product_overlay::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(67, 56, 202, 0.38) 0%,
    rgba(67, 56, 202, 0.12) 45%,
    rgba(15, 23, 42, 0.86) 100%
  );
  z-index: 0;
}

.sp_product_meta {
  position: relative;
  z-index: 1;
  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;
}

.sp_product_overlay .s_p_product_type {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  padding: 6px 12px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.sp_product_overlay .s_p_product_type a {
  color: #ffffff;
}

.sp_product_overlay .s_p_product_type.scratch {
  background: rgba(133, 143, 173, 0.9);
}

.sp_product_overlay .s_p_product_type.bookazoom {
  background: rgba(30, 136, 229, 0.9);
}

.sp_product_overlay .s_p_product_type.digitaldownload {
  background: rgba(246, 81, 105, 0.9);
}

.sp_product_meta .mypType {
  position: relative;
  top: 0px !important;
  left: 0px !important;
}

.sp_product_price_tag {
  position: relative;
  z-index: 1;
  background: #ff7a59;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  margin-left: auto;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 10px 25px rgba(255, 122, 89, 0.3);
  box-shadow: 0 10px 25px rgba(255, 122, 89, 0.3);
}

.sp_product_body {
  position: relative;
  z-index: 1;
  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: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: 0;
  color: #ffffff;
  text-decoration: none;
}

.sp_product_body .sp_product_name {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sp_product_desc {
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sp_product_container:hover {
  opacity: 1;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sp_products {
    grid-template-columns: 1fr;
  }

  .sp_product_wrapper:nth-child(4n + 1),
  .sp_product_wrapper:nth-child(4n) {
    grid-column: auto;
  }
}

/*Version 3.6.5 FINISHED*/
/*Version 3.6.6 STARTED*/
.live_pp_camera_container {
  width: 100%;
  max-width: 400px;
  min-width: 350px;
  background-color: #f0f2f5;
}

.myCam {
  position: relative;
  width: 100%;
  height: calc(100% - 110px);
  height: -o-calc(100% - 110px);
  height: -ms-calc(100% - 110px);
  height: -moz-calc(100% - 110px);
}

.friendsCam {
  position: absolute;
  width: 200px;
  height: 155px;
  bottom: 125px;
  right: 10px;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.friendsCam video {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
}

.player_friend {
  width: 200px;
  height: 155px;
}

.player {
  width: 100%;
  height: 320px;
}

.player-name {
  margin: 8px 0;
}

#success-alert,
#success-alert-with-token {
  display: none;
}

@media (max-width: 640px) {
  .player {
    width: 320px;
    height: 240px;
  }
}
.call_details {
  width: 100%;
  position: relative;
  padding: 50px 20px;
}

.caller_user_avatar {
  width: 110px;
  height: 110px;
  margin: 0px auto;
}

.caller_avatar {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0px auto;
  border: 3px solid #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
}

.caller_title {
  width: 100%;
  padding: 15px;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  text-align: center;
}

.caller_det {
  width: 100%;
  font-weight: 500;
  font-size: 15px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  text-align: center;
}

.caller_det a {
  text-decoration: none;
  color: #f65169;
}

.current_point_box_video {
  width: 100%;
  font-weight: 500;
  font-size: 15px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  text-align: center;
  background-color: #d3e2f8;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  margin-top: 15px;
}

.call_btn_item_btn_accept span {
  font-weight: 500;
  font-size: 12px;
}

.call_declined {
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  color: #e53935;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  text-align: center;
  display: none;
}

.call_buttons {
  width: 100%;
  padding-top: 50px;
}

.call_btn_item {
  width: 50%;
}

.call_btn_item_btn_accept {
  padding: 10px 15px;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #43a047;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.call_btn_item_btn_accept:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.call_btn_item_btn_decline {
  padding: 10px 15px;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #e53935;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.call_btn_item_btn_decline:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.call_btn_item_btn_accept svg,
.call_btn_item_btn_decline svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  margin-right: 10px;
}

.call_btn_item_btn_accept a {
  color: #ffffff;
  text-decoration: none;
}

.videoCallButtons {
  padding: 10px;
  width: 100%;
  position: relative;
}

.call_footer_buttons {
  position: relative;
  width: 100%;
}

.footer_call_btn_item {
  width: 100%;
  padding: 5px;
}

.call_btn_icon {
  padding: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #000000;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.call_btn_icon:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.call_btn_icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.call_btn_end_icon {
  padding: 18px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #e53935;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.call_btn_end_icon:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.call_btn_end_icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.activated_btn {
  background-color: #f57c00 !important;
}

.ty_videoCall {
  background-color: #4c7ae4;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.myFriednsStories .mystoriesstyle {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.myFriednsStories .mystoriesstyle .story-view-item,
.myFriednsStories .mystoriesstyle .story_view_item {
  margin-bottom: 5px !important;
}

.stories_page_title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  color: #444444;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px;
}

.stories_page_title svg {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}

/*Version 3.6.6 FINISHED*/
/*Version 4.0 STARTED*/
.send_tip_btn_message {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-filex;
  padding: 13px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  color: #ffffff;
  font-weight: 500;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.send_tip_btn_message:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.send_tip_btn_message svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  margin-right: 10px;
}

.gfIcon {
  padding: 5px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  position: absolute;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
  top: 10px;
  left: -13px;
}

.msg_friend .gfIcon {
  right: -14px;
  top: 9px;
  left: auto;
}

.gfIcon svg {
  fill: #ffffff;
  width: 10px;
  height: 10px;
}

.nanosSend {
  padding: 0px 15px;
  position: relative;
  background-color: #ffffff;
}

.nanos .Message_stickersContainer {
  height: auto !important;
}

.emTitle {
  position: sticky;
  top: 0px;
}

.i_write_secret_post_price {
  width: 100%;
  padding-left: 8px;
}

.secretMessageBgColor {
  color: #ffffff !important;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
}

.msg_txt_sec {
  display: inline-block;
  width: 100%;
  padding: 15px;
  word-break: break-word;
  word-wrap: break-word;
}

.msg_txt_sec .album-details {
  color: #ffffff;
  text-align: center;
}

.msg_txt_sec .album-details svg {
  fill: #ffffff;
  width: 30px;
  height: 30px;
  margin: 0px auto;
  display: block;
  margin-bottom: 10px;
}

.unLockMe {
  display: block;
  padding: 12px 16px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -o-border-radius: 25px;
  background-color: #f65169;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.unLockMe:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  z-index: 1;
}

.unlockWarning {
  width: 100%;
  font-weight: 400;
  font-size: 12px;
  color: #f65169;
  padding-top: 4px;
  display: none;
}

.joinOffline {
  opacity: 0.3;
}

.noTransition {
  -webkit-transform: unset !important;
  transform: unset !important;
}

.i_profile_cover {
  height: unset;
}

.i_im_cover {
  width: 100%;
  height: 100%;
  max-height: 340px;
  overflow: hidden;
  border-top-left-radius: 18px;
  -webkit-border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  -webkit-border-top-right-radius: 18px;
}

.i_im_cover img {
  width: 100%;
  height: unset;
}

.footer_social_links_container {
  position: relative;
  width: 100%;
  z-index: 5;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.i_wsocial_link_ {
  position: relative;
  padding-bottom: 10px;
}

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

.i_shopping_menu_wrapper {
  position: sticky;
  top: 87px;
  left: 0px;
}

.footer_container .footer_social_links_container .i_wsocial_link_ {
  padding-bottom: 0px !important;
}

.btest .footer_container {
  padding-bottom: 5px;
}

.message_form_plus .ownTooltipWrapper {
  top: -72px;
}

.msg_time_me svg,
.msg_time_fri svg {
  fill: #444444;
  vertical-align: middle;
  margin-right: 1px;
  margin-left: 1px;
  width: 12px;
  height: 12px;
}

/*Version 4.0 FINISHED*/
/*Version 4.1.6 STARTED*/
.creator_item {
  position: relative;
}

.subcategoryname {
  display: none;
  width: 100%;
  max-width: 240px;
  min-width: 240px;
  background-color: rgba(255, 255, 255, 0.98);
  padding: 8px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  -webkit-box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  position: absolute;
  left: 0px;
  top: calc(100% + 8px);
  z-index: 12;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -o-border-radius: 18px;
}

.subcategoryname::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.creator_item:hover .subcategoryname {
  display: block;
}

.creator_menu_more_dropdown .subcategoryname {
  left: calc(100% + 10px);
  top: 0;
}

.creator_menu_more_dropdown .subcategoryname::before {
  top: 0;
  bottom: 0;
  left: -10px;
  right: auto;
  width: 10px;
  height: auto;
}

.sub_m_item {
  width: 100%;
  padding: 0;
  font-weight: 500;
  font-size: 13px;
  font-family: "Noto Sans", sans-serif;
  color: #000000;
  text-align: left;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -o-border-radius: 12px;
}

.sub_m_item:hover {
  background-color: rgba(15, 23, 42, 0.04);
}

.sub_m_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  text-decoration: none;
  color: #000000;
}

.mercadopago {
  width: 90px;
  height: 40px;
  background: url("paymentIcons/mercadopago.png") no-repeat center;
  background-size: contain;
}
.moneroo {
  width: 90px;
  height: 40px;
  background: url("paymentIcons/moneroo.svg") no-repeat center;
  background-size: contain;
}

.i_message_owner_name .i_plus_gf {
  display: initial;
}

.i_message_owner_name .i_plus_gf svg {
  width: 14px;
  height: 14px;
}

.ntSt a {
  text-decoration: none;
  color: #f65169;
  font-weight: 600;
}

/*Version 4.1.6 FINISHED*/
/*Version 4.2 STARTED*/
.i_comment_reply {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 300;
  font-size: 13px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 5px;
  color: #444444;
  cursor: pointer;
}

.i_comment_reply:hover {
  color: #f65169;
}

.i_comment_reply::after {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  margin: 0 0.25rem;
  background: #858fad;
  border-radius: 50%;
  display: inline-block;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.i_u_comment_body_reply {
  margin-left: 0;
}

.i_comment_replies_toggle {
  margin: 6px 0 0 0;
  font-size: 12px;
  color: #f65169;
  cursor: pointer;
}

.i_comment_replies {
  margin-left: 0;
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid #e6e6e6;
  width: 100%;
  box-sizing: border-box;
}

.i_comment_replies a {
  margin-top: 10px;
}

.i_user_comment_text a {
  text-decoration: none;
}

.boostListIconContainer {
  position: relative;
  width: 100%;
  margin-top: -60px;
}

.boostListIcon {
  width: 120px;
  height: 120px;
  margin: 0px auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #ffffff;
}

.boostListIcon svg {
  width: 50px;
  height: 50px;
}

.boostListContainer {
  width: 100%;
  padding: 10px 0px;
  padding-bottom: 0px;
}

.boost_plan_item {
  width: 100%;
  padding: 10px;
  cursor: pointer;
}

.boost_plan_item_name_boost_plan_description {
  padding-left: 10px;
}

.boost_plan_item:hover {
  background-color: #e0e3eb;
}

.boost_plan_item_icon {
  padding: 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #e0e3eb;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.boost_plan_item:hover .boost_plan_item_icon {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  z-index: 1;
}

.boost_plan_item_icon svg {
  width: 40px;
  height: 40px;
}

.boost_plan_item_name {
  font-weight: 600;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

.boost_plan_description {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #444444;
}

.warning_boost_post {
  margin: 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  color: #e53935;
  font-weight: 500;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 13px;
  display: none;
}

.warning_boost_post a {
  text-decoration: none;
  color: #468cef;
  display: contents;
}

.boost_post_is {
  padding: 10px;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: rgba(246, 81, 105, 0.2);
}

.boost_amount_item_icon {
  padding: 8px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #f65169;
  background-color: #e0e3eb;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.boost_plan_item:hover .boost_amount_item_icon {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  z-index: 1;
}

.boost_amount_item_icon svg {
  margin-left: 5px;
  fill: #f65169;
  width: 15px;
  height: 15px;
}

.i_complete_level_name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80px;
}

.boostIcon {
  position: absolute;
  padding: 5px 8px 4px 5px;
  background-color: #f0f2f5;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  z-index: 1;
  top: -15px;
  left: 15px;
  font-size: 13px;
  border: 1px solid #e0e3eb;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.boostIcon svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.i_post_footer_boost {
  display: inline-block;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 15px 10px 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #f9fbfe;
}

.i_post_footer_boost_item {
  width: 100%;
  margin-bottom: 16px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.ipf_item {
  width: 100%;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 0;
  padding-left: 0;
  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;
  position: relative;
  gap: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.ipf_item:first-of-type .ipf_item_title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15px;
  color: #334155;
  text-transform: none;
}

.ipf_item:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 4px;
}

.ipf_item .i_sub_not_check_box {
  position: relative;
  right: auto;
  left: auto;
  margin-left: auto;
}

.ipf_item_title {
  width: 50%;
  padding: 8px 10px;
  color: #475569;
  text-align: center;
}

.ipf_stats_panel {
  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;
}
.ipf_stats_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.ipf_stats_row.compact {
  padding-top: 12px;
  margin-top: 6px;
  border-top: 1px solid #e2e8f0;
  gap: 12px;
}
.ipf_stat_col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 4px 6px;
  border-right: 1px solid #eef2f7;
}
.ipf_stat_col:last-of-type {
  border-right: none;
}
.ipf_stat_label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05px;
  color: #334155;
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ipf_stat_label.subtle {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}
.ipf_stat_value {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.1;
}
.ipf_stat_value.alt {
  font-size: 22px;
}

.bigText {
  font-weight: 600;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 25px;
  color: #111827;
}

.bottom_border_color {
  border-bottom: 1px solid #f0f2f5;
}

.left_border_color {
  border-left: 1px solid #e2e8f0;
}

.right_border_color {
  border-right: 1px solid #e2e8f0;
}

.top_border_color {
  border-top: 1px solid #e2e8f0;
}

.inTable {
  display: inline-table;
}

.bankaccount {
  width: 90px;
  height: 40px;
  background: url("paymentIcons/bankTransfer.png") no-repeat center;
  background-size: cover;
}

.bank_container {
  width: 100%;
  position: absolute;
  left: 0px;
  height: 100%;
  right: 0px;
  top: 0px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: #ffffff;
  z-index: 1;
}

.purchase_not_ {
  width: 100%;
  padding: 10px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Noto Sans", sans-serif;
}

.purchase_sw_details {
  width: 100%;
  padding: 30px;
  font-weight: 600;
  font-size: 18px;
  font-family: "Noto Sans", sans-serif;
  text-align: center;
  line-height: 2.5rem;
  -webkit-box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.19),
    0 0 0 1px hsla(0deg, 0%, 82.4%, 0.1);
  border-radius: 10px;
  margin-top: 20px;
  color: #ffffff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#fab429)
  );
  background: linear-gradient(90deg, #f65169, #fab429);
}

.displayNone {
  display: none;
}

.i_canc_btn {
  float: right;
  padding: 10px 45px;
  font-weight: 600;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #ffffff;
  background-color: #2e2e2e;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  cursor: pointer;
}

.i_canc_btn:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.payment_success_bank {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  position: absolute;
  background-color: #ffffff;
  padding: 30px;
  z-index: 2;
  display: none;
}

.i_p_image,
.lg-image,
.i_post_text {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  -ms-user-drag: none;
}

.notSeenYet {
  background-color: #f0f1f5 !important;
}

.i_message_wrapper {
  margin-bottom: 5px;
}

.i_post_shared_time a {
  text-decoration: none;
  color: #4caaee;
  font-weight: 400;
}

.i_post_shared_time a:hover {
  text-decoration: underline;
}

.story-view-item-fake {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.stories_scroller {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 18px;
}

.stories_scroller::-webkit-scrollbar {
  width: 6px !important;
  height: 4px !important;
}

.stories_scroller::-webkit-scrollbar-thumb {
  background: #c6ccda;
  border-radius: 999px;
}

.stories_scroller::-webkit-scrollbar-track {
  background: #eef1f7;
  border-radius: 999px;
}

.userIsOnline {
  font-size: 10px;
  font-weight: 300;
  border-radius: 5px;
  margin-left: 6px;
  padding-right: 4px;
  background-color: #43a047;
  color: #ffffff;
}

.userIsOffline {
  font-size: 10px;
  font-weight: 300;
  border-radius: 5px;
  margin-left: 6px;
  padding-right: 4px;
  background-color: #e53935;
  color: #ffffff;
}

.userIsOffline::before,
.userIsOnline::before {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  margin: 0 0.25rem;
  background: #858fad;
  border-radius: 50%;
  display: inline-block;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  border: 1px solid #ffffff;
}

/*Version 4.2 FINISHED*/
/*Version 5.0 STARTED*/
.i_p_ffs {
  padding: 8px 18px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: 1px solid #f0f2f5 !important;
  font-weight: 500;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  margin-top: 15px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.i_p_ffs:hover {
  background-color: #f0f2f5 !important;
}
.i_p_ffs:nth-child(2) {
  margin-left: 5px;
  margin-right: 5px;
}
.i_p_ffs svg {
  fill: #000000;
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.i_p_ffs a {
  text-decoration: none;
  color: #000000;
}

.i_p_ffs:hover a {
  color: #f65169;
}

.i_p_ffs:hover svg {
  fill: #f65169;
}
.i_sub_box_wrp_prof {
  position: relative;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 13px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -moz-border-radius: 10px;
}
.active_page_menu a {
  color: #f65169;
}

.i_profile_gift_frame {
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: 5;
  border-radius: 50%;
}
.i_profile_gift_frame img {
  width: 100%;
  height: 100%;
}
.i_btn_send_to_frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  padding: 10px 15px;
  font-weight: 400;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 30px;
  -webkit-boder-radius: 30px;
  background: #43a047;
  cursor: pointer;
  color: #ffffff;
  -webkit-box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-left: 10px;
}

.i_btn_send_to_frame:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.i_btn_send_to_frame svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  margin-right: 4px;
}
.modal_frames {
  max-width: 750px !important;
}
.i_more_frames_wrapper {
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.i_more_frames_wrapper .credit_plan_box {
  padding: 0.5rem;
  -webkit-box-flex: 0 !important;
  flex: 0 0 50% !important;
  -webkit-flex: 0 0 50% !important;
  -moz-flex: 0 0 50% !important;
  -ms-flex: 0 0 50% !important;
  -o-flex: 0 0 50% !important;
  position: relative;
}
.plan_box_frame {
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  padding: 2rem;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid transparent;
}

.plan_box_frame:hover {
  border: 1px solid #f65169;
}

.plan_box_frame:hover .purchaseButton {
  border: 1px solid #f65169;
  background-color: #f65169;
  color: #ffffff;
}
.plan_box_frame:hover .purchaseButton strong span svg {
  fill: #ffffff;
}
.plan_box_frame:hover .purchaseButton .foramount {
  color: #ffffff;
}

.a_image_area_live_gift {
  position: relative;
  padding-top: 40%;
  width: 100%;
  overflow: hidden;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.a-item-img_live_gift {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.user_post_user_avatar_plus {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  width: 48px;
  height: 48px;
}

.frame_out_container {
  position: absolute;
  left: 11px;
  top: 11px;
  z-index: 1;
}

.frame_container {
  position: relative;
  width: 55px;
  height: 55px;
}

.frame_container img {
  width: 55px;
  height: 55px;
}
.boostIcon {
  z-index: 3;
}
.user_post_user_avatar_plus_product {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  width: 60px;
  height: 60px;
}

.frame_out_container_product {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.frame_container_product {
  position: relative;
  width: 100%;
  height: 100%;
}

.frame_container_product img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.frame_out_container_creator {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}

.frame_container_creator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.frame_container_creator img {
  width: 100%;
  height: 100%;
}
.i_post_user_commented_avatar {
  position: relative;
}
.frame_out_container_comment {
  position: absolute;
  left: 2px;
  top: -2px;
  z-index: 1;
}

.frame_container_comment {
  position: relative;
  width: 35px;
  height: 35px;
}

.frame_container_comment img {
  width: 35px;
  height: 35px;
}

.ty_boostPost {
  background-color: #512da8;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.ty_agency_boost {
  background-color: #512da8;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.ty_frame {
  background-color: #7b1fa2;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.i_post_body_header {
  position: relative;
}
.sub_finish_time {
  background: #de6565;
  padding-top: 0px;
  padding: 10px 30px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  margin-top: 15px;
}
.loading-div {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.loading-div img {
  width: 50px;
  height: 50px;
}
.frame_badge {
  position: absolute;
  padding: 6.3px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #43a047;
  right: -18px;
  top: 46px;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.frame_badge svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.inviteemail {
  background-color: transparent;
}

.invite_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkif-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 18px 18px 16px 18px;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#ffffff),
    to(#f7f9fc)
  );
  background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid #e5eaf3;
  border-radius: 18px;
  -webkit-border-radius: 18px;
}

.invite_card_header {
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.invite_icon {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkif-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#ffb55a)
  );
  background: linear-gradient(90deg, #f65169 0%, #ffb55a 100%);
  -webkit-box-shadow: 0 8px 18px rgba(246, 81, 105, 0.18);
  box-shadow: 0 8px 18px rgba(246, 81, 105, 0.18);
}

.invite_icon svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
}

.invite_title_text {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  font-family: "Noto Sans", sans-serif;
  letter-spacing: 0.01em;
}

.invite_sub_text {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.invite_meta_chip {
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background-color: #eef3ff;
  color: #0f172a;
  border: 1px solid #dfe7fb;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.invite_meta_chip svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.invite_meta_chip span {
  font-size: 14px;
  font-weight: 800;
}

.invite_title_text.center,
.invite_sub_text.center,
.invite_meta_chip.center {
  text-align: center;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.invite_card_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkif-flex;
  gap: 10px;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.invite_input_wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 280px;
  flex: 1 1 280px;
}

.invite_card_form .send_invitation_btn {
  width: auto;
  min-width: 140px;
  padding: 12px 18px;
}

.invite_card .already_in_use {
  margin: 0;
  text-align: center;
}

.inviteemail_input {
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
}

.inviteemail_input:focus {
  border-color: #f65169;
  -webkit-box-shadow: 0 0 0 3px rgba(246, 81, 105, 0.12);
  box-shadow: 0 0 0 3px rgba(246, 81, 105, 0.12);
}

.invite_visual {
  width: 100%;
  text-align: center;
  padding: 4px 0 6px 0;
}

.invite_visual img {
  width: 100%;
  max-width: 130px;
  height: auto;
  display: inline-block;
  border-radius: 18px;
  -webkit-border-radius: 18px;
}

.send_invitation_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  background-color: #1e88e5;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  padding: 8px 15px 9px 15px;
  text-transform: capitalize;
  cursor: pointer;
}

.send_invitation_btn:hover {
  background-color: #1170c4;
}

.inviteemail_input {
  width: 100%;
  padding: 15px 25px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  outline: none;
  border: 2px solid transparent;
  background-color: #ffffff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.inviteemail_input {
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
}

.inviteemail_input:focus {
  border-color: #f65169;
  -webkit-box-shadow: 0 0 0 3px rgba(246, 81, 105, 0.12);
  box-shadow: 0 0 0 3px rgba(246, 81, 105, 0.12);
}

.inviteemail_input::active {
  border: 2px solid #ffccbc;
}

.invite_not {
  font-weight: 400;
  font-size: 13px;
  color: #858fad;
  font-family: "Noto Sans", sans-serif;
  padding: 10px;
}

.inv_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  width: 100%;
  background-color: #1e88e5;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 12px 15px 12px 15px;
  text-transform: capitalize;
  cursor: pointer;
}

.inv_btn:hover {
  background-color: #1170c4;
}

.inv_btn svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  margin-right: 5px;
}

.live_now {
  padding: 3px 10px;
  color: #ffffff;
  background-color: #f65169;
  display: -webkit-inline-box;
  border-radius: 5px;
  font-weight: 400;
  font-size: 12px;
  animation: my_pulse 2s infinite;
}

@keyframes my_pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(168, 63, 57, 0.4);
    box-shadow: 0 0 0 0 rgba(168, 63, 57, 0.4);
  }
  5% {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
  }
  15% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(168, 63, 57, 0);
    box-shadow: 0 0 0 50px rgba(168, 63, 57, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 100px rgba(168, 63, 57, 0);
    box-shadow: 0 0 0 100px rgba(168, 63, 57, 0);
  }
}

.already_in_use {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  background-color: #f65169;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  margin-bottom: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 15px;
  display: none;
  text-align: center;
}

.already_in_use svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.total_online_user {
  width: 100%;
  padding: 15px 0px 0px 0px;
}

.total_online_users_wrapper {
  width: 100%;
  padding: 17px;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #ff8a65;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
}

.total_online_users_wrapper svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.total_online_users_wrapper span {
  padding: 0px 5px;
  font-size: 16px;
}

.i_postLiveStreaming {
  width: 100%;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
}

.i_live_ {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  color: #1f2430;
  background-color: #ffffff;
  cursor: pointer;
  border: 1px solid #e5e9f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-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: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 48%;
  flex: 1 1 48%;
}

.i_live_:nth-child(2) {
  margin-left: 0px;
}

.i_live_:hover {
  background-color: #f0f3fb;
  border-color: #dbe2f0;
  color: #f65169;
}

.i_live_ svg {
  fill: #f65169;
  width: 18px;
  height: 18px;
}

@media screen and (max-width: 640px) {
  .i_live_ {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.i_activity_info_container {
  width: 100%;
  padding-left: 10px;
  font-size: 15px;
  font-weight: 400;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
}

.i_activity_info_container a {
  color: #c64d53;
  font-weight: 600;
}

a.a_o_user {
  color: #212121;
  margin-left: 5px;
}
a.a_o_user_flw {
  color: #0288d1;
  margin-left: 5px;
}

.activityWrapper {
  max-height: 300px;
  overflow-y: scroll;
}
.activityWrapper::-webkit-scrollbar {
  width: 4px !important;
  height: 4px !important;
}
.activityWrapper::-webkit-scrollbar-thumb {
  background-color: #f65169 !important;
}

.activity_card_link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.activity_card {
  position: relative;
  border: 1px solid #e8ecf5;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#ffffff),
    to(#f7f9fc)
  );
  background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
  gap: 12px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  min-height: 88px;
}

.activity_card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f65169),
    to(#ffb55a)
  );
  background: linear-gradient(180deg, #f65169 0%, #ffb55a 100%);
  opacity: 0.75;
}

.activity_card[data-activity="newPost"]::before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#7c8ce0),
    to(#cdd9ff)
  );
  background: linear-gradient(180deg, #7c8ce0 0%, #cdd9ff 100%);
}

.activity_card[data-activity="postLike"]::before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f65169),
    to(#ff8ea5)
  );
  background: linear-gradient(180deg, #f65169 0%, #ff8ea5 100%);
}

.activity_card[data-activity="userFollow"]::before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#2bbf6c),
    to(#7ae0a4)
  );
  background: linear-gradient(180deg, #2bbf6c 0%, #7ae0a4 100%);
}

.activity_card:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
  border-color: #dce2f0;
}

.activity_card_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkif-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.i_message_wrpper a .activity_card_body {
  padding-left: 12px;
}

.activity_avatar_ring {
  width: 56px;
  height: 56px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#ffb55a)
  );
  background: linear-gradient(90deg, #f65169 0%, #ffb55a 100%);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 56px;
  flex: 0 0 56px;
}

.activity_card[data-activity="newPost"] .activity_avatar_ring {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#7c8ce0),
    to(#cdd9ff)
  );
  background: linear-gradient(90deg, #7c8ce0 0%, #cdd9ff 100%);
}

.activity_card[data-activity="postLike"] .activity_avatar_ring {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#ff8ea5)
  );
  background: linear-gradient(90deg, #f65169 0%, #ff8ea5 100%);
}

.activity_card[data-activity="userFollow"] .activity_avatar_ring {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#2bbf6c),
    to(#7ae0a4)
  );
  background: linear-gradient(90deg, #2bbf6c 0%, #7ae0a4 100%);
}

.activity_avatar_ring .i_message_avatar {
  width: 100%;
  height: 100%;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  -webkit-box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
}

.activity_avatar_ring .i_message_avatar img {
  -o-object-fit: cover;
  object-fit: cover;
}

.activity_text_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkif-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.activity_type_chip {
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111827;
  padding: 6px 10px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background-color: #f0f2f7;
}

.activity_type_chip:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#ffb55a)
  );
  background: linear-gradient(90deg, #f65169 0%, #ffb55a 100%);
}

.activity_card[data-activity="newPost"] .activity_type_chip:before {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#7c8ce0),
    to(#cdd9ff)
  );
  background: linear-gradient(90deg, #7c8ce0 0%, #cdd9ff 100%);
}

.activity_card[data-activity="postLike"] .activity_type_chip:before {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f65169),
    to(#ff8ea5)
  );
  background: linear-gradient(90deg, #f65169 0%, #ff8ea5 100%);
}

.activity_card[data-activity="userFollow"] .activity_type_chip:before {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#2bbf6c),
    to(#7ae0a4)
  );
  background: linear-gradient(90deg, #2bbf6c 0%, #7ae0a4 100%);
}

.activity_text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.activity_text a {
  color: #f65169;
}

.activity_meta_chevron {
  margin-left: 12px;
  font-size: 18px;
  color: #9aa2b5;
  font-weight: 700;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.stories_scroller::-webkit-scrollbar-track {
  background: rgba(236, 240, 245, 0.8);
  border-radius: 999px;
}
.i_post_footer_boost {
  position: relative;
  min-height: 40px;
  max-height: 40px;
  overflow: hidden;
  -webkit-transition: max-height 0.25s ease;
  transition: max-height 0.25s ease;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 10px;
}

.show_hide_statistic {
  position: absolute;
  right: 25px;
  top: 6px;
  z-index: 1;
}
.stat_icona {
  position: relative;
  cursor: pointer;
  display: none;
  padding: 5px;
}
.stat_icon {
  position: relative;
  cursor: pointer;
  padding: 5px;
}
.stat_icon svg,
.stat_icona svg {
  width: 20px;
  height: 20px;
}

.changeHeight {
  max-height: 999px !important;
}

/* Hide boost items when collapsed; show on expand */
.i_post_footer_boost .i_post_footer_boost_item {
  display: none;
}
.i_post_footer_boost.changeHeight .i_post_footer_boost_item {
  display: block;
}

.boost_charts_wrapper {
  width: 100%;
  display: none;
  padding: 20px;
  margin-top: 10px;
  border-radius: 16px;
}
.i_post_footer_boost.changeHeight .boost_charts_wrapper {
  display: block;
}
.boost_chart_box {
  width: 100%;
  min-height: 180px;
  position: relative;
}
.boost_chart_box canvas {
  width: 100% !important;
  height: 180px !important;
}

.announcement_container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  color: #000000;
  background-color: #ffffff;
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 87%;
  }
  50% {
    background-position: 100% 14%;
  }
  100% {
    background-position: 0% 87%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 87%;
  }
  50% {
    background-position: 100% 14%;
  }
  100% {
    background-position: 0% 87%;
  }
}
.announcement_title {
  position: relative;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.announcement_title svg {
  fill: #000000;
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.announcement_not {
  position: relative;
  width: 100%;
  padding: 0px;
  margin: 0px;
  word-wrap: break-word;
  word-wrap: normal;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.2rem;
  padding-left: 10px;
}

.announcement_not img {
  margin: 0px;
  padding: 0px;
  display: inline-block;
}

.git {
  width: 100%;
  position: relative;
  display: inline-block;
}

.got_it {
  padding: 10px 12px;
  font-weight: 600;
  font-size: 13px;
  color: #000000;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  float: right;
  margin-left: auto;
  background-color: #d8dbdf;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.got_it:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  z-index: 1;
}

.i_credits_wallet {
  position: relative;
  width: 100%;
  padding: 10px;
}

.i_p_categoryp {
  float: left;
  width: fit-content;
  background: #d3e2f8;
  border-radius: 5px;
  color: #0e2c58;
  padding: 2px 4px;
  font-size: 12px;
  margin-right: 3px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

a.i_p_categoryp:hover {
  text-decoration: none;
  background-color: #c1d4f0;
}

.i_p_categoryp svg {
  fill: #0e2c58;
  width: 10px;
  height: 10px;
  margin-right: 4px;
}

.userIsOffline::before {
  background: #7a0a1b !important;
}

.userIsOnline::before {
  background: #0097a7 !important;
}

.i_opennewtab {
  text-decoration: none;
}

.i_yesScrollable {
  position: fixed;
  bottom: 10px;
  right: 40px;
  z-index: 999;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 3px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  display: none;
}

.mouse_scroll {
  display: block;
  margin: 0 auto;
  width: 24px;
}

.m_scroll_arrows {
  display: block;
  width: 5px;
  height: 5px;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);

  border-right: 2px solid #f65169;
  border-bottom: 2px solid #f65169;
  margin: 0 0 7px 8px;
  width: 8px;
  height: 8px;
}

.unu {
  margin-top: 1px;
}

.unu,
.doi,
.trei {
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
}

.unu {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -webkit-animation-direction: alternate;

  animation-direction: alternate;
  animation-delay: alternate;
}

.doi {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-direction: alternate;

  animation-delay: 0.2s;
  animation-direction: alternate;

  margin-top: -6px;
}

.trei {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -webkit-animation-direction: alternate;

  animation-delay: 0.3s;
  animation-direction: alternate;

  margin-top: -6px;
}

.mouse {
  height: 42px;
  width: 24px;
  border-radius: 14px;
  transform: none;
  border: 2px solid #f65169;
  background-color: #f65169;
  top: 170px;
}

.wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: #ffffff;
  position: relative;

  height: 4px;
  width: 4px;
  border: 2px solid #ffffff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.wheel {
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  -moz-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-moz-keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 2px;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 2px;
  }
  100% {
    top: 1px;
  }
}
@-o-keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 2px;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 2px;
  }
  100% {
    top: 1px;
  }
}
@keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 2px;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 2px;
  }
  100% {
    top: 1px;
  }
}

@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.in_tips {
  font-weight: 400;
  font-size: 13px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.in_tips svg {
  margin-right: 5px;
}

.premiumIcon {
  position: absolute;
  padding: 5px 15px;
  background-color: #f65169;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  z-index: 1;
  top: -17px;
  right: 8px;
  font-size: 13px;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  border: 1px solid #f0f2f5;
}

.premiumIcon svg {
  fill: #ffffff;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.i_day_wishcontainer {
  width: 100%;
  position: relative;
}
.i_day_wish_wrapper {
  display: -webkit--webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  padding: 25px 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #ffffff;
  margin-bottom: 25px;
  border-left: 2.5px solid;
}

.i_day_wish_title {
  display: inline-block;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
}

.i_day_wish_title img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.i_day_wish_desc {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  color: #858fad;
  font-family: "Noto Sans", sans-serif;
  margin-top: 10px;
}
.premium_amount_he {
  float: left;
  width: fit-content;
  background: #d3e2f8;
  border-radius: 5px;
  color: #f65169;
  padding: 3px 5px;
  font-size: 11px;
  margin-right: 5px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.premium_amount_he svg {
  fill: #f65169;
  width: 10px;
  height: 10px;
  margin-right: 4px;
}
.like_heart {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 5;
}
.like_heart svg {
  width: 140px;
  height: 140px;
  animation: heartbeat 0.8s infinite;
  -webkit-animation: heartbeat 0.8s infinite; /* Safari ve Chrome için */
  -moz-animation: heartbeat 0.8s infinite; /* Firefox için */
  -o-animation: heartbeat 0.8s infinite; /* Opera için */
  -ms-animation: heartbeat 0.8s infinite; /* Microsoft Edge için */
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes heartbeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes heartbeat {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes heartbeat {
  0% {
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -o-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@-ms-keyframes heartbeat {
  0% {
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.mypType {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

/*Version 5.0 FINISHED*/
/*Version 5.1 STARTED*/
.i_ai_generate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #f0f2f5;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11.5px;
  cursor: pointer;
  margin-left: 5px;
}
.i_pb_aiBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.i_ai_emojis_Box {
  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;
}

.i_ai_emojis_Box svg {
  width: 18px;
  height: 18px;
  fill: #f65169;
}

.i_editai_textarea_box {
  padding: 20px 20px;
  padding-bottom: 0px;
}

.ai_more_textarea {
  outline: none;
  resize: none;
  border: 2px solid #f0f2f5;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  background-color: transparent;
  min-height: 18px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: #000000;
  padding: 15px;
  width: 100%;
  font-size: 15px;
  min-height: 100px;
}
.ai_form_row {
  margin-bottom: 12px;
}
.ai_form_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  padding: 0;
}
.ai_form_row_full {
  grid-column: 1 / -1;
}
.ai_form_label {
  display: block;
  font-size: 13px;
  color: #555555;
  margin-bottom: 4px;
}
.ai_variants {
  margin: 10px 20px 0;
}
.ai_variants_title {
  font-size: 13px;
  color: #555555;
  margin-bottom: 8px;
}
.ai_variant_item {
  border: 1px solid #f0f2f5;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  background: #ffffff;
}
.ai_variant_title {
  font-size: 12px;
  font-weight: 600;
  color: #888888;
  margin-bottom: 6px;
}
.ai_variant_text {
  font-size: 14px;
  color: #111111;
  white-space: pre-wrap;
}
.ai_variant_use {
  margin-top: 8px;
  display: inline-block;
  background: #111111;
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}
.ai_variant_use:hover {
  opacity: 0.9;
}
.i_warning_ai_error {
  margin: 0 20px 10px;
}
.ai_generator_modal .i_modal_in_in {
  max-width: 720px;
  width: 94%;
}
.ai_generator_modal .i_modal_content {
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  background: #ffffff;
}
.ai_generator_modal .i_modal_g_header {
  background: #f0f2f5;
  color: #2c3340;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 22px;
  border-bottom: 1px solid #e5e7eb;
}
.ai_generator_modal .i_more_text_wrapper {
  padding: 0;
}
.ai_generator_modal .i_editai_textarea_box {
  padding: 10px;
}
.ai_generator_modal .i_input,
.ai_generator_modal select.i_input,
.ai_generator_modal .ai_more_textarea {
  width: 100%;
  min-height: 40px;
}
.ai_generator_modal select.i_input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f8fafc;
  border: 1.5px solid #cfd6e4;
  border-radius: 10px;
  padding: 11px 40px 11px 14px;
  min-height: 48px;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%23303a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.ai_generator_modal .ai_form_row {
  margin-bottom: 0;
}
.ai_generator_modal .ai_more_textarea {
  min-height: 120px;
}
.ai_generator_modal .ai_variants {
  margin: 10px 20px 0;
  padding-top: 8px;
  border-top: 1px dashed #e5e7eb;
}
.ai_generator_modal .ai_variant_item {
  background: #ffffff;
}
@media (max-width: 768px) {
  .ai_form_grid {
    grid-template-columns: 1fr;
  }
  .ai_generator_modal .i_modal_in_in {
    width: 96%;
  }
}
.ai_generator_modal .ai_generator_modal_shell {
  width: min(760px, calc(100vw - 32px));
}
.ai_generator_modal .ai_generator_modal_content {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}
.ai_generator_modal .ai_generator_modal_header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 78px;
  padding: 20px 80px 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fc 100%);
  border-bottom: 1px solid #e7edf7;
}
.ai_generator_modal .ai_generator_modal_title {
  color: #22304d;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}
.ai_generator_modal .ai_generator_modal_close {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #dbe4f1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.ai_generator_modal .ai_generator_modal_close svg {
  width: 20px;
  height: 20px;
}
.ai_generator_modal .ai_generator_modal_body {
  padding: 18px 20px 20px;
  background: #f8fafc;
}
.ai_generator_modal .i_warning_ai,
.ai_generator_modal .i_warning_ai_credit,
.ai_generator_modal .i_warning_ai_error {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
}
.ai_generator_modal .i_warning_ai,
.ai_generator_modal .i_warning_ai_credit {
  background: #fff4e5;
  border: 1px solid #ffd89a;
  color: #9a5a00;
}
.ai_generator_modal .i_warning_ai_error {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
}
.ai_generator_modal .i_editai_textarea_box {
  padding: 0;
}
.ai_generator_modal .ai_form_grid {
  gap: 14px 16px;
}
.ai_generator_modal .ai_form_label {
  margin-bottom: 6px;
  color: #5f6c86;
  font-size: 13px;
  font-weight: 700;
}
.ai_generator_modal .i_input,
.ai_generator_modal select.i_input,
.ai_generator_modal .ai_more_textarea {
  border-radius: 16px;
  border: 1.5px solid #d7e1ef;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.ai_generator_modal select.i_input {
  min-height: 50px;
  padding: 12px 42px 12px 16px;
  background-position: right 14px center;
  border-color: #d3ddeb;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 7.5L10 12l4.5-4.5' stroke='%23303a4a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}
.ai_generator_modal .ai_more_textarea {
  min-height: 126px;
  padding: 15px 16px;
  line-height: 1.5;
  border-color: #d7e1ef;
}
.ai_generator_modal .ai_more_textarea::placeholder {
  color: #9aa8bd;
}
.ai_generator_modal .ai_source_wrap .ai_more_textarea {
  min-height: 104px;
}
.ai_generator_modal .ai_variants {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px dashed #d9e4f2;
}
.ai_generator_modal .ai_variants_title {
  color: #5f6c86;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ai_generator_modal .ai_variant_item {
  border: 1px solid #dbe5f2;
  border-radius: 18px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}
.ai_generator_modal .ai_variant_use {
  border-radius: 12px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #ff5c7a 0%, #f5b93a 100%);
  font-weight: 700;
}
.ai_generator_modal .ai_generator_modal_note {
  margin-top: 14px;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffefc7;
  color: #8a5b00;
  font-size: 14px;
  line-height: 1.45;
}
.ai_generator_modal .ai_generator_modal_note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.ai_generator_modal .ai_generator_modal_footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 20px 20px;
  background: #f8fafc;
}
.ai_generator_modal .ai_generator_modal_submit,
.ai_generator_modal .ai_generator_modal_cancel {
  float: none;
  min-width: 148px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
  padding: 0 20px;
  font-weight: 800;
  font-size: 16px;
}
.ai_generator_modal .ai_generator_modal_submit {
  background: linear-gradient(135deg, #ff5c7a 0%, #f5b93a 100%);
  box-shadow: 0 16px 30px rgba(255, 92, 122, 0.22);
}
.ai_generator_modal .ai_generator_modal_cancel {
  background: #98a2c3;
  color: #ffffff;
}
@media (max-width: 768px) {
  .ai_generator_modal .ai_generator_modal_shell {
    width: min(100vw - 16px, 720px);
  }
  .ai_generator_modal .ai_generator_modal_header {
    min-height: 72px;
    padding: 18px 64px 16px 18px;
    justify-content: flex-start;
  }
  .ai_generator_modal .ai_generator_modal_title {
    font-size: 18px;
    text-align: left;
  }
  .ai_generator_modal .ai_generator_modal_close {
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .ai_generator_modal .ai_generator_modal_body {
    padding: 16px;
  }
  .ai_generator_modal .ai_form_grid {
    gap: 12px;
  }
  .ai_generator_modal .ai_generator_modal_footer {
    padding: 0 16px 16px;
    flex-direction: column-reverse;
  }
  .ai_generator_modal .ai_generator_modal_submit,
  .ai_generator_modal .ai_generator_modal_cancel {
    width: 100%;
    min-width: 0;
  }
}
.filtvid {
  width: 100%;
  height: 100%;
}
.player .col {
  width: 100%;
  height: 100%;
  position: relative;
}
.player .col div {
  width: 100%;
  height: 100%;
  position: relative;
}
.player-name {
  display: none;
}
.cola {
  display: none !important;
}
.plan_price_in {
  position: relative;
  display: initial;
}
.purchaseButton_wrap {
  display: inline-flex;
}
.bCreatorBg {
  padding-bottom: 50px;
}
.extra_style {
  margin-bottom: 20px;
  width: 100%;
  padding-right: 20px;
}
.i_settings_item_title_extra_with {
  width: 100%;
}
.i_settings_item_title_for_style {
  width: 100%;
  padding-left: 0px;
  padding-top: 8px;
}
.min_with {
  min-width: 100% !important;
}
.i_login_box_wellcome_icon {
  width: 74px;
  height: 74px;
  padding: 14px 13px;
}
.new_verify {
  position: relative;
  width: 100%;
  padding: 10px 8px;
  max-width: 230px;
  margin: 0px auto;
  margin-top: 15px;
}

.verif p {
  font-size: 13px;
}

.tab_max_width {
  max-width: 150px;
}

.i_inline_table {
  display: inline-table;
}

.i_inline_flex {
  display: inline-flex;
}

.i_display_content {
  display: content;
}

.padding_bottom_zero {
  padding-bottom: 0px !important;
}

.padding_zero {
  padding: 0px !important;
}

.padding_left_ten {
  padding-left: 10px;
}

.not_purchased_frame_style {
  opacity: 0.2;
  pointer-events: none;
  cursor: default;
  user-select: none;
  touch-action: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.tab_detail_item_maxwidth {
  max-width: 50px;
}

.table_text_align_left {
  text-align: left;
}

.delprod {
  margin-bottom: 3px;
}

.i_payout_ {
  max-width: 500px;
  width: 100%;
}

.nonePoint {
  display: none;
}
.invalid_username {
  color: #d81b60;
}
.table_span {
  font-size: 12px;
  padding-left: 5px;
  font-style: italic;
}

.optional_width {
  width: 100%;
}

.option_form_pls {
  width: 100%;
  display: contents;
}

.i_pr_height {
  height: 100%;
}
.search_cont_style {
  min-width: 360px;
  display: none;
  max-height: 360px !important;
}

/* Search dropdown: prevent overflow on long results */
.i_general_box_search_container.search_cont_style {
  overflow: hidden;
  max-height: min(70vh, 520px) !important;
  height: min(70vh, 520px) !important;
}

.i_general_box_search_container.search_cont_style .i_user_details {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.i_general_box_search_container.search_cont_style .sb_items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.giftColorStyle {
  color: #f65169;
}

.blackColor {
  color: #000000;
}
.backgroundBlack {
  background-color: #000000;
}

.product_wrapper_styl {
  height: 250px;
  text-align: center;
  font-weight: 600;
}

.inline_block {
  display: inline-block;
}

.pay_zindex {
  z-index: 9950 !important;
}

.h_product_title_pop {
  text-align: center;
  padding-top: 15px;
  font-size: 18px;
}

.crnt_points_pop {
  text-align: center;
  font-size: 43px;
  padding-top: 15px;
}

.i_block_i_item ul {
  margin: 0px;
}
.i_block_i_item ul li {
  margin: 0px;
  list-style-type: none;
}

.com_min_height {
  min-height: 365px;
}

.onlyPremium {
  top: 0px;
}

.plus_opacity {
  opacity: 1;
}

.product_margin_left {
  margin-left: 10px;
}
.i_loading_margin-left {
  margin-left: 10px;
}
.form_btn {
  margin-left: 5px;
}

.box_not_padding_left {
  padding-left: 15px;
}

.white_board_padding_left {
  padding-left: 50px;
}

.box_not_padding_top {
  padding-top: 5px;
}
.i_centered {
  justify-content: center;
  align-items: center;
}

.login_form_padding_box {
  padding-left: 25px;
  padding-bottom: 10px;
}

.s_p_product_wrapper_pl {
  height: 250px;
  text-align: center;
  font-weight: 600;
}

.product_page_loading {
  margin-bottom: 20px;
}

.dcontent {
  display: contents;
}

.typing_textarea_story {
  margin-top: 15px;
}
loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  background-image: linear-gradient(
    90deg,
    #f0f0f0 0px,
    #e0e0e0 40px,
    #f0f0f0 80px
  );
  background-repeat: no-repeat;
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.chart_wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* Optional but helps maintain shape */
}

#myChart {
  width: 100% !important;
  height: auto !important;
  display: block;
}
.bCreator_padding {
  padding-bottom: 50px;
}
.white_board_padding {
  padding-top: 30px;
}
.chat_absolute_bottom {
  position: absolute;
  bottom: 0px;
}

.white_board_style {
  max-width: 700px !important;
  margin: 0px auto !important;
}

.image-skeleton {
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.i_post_image_swip_wrappera,
.green-audio-player {
  width: 100% !important;
}
.notSupportedBox {
  text-align: center;
  padding: 40px;
}

.i_post_text_arrow {
  margin-bottom: 15px;
}

.box_fixed_padding {
  padding: 15px;
}
.box_width_max {
  max-width: 200px;
}

.i_box_bottom_zero {
  margin-bottom: 0px;
}

.text_uppercase {
  text-transform: uppercase;
}

.success_tick_style {
  position: absolute;
  left: 5px;
  top: 12px;
}

.story_margin_right_zero {
  margin-right: 0px;
}

.editAds_file {
  display: none !important;
  opacity: 0 !important;
}

.fixed_zindex {
  z-index: 9955 !important;
}

.contact_sended {
  text-align: center;
  width: 100%;
  padding: 20px;
  font-weight: 700;
  font-size: 23px;
  color: #d81b60;
  display: none;
}

.contact_disabled {
  text-align: center;
  width: 100%;
  padding: 20px;
  font-weight: 700;
  font-size: 23px;
  color: #d81b60;
  display: none;
}

.con_warning {
  text-align: center;
  width: 100%;
  padding: 20px;
  font-weight: 600;
  font-size: 16px;
  color: #8e24aa;
  display: none;
}

.con_warning_rec {
  text-align: center;
  width: 100%;
  padding: 20px;
  font-weight: 600;
  font-size: 16px;
  color: #8e24aa;
  display: none;
}
.text_align_left {
  text-align: left;
}

.description_style {
  background-color: #ffffff;
  width: 100%;
}

.no_gif_found {
  padding: 100px 0px;
  width: 100%;
}

.inviteEmailMargin {
  margin-bottom: 10px;
}

.i_payout_style {
  max-width: 500px;
  width: 100%;
}

.suggested_flex_flow {
  flex-flow: wrap;
}

.suggested-creators-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(90px, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 18px 14px;
  width: 100%;
  padding: 8px 4px 2px;
  justify-items: center;
}

.suggested-creator-card {
  width: 100%;
  max-width: 150px;
}

.suggested-creator-link {
  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;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.suggested-avatar-wrapper {
  position: relative;
  width: 92px;
  height: 92px;
  padding: 4px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #f7f7fb;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  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-transition:
    -webkit-transform 0.2s ease,
    -webkit-box-shadow 0.2s ease;
  transition:
    -webkit-transform 0.2s ease,
    -webkit-box-shadow 0.2s ease;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    -webkit-transform 0.2s ease,
    -webkit-box-shadow 0.2s ease;
}

.suggested-creator-link:hover .suggested-avatar-wrapper {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.suggested-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  overflow: hidden;
  background: #e9ecf3;
  border: 2px solid #ffffff;
}

.suggested-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.suggested-verified-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #ffffff;
  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: 2px solid #ffffff;
}

.suggested-verified-badge svg {
  width: 18px;
  height: 18px;
  fill: #1e88e5;
}

.suggested-name {
  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: 6px;
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
  max-width: 100%;
}

.suggested-name-text {
  max-width: 100%;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggested-name .i_plus_g,
.suggested-name .i_plus_gf {
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.suggested-name .i_plus_g svg,
.suggested-name .i_plus_gf svg {
  width: 16px;
  height: 16px;
}

.boosted-creators-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 22px 16px;
  width: 100%;
  padding: 6px 2px 12px;
  justify-items: center;
}

.boosted-creators-viewport {
  width: 100%;
  overflow: hidden;
}

.boosted-creators-grid.boosted-creators-rotator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  row-gap: 0;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.boosted-creators-grid.boosted-creators-rotator > .boosted-creator-card {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.boosted-creators-grid.boosted-creators-rotator.boosted-rotating
  .boosted-creator-card {
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition:
    transform 0.45s ease,
    -webkit-transform 0.45s ease;
}

.boosted-creator-card {
  width: 100%;
  max-width: 170px;
  text-align: center;
  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;
  -webkit-transition: none;
  transition: none;
  position: relative;
}

.boosted-creator-clone {
  pointer-events: none;
}

.boosted-creator-link {
  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;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}

.boosted-avatar-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
  padding: 4px;
  border-radius: 50%;
  background: #f7f7fb;
  -webkit-box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  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-transition:
    -webkit-transform 0.2s ease,
    -webkit-box-shadow 0.2s ease;
  transition:
    -webkit-transform 0.2s ease,
    -webkit-box-shadow 0.2s ease;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    -webkit-transform 0.2s ease,
    -webkit-box-shadow 0.2s ease;
}

.boosted-creators-grid
  > .boosted-creator-card:first-child:nth-last-child(3)
  .boosted-avatar-wrapper,
.boosted-creators-grid
  > .boosted-creator-card:last-child:nth-child(3)
  .boosted-avatar-wrapper {
  width: 86px;
  height: 86px;
}

.boosted-creators-grid
  > .boosted-creator-card:nth-child(2):nth-last-child(2)
  .boosted-avatar-wrapper {
  width: 120px;
  height: 120px;
}

.boosted-creators-grid
  .boosted-creator-card.boosted-slot-left
  .boosted-avatar-wrapper,
.boosted-creators-grid
  .boosted-creator-card.boosted-slot-right
  .boosted-avatar-wrapper {
  width: 86px;
  height: 86px;
}

.boosted-creators-grid
  .boosted-creator-card.boosted-slot-center
  .boosted-avatar-wrapper {
  width: 120px;
  height: 120px;
}

.boosted-creators-grid .boosted-creator-card.boosted-slot-center {
  z-index: 3;
}

.boosted-creators-grid .boosted-creator-card.boosted-slot-left,
.boosted-creators-grid .boosted-creator-card.boosted-slot-right {
  z-index: 2;
}

.boosted-creators-grid.boosted-creators-rotator
  > .boosted-creator-card:nth-child(1)
  .boosted-avatar-wrapper,
.boosted-creators-grid.boosted-creators-rotator
  > .boosted-creator-card:nth-child(3)
  .boosted-avatar-wrapper {
  width: 86px !important;
  height: 86px !important;
}

.boosted-creators-grid.boosted-creators-rotator
  > .boosted-creator-card:nth-child(2)
  .boosted-avatar-wrapper {
  width: 120px !important;
  height: 120px !important;
}

.boosted-creators-grid.boosted-creators-rotator
  > .boosted-creator-card:nth-child(2) {
  z-index: 3;
}

.boosted-creators-grid.boosted-creators-rotator
  > .boosted-creator-card:nth-child(1),
.boosted-creators-grid.boosted-creators-rotator
  > .boosted-creator-card:nth-child(3) {
  z-index: 2;
}

.boosted-creator-link:hover .boosted-avatar-wrapper {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 14px 26px rgba(15, 23, 42, 0.16);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.16);
}

.boosted-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #e9ecf3;
  border: 2px solid #ffffff;
}

.boosted-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.boosted-verified-badge {
  position: absolute;
  right: 4px;
  bottom: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  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: 2px solid #ffffff;
}

.boosted-verified-badge svg {
  width: 16px;
  height: 16px;
  fill: #1e88e5;
}

.boosted-name {
  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: 6px;
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
  max-width: 100%;
}

.boosted-name-text {
  max-width: 100%;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.boosted-name .i_plus_g,
.boosted-name .i_plus_gf {
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.boosted-name .i_plus_g svg,
.boosted-name .i_plus_gf svg {
  width: 16px;
  height: 16px;
}

.boosted-username {
  font-size: 12px;
  color: #94a3b8;
  margin-top: -2px;
}

.boosted-stat {
  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: 6px;
  font-weight: 700;
  color: #0f172a;
}

.boosted-stat-icon svg {
  width: 16px;
  height: 16px;
  fill: #64748b;
}

.aura_suggested_creators_widget {
  overflow: hidden;
}

.aura_suggested_creators_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 10px;
  padding: 10px 4px 4px;
}

.aura_suggested_creator_card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: inherit;
}

.aura_suggested_avatar {
  width: 82px;
  height: 82px;
  padding: 1px;
  box-shadow: none;
}

.aura_suggested_creator_card:hover .aura_suggested_avatar {
  transform: translateY(-2px);
  box-shadow: none;
}

.aura_suggested_name {
  width: 100%;
  min-width: 0;
  justify-content: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.aura_suggested_name .suggested-name-text {
  max-width: 82px;
}

.aura_boosted_creators_widget {
  overflow: hidden;
}

.aura_boosted_creators_list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 6px 0 2px;
}

.aura_boosted_creator_card {
  overflow: hidden;
  border: 1px solid #e3e9f3;
  border-radius: 22px;
  background: #ffffff;
}

.aura_boosted_cover {
  position: relative;
  display: block;
  height: 108px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.aura_boosted_cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 24, 0.18);
}

.aura_boosted_cover_badge {
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #172033;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.aura_boosted_body {
  position: relative;
  display: flex;
  gap: 12px;
  min-width: 0;
  padding: 0 14px 14px;
}

.aura_boosted_avatar {
  position: relative;
  z-index: 2;
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  margin-top: -30px;
  padding: 3px;
  border-radius: 22px;
  background: #ffffff;
  overflow: visible;
  text-decoration: none;
}

.aura_boosted_avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.aura_boosted_verified {
  right: -6px;
  bottom: -6px;
}

.aura_boosted_copy {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 12px;
}

.aura_boosted_name {
  display: block;
  min-width: 0;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aura_boosted_category {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 6px;
  margin-top: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef3fb;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.aura_boosted_category svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: currentColor;
}

.aura_boosted_category span {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aura_boosted_bio {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 9px;
  color: #667085;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  overflow: hidden;
}

.aura_boosted_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  margin-top: 12px;
  border-radius: 14px;
  background: #111827;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.aura_boosted_cta:hover {
  background: #263244;
  color: #ffffff;
}

@media screen and (max-width: 540px) {
  .suggested-creators-grid {
    -ms-grid-columns: (minmax(80px, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 14px 10px;
  }
  .suggested-avatar-wrapper {
    width: 78px;
    height: 78px;
  }
  .suggested-name {
    font-size: 14px;
  }
  .boosted-creators-grid {
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 18px 12px;
  }
  .boosted-creators-grid.boosted-creators-rotator {
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
  }
  .boosted-avatar-wrapper {
    width: 82px;
    height: 82px;
  }
  .boosted-creators-grid
    .boosted-creator-card.boosted-slot-left
    .boosted-avatar-wrapper,
  .boosted-creators-grid
    .boosted-creator-card.boosted-slot-right
    .boosted-avatar-wrapper {
    width: 74px;
    height: 74px;
  }
  .boosted-creators-grid
    .boosted-creator-card.boosted-slot-center
    .boosted-avatar-wrapper {
    width: 100px;
    height: 100px;
  }
  .boosted-creators-grid.boosted-creators-rotator
    > .boosted-creator-card:nth-child(1)
    .boosted-avatar-wrapper,
  .boosted-creators-grid.boosted-creators-rotator
    > .boosted-creator-card:nth-child(3)
    .boosted-avatar-wrapper {
    width: 74px !important;
    height: 74px !important;
  }
  .boosted-creators-grid.boosted-creators-rotator
    > .boosted-creator-card:nth-child(2)
    .boosted-avatar-wrapper {
    width: 100px !important;
    height: 100px !important;
  }
  .aura_suggested_creators_grid {
    gap: 14px 8px;
  }
  .aura_suggested_avatar {
    width: 72px;
    height: 72px;
  }
  .aura_suggested_name {
    font-size: 12px;
  }
  .aura_suggested_name .suggested-name-text {
    max-width: 72px;
  }
  .aura_boosted_cover {
    height: 96px;
  }
  .aura_boosted_body {
    gap: 10px;
    padding: 0 12px 12px;
  }
  .aura_boosted_avatar {
    flex-basis: 66px;
    width: 66px;
    height: 66px;
  }
  .aura_boosted_name {
    font-size: 16px;
  }
  .aura_boosted_bio {
    font-size: 12px;
  }
}

.style_display_block {
  display: block;
}

.live_t_color {
  color: #f65169;
}

.lang_margin {
  margin-right: 5px;
}
.lang_margin_left {
  margin-left: 5px;
}

.lang_warning_color {
  color: red;
}

.lang_black_color {
  color: black;
}

.i_day_wish_wrapper_border_color_1 {
  border-color: #ffc107;
}
.i_day_wish_wrapper_border_color_2 {
  border-color: #ff4f70;
}
.i_day_wish_wrapper_border_color_3 {
  border-color: #7fc583;
}
/*Version 5.1 FINISHED*/
/*Version 5.3 Started*/
.cr_reels {
  margin-left: auto;
}
.cr_reels .imageorvideo {
  display: none;
}
.cr_reels .ownTooltipWrapper {
  transform: translate(-32px, 10px);
  -webkit-transform: translate(-32px, 10px);
  -moz-transform: translate(-32px, 10px);
  -o-transform: translate(-32px, 10px);
  -ms-transform: translate(-32px, 10px);
}
.processing-animation {
  background: linear-gradient(to right, #00b09b, #96c93d);
  animation: progressIndeterminate 1s infinite linear;
}

.processing-msg {
  color: #333;
  font-size: 14px;
  margin-top: 10px;
  font-weight: bold;
}

@keyframes progressIndeterminate {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
.uploaded_storie_container .point_input_wrapper {
  padding: 5px 10px;
}

.uploaded_storie_container .i_post_form_textarea {
  padding: 10px 10px;
}
.reel-locked {
  width: 100%;
  height: 100%;
  position: relative;
}

.reel-inner .onlySubs_note {
  padding-top: 10px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.i_header_btn_item .extensionPost {
  max-height: 210px !important;
}

.follow_hh {
  width: 100%;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Video call overlays */
.remote-wrapper {
  position: relative;
}
.remote-wrapper .remote-status {
  position: absolute;
  left: 6px;
  bottom: 6px;
  display: flex;
  gap: 6px;
  align-items: center;
  z-index: 1000;
}
.remote-wrapper .camera-off {
  display: none;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 4px;
  padding: 3px;
}
.remote-wrapper .camera-off.show {
  display: inline-flex;
}
.remote-wrapper .audio-level {
  width: 46px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}
.remote-wrapper .audio-level .bar {
  display: block;
  height: 100%;
  width: 4%;
  background: #4caf50;
  transition: width 120ms linear;
}

#local-net-quality.net-quality-badge {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9e9e9e;
  z-index: 1000;
}
#local-net-quality.q-good {
  background: #4caf50;
}
#local-net-quality.q-fair {
  background: #8bc34a;
}
#local-net-quality.q-poor {
  background: #ffc107;
}
#local-net-quality.q-bad {
  background: #ff9800;
}
#local-net-quality.q-verybad {
  background: #f44336;
}
.full-height {
  height: 100%;
}

/*Version 5.3 FINISHED*/
/****
MOBILE SCREEN
****/
@media screen and (max-width: 1235px) {
  .ishopping_wrapper_in .s_p_product_container {
    width: 50%;
  }
  .ishopping_wrapper_in {
    display: block;
  }
  .marketplace-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(220px, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 0 12px 16px;
    justify-items: center;
  }
  .marketplace-grid .s_p_product_container {
    width: 100%;
    max-width: 540px;
  }
}
@media screen and (max-width: 1070px) {
  .live_pp_camera_container {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
    left: 0px;
    z-index: 1;
  }
  .player {
    height: 100% !important;
  }
  .player > div {
    position: absolute !important;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
  }
}
@media screen and (max-width: 1100px) {
  .i_sub_box_container {
    width: 100%;
    width: calc(100% - 4px);
    width: -ms-calc(100% - 4px);
    width: -o-calc(100% - 4px);
  }
}
@media screen and (max-width: 1024px) {
  .i_other_products_container {
    display: inline-block;
  }
  .s_p_product_container {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .crate_a_product_item {
    width: 50%;
  }
  .input_title,
  .input_price {
    width: 100%;
    margin-bottom: 10px;
  }
  .create_product_form_column {
    display: inline-block;
  }
  .input_file_form,
  .input_uploaded_images {
    width: 100%;
  }
  .shop_menu_wrapper {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .shopping_left_menu {
    display: inline-block;
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    position: relative;
    top: auto;
  }
  .shop_main_wrapper {
    padding: 15px;
    padding-left: 15px;
    width: 100%;
  }
  .marketplace-hero {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .marketplace-hero__highlights {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
  }
  .marketplace-toolbar {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .shopping_left_menu {
    position: relative;
    top: 0px;
  }
  .i_shopping_menu_wrapper {
    display: none;
  }
  /*3.6 Mobile finished*/
  .i_settings_menu_wrapper {
    display: none;
  }
  .settings_wrapper {
    gap: 0;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .settings_main_wrapper {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-left: 0px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .settings_left_menu {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 25px;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .settings_mobile_ope_menu {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
  }
  .settings_mobile_menu_container {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0px auto;
    padding: 7px;
    color: #ffffff;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#f65169),
      to(#fab429)
    );
    background: linear-gradient(90deg, #f65169, #fab429);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -o-border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    font-family:
      system-ui,
      -apple-system,
      sans-serif;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  .settings_mobile_menu_container:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  .settings_mobile_menu_container svg {
    width: 25px;
    height: 25px;
    fill: #ffffff;
    margin-right: 8px;
  }
  .i_sub_box_container {
    width: 100%;
    width: calc(50% - 4px);
    width: -ms-calc(50% - 4px);
    width: -o-calc(50% - 4px);
  }
}
@media screen and (max-width: 1120px) and (min-width: 941px) {
  .wrapper {
    overflow-x: hidden;
  }
  .i_left_container {
    top: 0;
  }
  .leftSticky {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 280px;
    flex: 0 0 280px;
    max-width: 280px;
  }
  .leftSidebar_in .leftSidebarWrapper {
    max-width: 280px;
  }
  .rightSticky {
    display: none;
  }
  .th_middle {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    overflow-x: hidden;
  }
  .pageMiddle {
    max-width: 100%;
  }
}
@media screen and (max-width: 940px) {
  .wrapper {
    overflow-x: hidden;
  }

  .leftSticky {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: #f0f2f5;
  }
  .th_middle {
    padding: 0px 5px;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
  }
  .leftSidebarWrapper {
    padding: 10px !important;
  }
  .leftSidebar_in .leftSidebarWrapper {
    max-width: 100% !important;
    margin-left: initial;
  }

  .leftSidebarWrapper_mobile {
    padding: 10px !important;
  }
  .mobile_hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    float: left;
    padding-left: 5px;
    padding-top: 2px;
  }
  .leftStickyActive {
    display: block;
  }
  .i_sponsored_container {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .i_sponsored_image {
    max-width: 100%;
    min-width: 100%;
  }
  .i_sponsored_title_and_desc {
    padding: 0px 0px;
    width: 100%;
  }
  .i_search_active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
  }
  html.mobile-left-open,
  body.mobile-left-open {
    overflow: hidden;
    overscroll-behavior: none;
    height: 100dvh;
  }
  .mobile_left.leftStickyActive {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100dvh - 72px);
    z-index: 99;
    overflow: hidden;
  }
  .mobile_left.leftStickyActive .i_left_container {
    position: relative;
    top: 0;
    height: 100%;
  }
  .mobile_left.leftStickyActive .leftSidebar_in {
    height: 100%;
  }
  .mobile_left.leftStickyActive .leftSidebarWrapper {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    padding-top: 8px !important;
    padding-bottom: 18px !important;
  }
}
@media screen and (max-width: 900px) {
  .creators_menu_shell {
    padding: 8px 10px;
    gap: 8px;
  }
  .creators_menu_list {
    gap: 6px;
  }
  .creator_item a {
    min-height: 40px;
    padding: 0 14px;
  }
  .creators_hero_content {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .creators_hero_accent {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    min-width: 0;
  }
  .creator_list_box_wrp {
    width: 100%;
  }
  .creators_container .creator_card_body {
    padding: 0 16px 16px;
  }
}
@media screen and (max-width: 800px) {
  .product_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .product_details_left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
  .product_details_right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
  .product_details_right_in {
    margin-left: 0px;
  }
  .other_items_by_owner_title {
    padding-left: 15px;
  }
  .i_re_box {
    width: 100% !important;
  }
  .i_postFormContainer_swiper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    font-family:
      system-ui,
      -apple-system,
      sans-serif;
    padding: 15px;
    border-radius: 8px;
    background-color: #f0f1f5;
    margin-bottom: 25px;
    background-image: url("img/geometricBg.png");
    background-size: cover;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  .rightSticky {
    display: none;
  }
  .chart_row {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .chart_row_box {
    display: inline-block;
    width: 100%;
  }
  .chart_row_box:first-child {
    padding-left: 10px;
  }
  .chart_row_box:last-child {
    padding-right: 10px;
  }
  .i_settings_wrapper_item {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: initial !important;
    -ms-flex-align: initial !important;
    align-items: initial !important;
  }
  .i_settings_item_title_for {
    padding-left: 0px;
    width: 100%;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-bottom: 20px;
    padding-right: 20px;
  }
  .gender-options-row {
    gap: 8px;
    padding: 8px;
  }
  .i_settings_item_title {
    padding-bottom: 10px;
  }
  .flexBox {
    width: 100%;
    margin-bottom: 10px;
  }
  .youare {
    width: 100%;
  }
  .gender-options-row .flexBox {
    flex: 1 1 calc(50% - 8px);
    width: auto;
    min-width: 145px;
    max-width: none;
    margin-bottom: 0;
  }
  .page_category {
    width: 100%;
  }
  .credit_plan_box {
    padding: 0.5rem;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    -webkit-flex: 0 0 50%;
    -moz-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    -o-flex: 0 0 50%;
    position: relative;
  }
  .i_tab_padding {
    padding: 5px;
  }
  .i_sub_box_container {
    width: 100%;
    width: calc(100% - 4px);
    width: -ms-calc(100% - 4px);
    width: -o-calc(100% - 4px);
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 16px;
  }
  .l_feature_box_container {
    width: 50%;
  }
}
@media screen and (max-width: 720px) {
  .marketplace-grid {
    -ms-grid-columns: (minmax(180px, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .marketplace-hero {
    padding: 16px;
  }
  .hero-highlight {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .marketplace-grid {
    gap: 12px;
    padding: 0 12px 16px;
    justify-items: center;
  }
  .marketplace-card {
    margin: 0 auto;
    max-width: 520px;
  }
  .marketplace-card .product_image {
    height: 180px;
  }
}
@media screen and (max-width: 740px) {
  .inTable {
    display: inline-table;
  }
  .i_profile_i_container {
    padding-top: 0px;
  }
  .i_profile_cover {
    border-top-left-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    -webkit-border-top-right-radius: 0px;
  }
  .i_profile_avatar {
    width: 108px;
    height: 108px;
  }
  .i_profile_avatar_container {
    bottom: -58px;
  }
  .i_u_profile_info {
    padding-top: 73px;
  }
  .profile_identity_block {
    position: static;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-top: 0;
  }
  .profile_identity_badge {
    position: static;
    width: 100%;
    padding-top: 8px;
    -webkit-transform: none;
    transform: none;
  }
  .profile_identity_block .i_u_name,
  .profile_identity_block .i_p_cards {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .landing_box_animation {
    display: none;
  }
  .point_earn_box_cont {
    width: calc(50% - 0px);
    width: -o-calc(100% / 2 - 0px);
    width: -ms-calc(100% / 2 - 0px);
    width: -moz-calc(100% / 2 - 0px);
  }
  ._pbwg8 {
    width: calc(50% - 1px);
    width: -moz-calc(100%/2 -1px);
  }
  .i_profile_gift_frame {
    width: 120px;
    height: 120px;
    position: absolute;
    z-index: 5;
    border-radius: 50%;
    -webkit-border-radius: 50%;
  }
}
@media screen and (max-width: 700px) {
  .other_items_by_owner {
    padding-bottom: 30px;
  }
  .i_complete_level_name {
    display: none;
  }
  .i_levels_container_position {
    display: none;
  }
  .i_complete_level {
    padding: 0px 5px;
  }
  .cList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
  }
  .chat_left_container {
    width: 0px;
    display: none;
    overflow: hidden;
    position: absolute;
    height: 100%;
    left: 0px;
    bottom: 0px;
    top: 0px;
    z-index: 5;
    background-color: #ffffff;
  }
  .chatDisplay {
    display: block !important;
    width: 100% !important;
  }
  .chat_p_body .mobile_footer_fixed_menu_container {
    display: none !important;
  }
  .c_u_f_nm a {
    max-width: 200px;
  }
  .i_subscribing_note {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .pay_form_group {
    padding: 8px 5px;
  }
  .i_form_group_plus {
    width: calc(100% - 0px);
    width: -o-calc(100% / 1 - 0px);
    width: -ms-calc(100% / 1 - 0px);
    padding-bottom: 10px;
  }
  .pay_form_group_plus {
    padding: 8px 5px;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .landing_section_in h1 {
    font-size: 27px;
  }
  .landing_section_in .landing_seciond_in_note {
    font-size: 17px;
  }
}
@media screen and (max-width: 662px) {
  html,
  body {
    overflow-x: hidden;
  }

  .i_header_in,
  .i_header_right,
  .i_one {
    min-width: 0;
    gap: 6px;
  }

  .i_header_btn_item {
    margin-right: 0px;
  }

  *::-webkit-scrollbar {
    width: 1px !important;
    height: 1px !important;
  }
  *::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
  }
  *::-webkit-scrollbar-track {
    background: rgb(234, 238, 240);
  }
  .i_search {
    display: none;
    padding: 3px 15px;
    position: absolute !important;
    top: -2px;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 5;
  }
  .search_mobile {
    display: block !important;
  }
  .mobile_back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    float: left;
    padding-left: 5px;
    padding-top: 2px;
  }
  .i_search_active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
  }
  .i_general_box_search_container {
    left: 50%;
    right: auto;
    -webkit-transform: translate(-50%, 50px);
    transform: translate(-50%, 50px);
    -webkit-transform: translate(-50%, 50px);
    -moz-transform: translate(-50%, 50px);
    -o-transform: translate(-50%, 50px);
    -ms-transform: translate(-50%, 50px);
    width: calc(100vw - 16px);
  }
  .th_middle {
    width: 100%;
  }
  .i_post_comments_wrapper {
    padding: 0px 8px;
  }
  .certification_terms {
    display: inline-block;
    width: 100%;
  }
  .certification_terms_item {
    width: 100%;
  }
  .terms_bg {
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .certification_terms_item:nth-child(2) {
    width: 100%;
    padding-left: 0px;
  }
  .certification_file_box {
    -webkit-box-align: initial !important;
    -ms-flex-align: initial !important;
    align-items: initial !important;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .certification_file_box label {
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .pendingTitle {
    text-align: center;
  }
  .credit_plan_box {
    padding: 0.5rem;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    -o-flex: 0 0 100%;
    position: relative;
  }
  .landing_section_two_in h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 600px) {
  .creators_menu_wrapper {
    padding: 6px 6px 4px;
  }
  .creators_menu_shell {
    padding: 8px;
    gap: 6px;
    border-radius: 18px;
    -webkit-border-radius: 18px;
  }
  .creator_item {
    font-size: 12px;
  }
  .creator_item a {
    min-height: 38px;
    padding: 0 12px;
  }
  .creator_menu_more_btn {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    -webkit-border-radius: 14px;
  }
  .creator_menu_more_dropdown {
    top: calc(100% + 8px);
    min-width: 220px;
    padding: 8px;
  }
  .creator_menu_more_dropdown .subcategoryname,
  .creator_item:hover .subcategoryname {
    left: auto;
    right: 0;
    top: calc(100% + 8px);
    min-width: 220px;
    max-width: min(78vw, 260px);
  }
  .creators_hero {
    padding: 14px 14px;
    border-radius: 18px;
    gap: 10px;
  }
  .creators_hero_title {
    font-size: 16px;
  }
  .creators_hero_subtitle {
    font-size: 12px;
    line-height: 1.5;
  }
  .creators_hero_kicker {
    min-height: 34px;
    padding: 0 12px;
  }
  .creators_hero_accent {
    display: none;
  }
  .creators_container .creator_card--compact .creator_l_cover {
    height: 96px;
  }
  .creators_container .creator_card_body {
    gap: 12px;
    padding: 0 14px 14px;
    margin-top: -18px;
  }
  .creators_container .creator_card--compact .creator_identity_row--compact {
    padding: 9px 10px;
  }
  .creators_container .creator_card--compact .creator_avatar_container {
    width: 60px;
    height: 60px;
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
  }
  .creators_container .creator_card--compact .creator_handle {
    font-size: 15px;
  }
  .creators_container .creator_card--compact .creator_nm {
    font-size: 12px;
  }
  .creators_container .creator_relation_row,
  .creators_container .creator_action_row {
    gap: 8px;
  }
  .creators_container .creator_relation_row {
    grid-template-columns: 1fr;
  }
  .creators_container .creator_relation_item,
  .creators_container .creator_action_btn {
    width: 100%;
  }
  .creators_container .creator_relation_link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 12px;
  }
  .creators_container .creator_action_row {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .creators_container .creator_action_btn,
  .creators_container .creator_action_btn.i_btn_like_item,
  .creators_container .creator_action_btn.i_btn_like_item_flw,
  .creators_container .creator_action_btn.i_btn_become_fun,
  .creators_container .creator_action_btn.i_btn_unsubscribe {
    min-height: 46px;
    height: 46px;
    padding: 0 14px;
    line-height: 1;
    font-size: 13px;
    font-weight: 700;
    font-family: "Noto Sans", sans-serif;
    border-radius: 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .creators_container .creator_action_btn svg,
  .creators_container .creator_action_btn.i_btn_like_item svg,
  .creators_container .creator_action_btn.i_btn_like_item_flw svg,
  .creators_container .creator_action_btn.i_btn_become_fun svg,
  .creators_container .creator_action_btn.i_btn_unsubscribe svg {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16px;
    flex: 0 0 16px;
  }
  .creators_list_container--suggested {
    gap: 12px;
  }
  .creators_list_container--suggested .creator_list_box_wrp {
    width: 100%;
    max-width: none;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .i_p_items_box {
    flex-wrap: wrap;
  }
  .i_btn_become_fun {
    width: 100%;
    margin-bottom: 10px;
  }
  .i_btn_send_to_point {
    width: 100%;
    margin-left: 0px;
  }
  .i_btn_send_to_frame {
    margin-top: 10px;
    width: 100%;
  }
  .i_more_frames_wrapper {
    padding: 0px;
  }
  .i_more_frames_wrapper .credit_plan_box {
    padding: 0.5rem;
    -webkit-box-flex: 0 !important;
    flex: 0 0 100% !important;
    -webkit-flex: 0 0 100% !important;
    -moz-flex: 0 0 100% !important;
    -ms-flex: 0 0 100% !important;
    -o-flex: 0 0 100% !important;
    position: relative;
  }
  .wrapper {
    padding-bottom: 75px;
  }
  .story_choice_shell {
    width: min(100vw - 20px, 680px);
  }
  .story_choice_header {
    padding: 22px 20px 18px;
  }
  .story_choice_heading {
    font-size: 17px;
  }
  .story_choice_intro {
    font-size: 13px;
  }
  .choose_me.story_choice_grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
  .chsm {
    min-height: 180px;
    padding: 18px;
    gap: 22px;
  }
  .chsm_title {
    font-size: 18px;
  }
  .story_choice_desc {
    max-width: none;
    font-size: 13px;
  }
  .i_modal_g_header {
    font-size: 13px;
  }
  .shareClose svg,
  .coverCropClose svg {
    width: 13px;
    height: 13px;
  }
  .ishopping_wrapper_in .s_p_product_container {
    width: 100%;
    margin-bottom: 24px;
  }
  .ishopping_wrapper_in {
    display: block;
  }
  .creator_list_box_wrp {
    width: 100%;
  }
  .i_payout_ {
    min-width: 50%;
  }
  .l_feature_box_container {
    width: 100%;
  }
  .landing_create_equal_box {
    width: 100%;
    padding: 15px;
  }
  .inmob {
    display: none;
  }
  .ranges,
  .ranges_ {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .landing_section_register {
    padding: 10px;
  }
  .landing_reg {
    padding: 8px 10px !important;
  }
  .certification_file_box {
    display: inline-block;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    padding-left: 10px;
  }
  .point_earn_box_cont {
    width: calc(100% - 0px);
    width: -o-calc(100% / 1 - 0px);
    width: -ms-calc(100% / 1 - 0px);
    width: -moz-calc(100% / 1 - 0px);
  }
}
@media screen and (max-width: 462px) {
  .i_profile_menu_item_name {
    display: none;
  }
  .publish svg,
  .inv_btn svg {
    margin-right: 0px;
  }

  .i_image_video_btn {
    margin-right: 0px;
  }
  .form_btn {
    padding: 5px 5px 5px 5px;
  }
  .i_general_box_container,
  .i_general_box_message_notifications_container,
  .i_general_box_notifications_container {
    left: auto;
    right: 6px;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    top: 64px;
    width: calc(100vw - 12px);
    max-width: 100%;
    min-width: auto;
    border-radius: 0px;
    height: calc(100vh - 108px);
    height: -o-calc(100vh - 108px);
    height: -ms-calc(100vh - 108px);
  }
  .premium_locked_icon svg {
    width: 20px;
    height: 26px;
  }
  .premium_locked:after {
    border-top: 100px solid rgba(0, 0, 0, 0.4);
    border-left: 100px solid transparent;
  }
  .emojiBoxC {
    right: -23px;
  }
  .stickersContainer {
    right: -23px;
  }
  .Message_stickers_wrapper .sticker {
    width: 79px;
  }
  .giphy_results_container_conversation {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .l_feature_box_container {
    padding: 0px 30px;
  }
  .i_re_box {
    width: 100%;
    padding: 0px 10px;
  }
  .i_register_box_ .i_re_box {
    width: 100% !important;
    max-width: 100%;
  }
  .gender-options-row {
    gap: 8px;
    padding: 8px;
  }
  .gender-options-row .flexBox {
    flex: 1 1 calc(50% - 8px);
    width: auto;
    min-width: 140px;
    max-width: none;
  }
}
@media screen and (max-width: 545px) {
  .gender-options-row .flexBox {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }
  .gender-options-row .youare span {
    min-height: 42px;
    padding: 8px 10px;
  }
  .header {
    padding: 16px 22px 12px 6px;
  }

  .i_header_btn_item {
    margin-right: 0px;
  }

  .i_header_in {
    gap: 4px;
  }

  .i_one {
    gap: 5px;
  }
}
@media screen and (max-width: 413px) {
  .i_postFormContainer {
    padding: 15px 8px;
  }
  .pbtn {
    display: none;
  }
  .pbtn_plus {
    display: block !important;
  }
  .header {
    padding: 16px 22px 12px 6px;
  }
  .i_header_btn_item {
    margin-right: 0px;
  }
  .emojiBox {
    left: -20%;
  }
}
@media screen and (max-width: 390px) {
  .header {
    padding: 16px 22px 12px 0px;
  }
}
@media screen and (max-width: 375px) {
  .search_mobile {
    display: none !important;
  }
  .fms {
    display: block;
  }
}

/* Polls */
.poll_builder {
  position: relative;
  border: 1px solid #ececec;
  background: #fafafa;
  padding: 14px 14px 16px;
  border-radius: 12px;
  margin: 15px 0 12px;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}
.poll_builder::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(180deg, #e4e6eb, #e4e6eb);
  opacity: 0.9;
}
.poll_builder_head {
  position: relative;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 10px;
}
.poll_builder_title {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.poll_builder.active {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(228, 230, 235, 0.9);
  transform: translateY(-2px);
}
.poll_builder.active .poll_builder_title {
  color: #7a7d86;
}
.close_poll_builder {
  cursor: pointer;
  color: #666;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  background: #f5f6f9;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  font-size: 14px;
}
.close_poll_builder svg {
  width: 11px;
  height: 11px;
  display: block;
}
.close_poll_builder:hover {
  color: #4b4f59;
  transform: scale(1.05);
  background: #eceff5;
}
.poll_options_wrapper .poll_option_input {
  position: relative;
  margin-bottom: 0;
  padding: 2px 6px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.poll_option_field {
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 6px;
  font-weight: 500;
}
.poll_option_field:focus {
  outline: none;
}
.poll_builder.active .poll_options_wrapper .poll_option_input {
  border-color: transparent;
  box-shadow: none;
}
.remove_poll_option {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-weight: 700;
  color: #b5b5b5;
  transition: color 0.2s ease;
}
.remove_poll_option:hover {
  color: #7a7d86;
}
.poll_actions {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.add_poll_option {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7a7d86;
  font-weight: 600;
  transition: transform 0.15s ease;
}
.add_poll_option:hover {
  transform: translateY(-1px);
}
.poll_limit_notice {
  font-size: 12px;
  color: #777;
  padding: 6px 10px;
  background: #fff;
  border-radius: 20px;
  border: 1px dashed #e4e6eb;
}
.poll_wrapper {
  margin-top: 12px;
  padding: 15px;
  background: linear-gradient(180deg, #fff, #f9fafc);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}
.poll_option_item {
  padding: 12px;
  border: 1px solid #f0f1f3;
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.poll_option_item:hover {
  border-color: #d7d9df;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.poll_option_voted {
  border-color: #e4e6eb;
  box-shadow:
    0 0 0 1px #e4e6eb inset,
    0 10px 22px rgba(0, 0, 0, 0.06);
}
.poll_option_top {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.poll_option_stats {
  gap: 10px;
  align-items: center;
}
.poll_option_avatars {
  display: flex;
  align-items: center;
}
.poll_avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #e4e6eb;
  margin-right: -6px;
}
.poll_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poll_option_text {
  font-weight: 600;
  color: #23262f;
  font-size: 14px;
  line-height: 1.4;
}
.poll_option_percent {
  font-weight: 700;
  color: #7a7d86;
  font-size: 13px;
}
.poll_option_count {
  font-weight: 700;
  color: #41444d;
  font-size: 12px;
}
.poll_option_bar {
  margin-top: 4px;
  height: 9px;
  border-radius: 8px;
  background: #eff1f3;
  overflow: hidden;
}
.poll_option_bar_fill {
  height: 100%;
  background: linear-gradient(90deg, #84fab0, #8fd3f4);
  width: 0;
  transition: width 0.3s ease;
}
.poll_meta {
  margin-top: 8px;
  font-size: 12px;
  color: #555;
  gap: 12px;
  flex-wrap: wrap;
}
.poll_meta .poll_votes {
  font-weight: 600;
}
.campaign_toggle_row {
  margin: 12px 0;
}
.campaign_fields {
  border: 0;
  padding: 0;
  border-radius: 14px;
  background: #fff;
  margin-bottom: 12px;
  gap: 14px;
}
.campaign_fields .i_input_wrapper {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.campaign_fields .i_input_wrapper > span {
  display: block;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
  letter-spacing: 0.24px;
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
}
.campaign_fields .i_input,
.campaign_fields textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  font-size: 14px;
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease;
}
.campaign_fields .i_input:focus,
.campaign_fields textarea:focus {
  border-color: #dfe4ea;
  box-shadow: none;
  outline: none;
}
.campaign_fields input[type="number"] {
  -moz-appearance: textfield;
}
.campaign_fields input[type="number"]::-webkit-outer-spin-button,
.campaign_fields input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.campaign_fields textarea {
  min-height: 120px;
  resize: vertical;
}
.campaign_fields .rec_not {
  color: #6b7280;
  font-size: 12px;
  padding-left: 2px;
}
.campaign_hint {
  color: #777;
  font-size: 11px;
  margin-top: 4px;
}
.campaign_amounts {
  gap: 14px;
  flex-wrap: wrap;
}
.campaign_amounts .i_input_wrapper {
  width: calc(50% - 7px);
  min-width: 240px;
}
.campaign_cover_block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.campaign_cover_header {
  gap: 10px;
}
.campaign_cover_title {
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}
.campaign_cover_drop {
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 14px 12px;
  background: #f9fafb;
  color: #6b7280;
  font-size: 13px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.campaign_cover_drop:hover {
  border-color: #10b981;
  background: #f4fdf9;
  color: #0f172a;
}
.campaign_cover_preview {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-height: 260px;
}
.campaign_cover_preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.campaign_cover_remove {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: #ef4444;
  border-radius: 20px;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.campaign_cover_remove svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: currentColor;
}
.campaign_cover_remove:hover {
  background: #fee2e2;
}
.campaignCoverBtn {
  display: none;
}
.campaignCoverBtn.loading {
  opacity: 0.6;
  pointer-events: none;
}

.campaign_donate_modal .campaign_donate_modal_shell {
  width: min(560px, calc(100vw - 32px));
  border: 1px solid #dfe7f2;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.campaign_donate_modal .campaign_donate_modal_content {
  padding: 0;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
}

.campaign_donate_modal .campaign_donate_modal_header {
  position: relative;
  padding: 22px 28px 18px;
  padding-right: 78px;
  border-bottom: 1px solid #e6edf6;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  text-align: left;
}

.campaign_donate_modal .campaign_donate_modal_title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: #1b2437;
}

.campaign_donate_modal .campaign_donate_modal_body {
  padding: 22px 22px 0;
  background: transparent;
}

.campaign_donate_modal .donate_amount_group {
  padding: 0 0 18px;
  gap: 16px;
}

.campaign_donate_modal .donate_amount_input input {
  min-height: 56px;
  border-radius: 16px;
  padding: 0 16px;
  font-size: 17px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.campaign_donate_modal .donate_min_hint {
  margin-top: 10px;
}

.campaign_donate_modal .donate_point_value_note {
  margin-top: 8px;
}

.campaign_donate_modal .donate_wallet_option {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #dfe7f2;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.campaign_donate_modal .donate_wallet_icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.campaign_donate_modal .donate_wallet_title {
  font-size: 14px;
}

.campaign_donate_modal .donate_wallet_balance {
  font-size: 13px;
}

.campaign_donate_modal .donate_checkbox {
  min-height: 22px;
}

.campaign_donate_modal .donate_footer_actions {
  margin-top: 0;
  padding: 16px 22px 22px;
  border-top: 1px solid #e6edf6;
  background: linear-gradient(180deg, #f7faff 0%, #f2f6fc 100%);
}

.campaign_donate_modal .donate_footer_actions .send_tip_btn,
.campaign_donate_modal .donate_footer_actions .send_tip_methods_btn,
.campaign_donate_modal .donate_footer_actions .donate_send_btn,
.campaign_donate_modal .donate_footer_actions .donate_methods_btn {
  min-height: 52px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
}

.campaign_donate_modal .donate_send_btn {
  background: linear-gradient(135deg, #f65169 0%, #fab429 100%);
  box-shadow: 0 16px 34px rgba(246, 81, 105, 0.22);
}

.campaign_donate_modal .donate_methods_btn {
  border: 1px solid #d9e2ef;
  background: #ffffff;
  color: #1f2937;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.campaign_donate_modal .donate_methods_btn svg {
  fill: currentColor;
}

@media screen and (max-width: 640px) {
  .campaign_donate_modal .campaign_donate_modal_shell {
    width: calc(100vw - 20px);
    border-radius: 22px;
  }

  .campaign_donate_modal .campaign_donate_modal_header {
    padding: 20px 18px 16px;
    padding-right: 64px;
  }

  .campaign_donate_modal .campaign_donate_modal_title {
    font-size: 20px;
  }

  .campaign_donate_modal .campaign_donate_modal_body {
    padding: 18px 16px 0;
  }

  .campaign_donate_modal .donate_footer_actions {
    padding: 16px 16px 18px;
  }
}
.campaign_cover_input {
  position: absolute;
  left: -9999px;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.campaign_card {
  border: none;
  border-radius: 0;
  padding: 0;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}
.campaign_card_cover {
  width: 100%;
  overflow: hidden;
}
.campaign_card_cover img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 320px;
}
.campaign_card_body {
  padding: 16px;
}
.campaign_card_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.campaign_card_title {
  font-weight: 800;
  font-size: 20px;
  color: #0f172a;
}
.campaign_card_status {
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 11px;
  text-transform: capitalize;
  background: #f3f4f6;
  color: #111827;
}
.campaign_card_status.status_pending {
  background: #fff7ed;
  color: #c2410c;
}
.campaign_card_status.status_active,
.campaign_card_status.status_approved {
  background: #ecfdf3;
  color: #166534;
}
.campaign_card_status.status_rejected {
  background: #fef2f2;
  color: #b91c1c;
}
.campaign_card_summary {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.campaign_card_figures {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 10px 0;
}
.campaign_figure {
  display: flex;
  flex-direction: column;
}
.campaign_figure.align_end {
  align-items: flex-end;
  text-align: right;
}
.figure_label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.figure_value {
  font-size: 22px;
  font-weight: 800;
  color: #4c1d95;
}
.campaign_card_meta {
  font-size: 13px;
  color: #475467;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}
.campaign_stat {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
}
.campaign_stat .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #9ca3af;
  font-weight: 800;
  margin-bottom: 4px;
}
.campaign_stat .value {
  font-weight: 800;
  color: #0f172a;
}
.campaign_card_progress_bar {
  width: 100%;
  height: 12px;
  background: #e9d8fd;
  border-radius: 999px;
  overflow: hidden;
  margin: 12px 0;
}
.campaign_card_progress_bar span {
  display: block;
  height: 100%;
  background: #7c3aed;
}
.campaign_meta_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}
.campaign_meta_item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1f2937;
  font-weight: 700;
  font-size: 13px;
}
.meta_icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #ede9fe;
  color: #5b21b6;
}
.meta_icon svg {
  width: 14px;
  height: 14px;
}
.campaign_donors_preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 6px;
  gap: 10px;
}
.campaign_donor_stack {
  display: flex;
  align-items: center;
}
.campaign_donor_avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  margin-left: -10px;
  background: #f3f4f6;
}
.campaign_donor_avatar:first-child {
  margin-left: 0;
}
.campaign_donor_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.campaign_donor_trigger {
  font-weight: 700;
  font-size: 13px;
  color: #7c3aed;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.campaign_donor_trigger:hover {
  text-decoration: underline;
}
.campaign_donors_search {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  background: #f7f7fb;
}
.donor_search_icon {
  color: #9ca3af;
  display: flex;
}
.campaign_donor_filter {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-size: 14px;
  color: #111827;
}
.campaign_donors_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px 12px;
  padding: 8px 0;
}
.campaign_donor_tile {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.campaign_donor_tile .campaign_donor_avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-left: 0;
}
.campaign_donor_tile .campaign_donor_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.campaign_donor_tile .campaign_donor_name {
  font-weight: 800;
  font-size: 14px;
  color: #0f172a;
}
.campaign_donor_amount_small {
  font-size: 12px;
  color: #6b7280;
  font-weight: 700;
}
.campaign_donors_wrap {
  padding: 15px;
}
.campaign_cta_row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding: 15px;
}
.campaign_primary_btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 14px;
  background: #7c3aed;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  text-decoration: none;
}
.campaign_primary_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.45);
}
.campaign_donors_summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  color: #ffffff;
  overflow: hidden;
  background: transparent;
}
.campaign_donors_summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}
.campaign_donors_summary span,
.campaign_donors_summary strong {
  position: relative;
  z-index: 2;
}
.campaign_donors_summary span {
  font-size: 13px;
  color: #e5e7eb;
  font-weight: 600;
}
.campaign_donors_summary strong {
  position: absolute;
  left: 49%;
  top: 50%;
  transform: translate(-50%, -49px);
  z-index: 2;
  font-size: 24px;
}
.campaign_donor_cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: contain;
  object-position: center top;
  z-index: 0;
  transform: translateY(30px);
}
.campaign_donors_list {
  max-height: 420px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 6px 0;
}
.campaign_donor_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #eef2f7;
  gap: 12px;
}
.campaign_donor_info {
  flex: 1;
  min-width: 0;
}
.campaign_donor_name {
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
}
.campaign_donor_username,
.campaign_donor_time {
  font-size: 12px;
  color: #6b7280;
}
.campaign_donor_amount {
  font-weight: 800;
  color: #7c3aed;
  font-size: 14px;
  white-space: nowrap;
}
.campaign_donor_empty {
  padding: 14px;
  border: 1px dashed #e5e7eb;
  border-radius: 12px;
  text-align: center;
  color: #6b7280;
  font-weight: 600;
}
.donate_amount_group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px 8px 14px;
}
.donate_amount_input {
}
.donate_amount_input input {
  width: 100%;
  border: 1px solid #d9dfee;
  border-radius: 14px;
  padding: 14px 14px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  background: #fff;
}
.donate_amount_input input:focus {
  outline: 2px solid #d9dfee;
  border-color: #d9dfee;
  box-shadow: none;
}
.donate_min_hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
  margin-top: 8px;
  font-weight: 600;
}
.donate_point_value_note {
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  padding-left: 2px;
}
.donate_hint_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #6d28d9;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2px 6px;
  font-size: 11px;
  background: #f5f3ff;
}
.donate_wallet_option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f9fafb;
}
.donate_radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 5px solid #6d28d9;
  background: #fff;
  box-shadow: 0 4px 10px rgba(109, 40, 217, 0.18);
}
.donate_wallet_icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #ede9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b21b6;
  padding: 5px;
}
.donate_wallet_icon svg {
  width: 25px;
  height: 25px;
}
.donate_wallet_text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}
.donate_wallet_text .donate_wallet_title {
  font-weight: 700;
  color: #1f2937;
  font-size: 13px;
}
.donate_wallet_text .donate_wallet_balance {
  color: #4b5563;
  font-weight: 600;
  font-size: 12px;
}
.donate_checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  font-size: 14px;
}
.donate_checkbox input {
  width: 20px;
  height: 20px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  flex: 0 0 20px;
}
.donate_footer_actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-top: 10px;
}
.donate_footer_actions .donate_cancel_btn {
  display: none;
}
.donate_footer_actions .send_tip_btn,
.donate_footer_actions .send_tip_methods_btn,
.donate_footer_actions .donate_send_btn,
.donate_footer_actions .donate_methods_btn {
  width: 100%;
  min-width: 0;
  margin-top: 0;
  padding: 14px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.2;
  font-size: 15px;
}
.donate_footer_actions .send_tip_btn svg,
.donate_footer_actions .send_tip_methods_btn svg {
  margin-right: 0;
}
.donate_cancel_btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-weight: 700;
  color: #111827;
  background: #f9fafb;
  font-size: 14px;
}
.donate_send_btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: 800;
  color: #fff;
  background: #581c87;
  box-shadow: 0 12px 30px rgba(88, 28, 135, 0.35);
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .donate_amount_group {
    padding: 8px 2px 12px;
    gap: 14px;
  }
  .donate_footer_actions {
    gap: 10px;
  }
  .donate_footer_actions .send_tip_btn,
  .donate_footer_actions .send_tip_methods_btn,
  .donate_footer_actions .donate_send_btn,
  .donate_footer_actions .donate_methods_btn {
    font-size: 14px;
    padding: 13px 14px;
  }
}
.campaignOpenBtn.campaignActive {
  box-shadow:
    0 0 0 2px #10b981 inset,
    0 6px 14px rgba(16, 185, 129, 0.25);
  background: #ecfdf3;
}
.campaign_popup_wrapper {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 20px;
  overflow: auto;
}
.campaign_popup_wrapper.nonePoint {
  display: none;
}
.campaign_popup_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.campaign_popup_card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 26px 68px rgba(23, 42, 78, 0.16);
  padding: 22px;
  width: min(540px, 95vw);
  z-index: 1;
  border: 1px solid #e6ecf7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.campaign_popup_head {
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f2f7;
}
.campaign_popup_title {
  font-weight: 800;
  font-size: 18px;
  color: #14203a;
  letter-spacing: 0.2px;
}
.campaign_popup_close {
  cursor: pointer;
  color: #a1acc4;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.campaign_popup_close:hover {
  color: #f65169;
  transform: scale(1.06);
}
.campaign_amounts {
  gap: 12px;
}
.campaign_popup_actions {
  gap: 10px;
  margin-top: 8px;
  border-top: 1px solid #eef2f7;
  padding-top: 10px;
  display: flex;
  align-items: center;
}
.campaign_popup_actions .form_btn {
  text-align: center;
  flex: 1;
  padding: 11px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}
.campaign_popup_actions .campaignSaveBtn {
  background: #4f8bff;
  color: #fff;
  box-shadow: 0 10px 24px rgba(79, 139, 255, 0.28);
}
.campaign_popup_actions .campaignSaveBtn:hover {
  background: #3d7aeb;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(79, 139, 255, 0.35);
}
.campaign_popup_actions .campaignCancelBtn {
  background: #f3f4f6;
  color: #444;
  border: 1px solid #e5e7eb;
}
.campaign_popup_actions .campaignCancelBtn:hover {
  background: #e6e8ee;
  color: #20242c;
  border-color: #dfe2e8;
}
.poll_disabled_note {
  color: #c0392b;
  font-size: 12px;
  margin-bottom: 6px;
}
.poll_voted_text {
  color: #2b8a3e;
  font-size: 12px;
  font-weight: 600;
}
.poll_empty {
  color: #777;
  font-size: 13px;
}

/* Scheduled posts (compiled CSS mirror) */
.schedule_controls {
  position: relative;
  border: none;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 12px;
  background: transparent;
  box-shadow: none;
}
.schedule_header {
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.schedule_toggle {
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px dashed #d5ddf0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.schedule_toggle .irow_box_left {
  font-weight: 700;
  color: #1c274c;
}
.schedule_action_btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  margin-left: auto;
  background: linear-gradient(135deg, #4f8bff, #7a5cff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(79, 139, 255, 0.3);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.schedule_action_btn svg {
  width: 18px;
  height: 18px;
}
.schedule_action_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(79, 139, 255, 0.4);
}
.schedule_selection {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e6eaf5;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.schedule_selection.nonePoint {
  display: none !important;
}
.schedule_selected_time {
  font-weight: 600;
  color: #1c274c;
  font-size: 13px;
}
.schedule_clear {
  cursor: pointer;
  color: #d93025;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
}
.schedule_clear svg {
  width: 16px;
  height: 16px;
}
.schedule_time_row {
  margin-top: 10px;
}
.schedule_time_row input[type="datetime-local"] {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  max-width: 260px;
  font-size: 14px;
}
.schedule_hint {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
}
.scheduled_badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  background: #eef3ff;
  color: #2c6bed;
  margin-bottom: 6px;
}
.scheduled_pending {
  background: #fff7e6;
  color: #d57a00;
}
.scheduled_failed {
  background: #ffeaea;
  color: #d93025;
}
.scheduled_meta {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}
.scheduled_meta.scheduled_pending {
  color: #d57a00;
}
.scheduled_meta.scheduled_failed {
  color: #d93025;
}
.scheduled_meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  background: #fff4de;
  color: #b96d00;
  vertical-align: middle;
  margin-top: 4px;
  margin-left: 4px;
}
.scheduled_meta.scheduled_failed {
  background: #ffeaea;
  color: #d93025;
}
.i_post_shared_time .scheduled_meta {
  display: block;
  margin-top: 6px !important;
}
.schedule_popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(18, 25, 38, 0.42);
  z-index: 120;
}
.schedule_popup.active {
  display: flex;
}
.schedule_popup_card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 26px 68px rgba(23, 42, 78, 0.16);
  border: 1px solid #e6ecf7;
  width: min(480px, 94vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.schedule_popup_head {
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f2f7;
}
.schedule_popup_title {
  font-weight: 800;
  font-size: 18px;
  color: #14203a;
  letter-spacing: 0.2px;
}
.schedule_popup_close {
  cursor: pointer;
  color: #a1acc4;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  font-size: 18px;
}
.schedule_popup_close:hover {
  color: #f65169;
  transform: scale(1.06);
}
.schedule_popup_actions {
  margin-top: 12px;
  gap: 10px;
  display: flex;
}
.schedule_popup_btn {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.schedule_popup_btn.cancel {
  background: #f3f4f6;
  color: #444;
}
.schedule_popup_btn.ok {
  background: #4f8bff;
  color: #fff;
}
.schedule_btn.active .i_image_video_btn,
.schedule_btn.active:hover .i_image_video_btn {
  background: #f5b4c7;
  box-shadow: none;
}
.schedule_btn .i_image_video_btn {
  /* background:#f7c2d1; */
  border-radius: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef3e52;
  /* box-shadow:0 8px 18px rgba(0,0,0,0.08); */
}
.schedule_btn .i_image_video_btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.schedule_btn.active {
  background: #f5b4c7 !important;
}
.schedule_dt_inputs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}
.schedule_dt_field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #4b5563;
}
.schedule_dt_field input {
  border: 1px solid #e6eaf5;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  background: #fff;
  color: #1c274c;
}
.schedule_dt_field input:focus {
  outline: 2px solid #4f8bff;
}
.schedule_dt_field input::-webkit-calendar-picker-indicator {
  filter: invert(36%) sepia(62%) saturate(5295%) hue-rotate(206deg)
    brightness(98%) contrast(101%);
  cursor: pointer;
}
.schedule_dt_field input[type="date"],
.schedule_dt_field input[type="time"] {
  appearance: none;
  -webkit-appearance: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.schedule_dt_field input[type="date"]:hover,
.schedule_dt_field input[type="time"]:hover {
  border-color: #c7d2f0;
  box-shadow: 0 4px 10px rgba(79, 139, 255, 0.12);
}
.schedule_dt_field input[type="date"]::-webkit-inner-spin-button,
.schedule_dt_field input[type="time"]::-webkit-inner-spin-button {
  height: 20px;
}
.schedule_dt_group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.schedule_dt_group select {
  flex: 1;
  border: 1px solid #e6eaf5;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  background: #f8faff;
  color: #111827;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  min-width: 95px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.schedule_dt_group select:hover {
  border-color: #c7d2f0;
  box-shadow: 0 4px 10px rgba(79, 139, 255, 0.12);
}
.schedule_dt_group select:focus {
  outline: 2px solid #4f8bff;
}
.schedule_dt_item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.schedule_dt_label {
  font-size: 11px;
  color: #8a94ad;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24px;
}
.schedule_time_note {
  font-size: 11px;
  color: #8f97aa;
  margin-top: 2px;
  margin-bottom: 5px;
}
.schedule_inline_warning {
  color: #c0392b;
  font-size: 12px;
  margin-top: 6px;
}
.schedule_info {
  background: #f8f9fd;
  border: 1px dashed #dfe6f5;
  border-radius: 12px;
  padding: 10px 12px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.schedule_info strong {
  color: #1c274c;
}
.schedule_tz {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  background: #e9f0ff;
  color: #1c3d7a;
  font-weight: 700;
  font-size: 12px;
  margin-top: 6px;
}
.scheduled_preview {
  border: 1px solid #e6eaf5;
  border-radius: 12px;
  padding: 10px 12px;
  background: #f8f9fd;
  margin-bottom: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}
.scheduled_preview_title {
  font-weight: 700;
  color: #1c274c;
  font-size: 14px;
  margin-bottom: 4px;
}
.scheduled_preview_meta {
  font-size: 12px;
  color: #6b7280;
}
.license_lock_container {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #141726 0%, #1c2238 100%);
  color: #fff;
}
.license_lock_box {
  max-width: 420px;
  width: 90%;
  background: #0f1220;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
}
.license_lock_icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.license_lock_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.license_lock_desc {
  font-size: 14px;
  color: #c5c9d6;
  margin-bottom: 20px;
}
.license_lock_btn {
  display: inline-block;
  padding: 12px 18px;
  background: #4e6af1;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
}
.license_lock_btn:hover {
  background: #3656ec;
}
.license_gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2ff 0%, #f8fbff 50%, #e8f0ff 100%);
  padding: 24px;
}
.license_card {
  max-width: 520px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e8ebf3;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(15, 19, 38, 0.08);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #1c274c;
}
.license_card_header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.license_icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(78, 106, 241, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.license_icon svg {
  width: 26px;
  height: 26px;
  fill: #4e6af1;
}
.license_status_chip {
  padding: 8px 12px;
  border-radius: 14px;
  background: #f0f3ff;
  color: #4e6af1;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}
.license_title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #1c274c;
}
.license_sub {
  margin: 6px 0 0;
  color: #5b6686;
  font-size: 14px;
  line-height: 1.6;
}
.license_meta_row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.license_meta_item {
  flex: 1;
  min-width: 160px;
  background: #f7f9fc;
  border: 1px solid #e8ebf3;
  border-radius: 12px;
  padding: 10px 12px;
}
.license_meta_item .label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #7c829d;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
  font-weight: 700;
}
.license_meta_item .value {
  font-weight: 700;
  color: #1c274c;
  font-size: 14px;
}
.license_actions_row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.license_primary_btn,
.license_ghost_btn {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  border: 1px solid transparent;
}
.license_primary_btn {
  background: linear-gradient(135deg, #5d7bff, #4cb1ff);
  color: #fff;
}
.license_primary_btn:hover {
  filter: brightness(1.05);
}
.license_ghost_btn {
  background: #fff;
  color: #1c274c;
  border-color: #e8ebf3;
}
.license_ghost_btn:hover {
  border-color: #c7d2f0;
}
.license_note {
  font-size: 12px;
  color: #6b7280;
}
.license_wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.license_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #f8f9fd;
  border-radius: 12px;
}
.license_title {
  font-size: 18px;
  font-weight: 700;
  color: #1c274c;
}
.license_sub {
  color: #6b7280;
  font-size: 13px;
  margin-top: 4px;
}
.license_status_pill {
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  text-transform: capitalize;
}
.license_status_pill.active {
  background: #e8f5e9;
  color: #1b5e20;
}
.license_status_pill.inactive,
.license_status_pill.failed {
  background: #fff3e0;
  color: #8c3c00;
}
.license_status_pill.locked,
.license_status_pill.revoked {
  background: #ffebee;
  color: #c62828;
}
.license_status_pill.grace {
  background: #e3f2fd;
  color: #0d47a1;
}
.license_grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 15px;
}
.license_card {
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}
.license_alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 10px;
}
.license_alert.success {
  background: #e8f5e9;
  color: #1b5e20;
}
.license_alert.error {
  background: #ffebee;
  color: #c62828;
}
.license_meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.license_meta_item {
  background: #f8f9fd;
  border: 1px solid #e6eaf5;
  border-radius: 10px;
  padding: 10px 12px;
  flex: 1;
  min-width: 180px;
}
.license_meta_item .label {
  display: block;
  font-size: 11px;
  color: #8a94ad;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}
.license_meta_item .value {
  font-weight: 700;
  color: #1c274c;
}
.license_form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.license_form .form_row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.license_form label {
  font-size: 13px;
  color: #4b5563;
  font-weight: 700;
}
.license_form input[type="text"] {
  border: 1px solid #e6eaf5;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
}
.license_form input[type="text"]:focus {
  outline: 2px solid #4e6af1;
}
.form_actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.primary_btn {
  background: #4e6af1;
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  border: 1px solid #4e6af1;
}
.primary_btn:hover {
  background: #3656ec;
  border-color: #3656ec;
}
.ghost_btn {
  background: #fff;
  color: #1c274c;
  border: 1px solid #e6eaf5;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
}
.ghost_btn:hover {
  border-color: #c7d2f0;
}
.info_card {
  background: #0f1220;
  color: #c5c9d6;
}
.info_card .info_title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.info_card .info_list {
  margin: 0 0 10px 18px;
  padding: 0;
  list-style: disc;
}
.info_card .info_list li {
  margin-bottom: 6px;
  font-size: 13px;
}
.info_card .info_note {
  font-size: 13px;
  color: #9ba4c0;
}
.license_notice_area {
  margin-top: 6px;
  font-size: 13px;
  color: #c62828;
}
@media (max-width: 1024px) {
  .license_grid {
    grid-template-columns: 1fr;
  }
}
.blog-wrapper {
  margin: 0 auto;
  padding: 30px 20px 60px 20px;
  display: block;
}
.blog-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.blog-hero-head h1 {
  font-size: 34px;
  margin: 0;
  color: #111827;
}
.blog-hero-head p {
  margin: 4px 0 12px 0;
  color: #4b5563;
}
.blog-search {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-search input {
  flex: 1;
  min-width: 220px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}
.blog-search button {
  padding: 12px 16px;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  border: 1px solid #111827;
  cursor: pointer;
}
.blog-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  display: block;
  color: #fff;
  background: transparent;
  min-height: 260px;
}
.blog-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75);
}
.blog-hero-content {
  position: relative;
  padding: 24px 24px 28px 24px;
  max-width: 700px;
}
.blog-hero-content h2 {
  margin: 6px 0;
  font-size: 24px;
  line-height: 1.3;
}
.blog-hero-content p {
  margin: 0;
  color: #dbeafe;
}
.blog-hero-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #111827;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.blog-hero-date {
  font-size: 13px;
  color: #cbd5f5;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.blog-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.06);
}
.blog-card-image {
  display: block;
  padding-top: 62%;
  background-size: cover;
  background-position: center;
}
.blog-card-body {
  padding: 16px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.blog-card-meta {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card-body h3 {
  margin: 0;
  font-size: 18px;
}
.blog-card-body h3 a {
  color: #111827;
}
.blog-card-body p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}
.blog-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #111827;
}
.blog-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}
.blog-detail-article {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.05);
}
.blog-detail-header h1 {
  margin: 0 0 10px 0;
  font-size: 28px;
}
.blog-detail-excerpt {
  color: #4b5563;
  margin: 0 0 14px 0;
}
.blog-detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-cover img {
  width: 100%;
  border-radius: 14px;
  margin: 16px 0;
}
.blog-content {
  color: #1f2937;
  line-height: 1.8;
}
.blog-reactions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.blog-react {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
}
.blog-react.active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}
.blog-sidebar {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
}
.blog-sidebar-title {
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-sidebar ul {
  margin: 0;
  padding-left: 16px;
}
.blog-sidebar li {
  margin-bottom: 8px;
}
.blog-read-more {
  margin-top: 24px;
}
.blog-back {
  margin-bottom: 10px;
}
@media (max-width: 980px) {
  .blog-detail {
    grid-template-columns: 1fr;
  }
  .blog-wrapper {
    padding: 24px 16px;
  }
  .blog-hero-card {
    min-height: 220px;
  }
}
.hero-layout {
  padding: 32px 14px 60px;
  background: #fff;
}
.blog-detail-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 36px;
  align-items: flex-start;
}
.blog-detail-article {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.blog-detail-header h1 {
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 14px 0;
  color: #0f172a;
  font-weight: 800;
}
.blog-detail-excerpt {
  font-size: 16px;
  color: #4b5563;
  margin: 0 0 18px 0;
  max-width: 780px;
}
.hero-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}
.blog-detail-meta {
  gap: 14px;
}
.blog-author-name {
  font-weight: 700;
  color: #111827;
}
.blog-author-role {
  font-size: 12px;
  color: #6b7280;
}
.blog-date {
  color: #6b7280;
  font-size: 13px;
}
.rich-content {
  margin-top: 26px;
  color: #1f2937;
  line-height: 1.75;
  font-size: 16px;
}
.rich-content h2 {
  font-size: 30px;
  margin: 28px 0 14px;
  color: #0f172a;
  font-weight: 800;
}
.rich-content h3 {
  font-size: 24px;
  margin: 24px 0 12px;
  color: #111827;
  font-weight: 700;
}
.rich-content p {
  margin: 0 0 18px;
}
.rich-content img {
  max-width: 100%;
  border-radius: 14px;
  display: block;
  margin: 20px auto;
}
.blog-latest-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-latest-list a {
  display: block;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  text-decoration: none;
}
.blog-latest-list .latest-title {
  font-weight: 700;
  color: #111827;
  font-size: 14px;
  line-height: 1.4;
}
.blog-latest-list .latest-snippet {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  line-height: 1.5;
}
.blog-latest-list .latest-date {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}
.blog-read-more {
  margin-top: 56px;
}
.readmore-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: 18px;
  justify-content: flex-start;
}
.readmore-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
}
.readmore-img {
  display: block;
  padding-top: 58%;
  background-size: cover;
  background-position: center;
}
.readmore-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.readmore-body {
  padding: 14px 14px 18px;
}
.readmore-body h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
}
@media (max-width: 1180px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
}
.blog-detail-page.hero-layout {
  padding: 42px 20px 90px;
  background: radial-gradient(
    circle at 12% 20%,
    rgba(255, 255, 255, 0.95) 0,
    #f5f7fb 42%,
    #f3f5fb 100%
  );
}
.blog-detail-page .blog-detail-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.85fr);
  gap: 42px;
  align-items: flex-start;
}
.blog-detail-page .blog-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.blog-detail-page .blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
  text-decoration: none;
}
.blog-detail-page .blog-back-link:hover {
  color: #111827;
}
.blog-detail-page .blog-back-icon {
  font-size: 16px;
  line-height: 1;
}
.blog-detail-page .blog-hero-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: transparent;
  border-radius: 24px;
  padding: 0;
  border: none;
  box-shadow: none;
}
.blog-detail-page .blog-hero-text h1 {
  margin: 0 0 10px 0;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 800;
  color: #0f172a;
}
.blog-detail-page .blog-lead {
  margin: 0 0 18px 0;
  color: #4b5563;
  font-size: 17px;
  max-width: 820px;
}
.blog-detail-page .blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-detail-page .blog-meta-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-detail-page .blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-detail-page .blog-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.blog-detail-page .blog-author-name {
  font-weight: 700;
  color: #111827;
}
.blog-detail-page .blog-author-role {
  font-size: 12px;
  color: #6b7280;
}
.blog-detail-page .blog-date {
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
}
.blog-detail-page .blog-views {
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}
.blog-detail-page .blog-hero-media img {
  width: 100%;
  border-radius: 22px;
  display: block;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
}
.blog-detail-page .blog-content.rich-content {
  margin-top: 6px;
  background: transparent;
  border-radius: 22px;
  padding: 0;
  border: none;
  box-shadow: none;
  color: #1f2937;
  line-height: 1.8;
  font-size: 16px;
}
.blog-detail-page .blog-content.rich-content h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 28px 0 14px;
  color: #0f172a;
  font-weight: 800;
}
.blog-detail-page .blog-content.rich-content h3 {
  font-size: 24px;
  margin: 24px 0 12px;
  color: #111827;
  font-weight: 700;
}
.blog-detail-page .blog-content.rich-content p {
  margin: 0 0 18px;
}
.blog-detail-page .blog-content.rich-content img {
  margin: 24px auto;
  border-radius: 16px;
}
.blog-detail-page .blog-content.rich-content video,
.blog-detail-page .blog-content.rich-content .blog-inline-video {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.blog-detail-page .blog-reactions-compact {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.blog-detail-page .blog-react {
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-detail-page .blog-react:hover {
  border-color: #111827;
}
.blog-detail-page .blog-react.active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}
.blog-detail-page .blog-aside {
  position: sticky;
  top: 120px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.blog-detail-page .aside-section {
  background: transparent;
  border: none;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: none;
}
.blog-detail-page .aside-title {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}
.blog-detail-page .aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-detail-page .aside-list li a {
  display: block;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: #111827;
  transition: all 0.2s ease;
}
.blog-detail-page .aside-list li a:hover {
  background: transparent;
  border: none;
  box-shadow: none;
}
.blog-detail-page .aside-item-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}
.blog-detail-page .aside-item-snippet {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  line-height: 1.5;
}
.blog-detail-page .aside-list.alt li a {
  background: transparent;
}
.blog-detail-page .blog-read-more {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 64px;
}
.blog-detail-page .blog-read-more h3 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}
.blog-detail-page .blog-grid.readmore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 384px));
  gap: 24px;
  justify-content: center;
}
.blog-detail-page .readmore-card.blog-list-card {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  gap: 18px;
}
.blog-detail-page .blog-detail-ads-wrap a {
  color: inherit;
  text-decoration: none;
}
.blog-detail-page .blog-list-thumb {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  height: 230px;
  background: #f3f4f6;
}
.blog-detail-page .blog-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-detail-page .blog-list-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.blog-detail-page .blog-read-more .blog-list-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}
.blog-detail-page .blog-read-more .blog-list-card h3 a {
  color: #111827;
  text-decoration: none;
}
.blog-detail-page .blog-read-more .blog-list-card h3 a:hover {
  text-decoration: underline;
}
.blog-detail-page .blog-read-more .blog-list-excerpt {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.65;
}
.blog-detail-page .blog-list-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 4px;
}
.blog-detail-page .blog-list-meta {
  font-size: 14px;
  color: #6b7280;
  letter-spacing: 0;
  text-transform: none;
}
.blog-detail-page .blog-aside-ads .blog-detail-ads-wrap {
  margin-bottom: 0;
}
.blog-detail-page .blog-list-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-detail-page .blog-list-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: none;
}
.blog-detail-page .blog-list-author-name {
  font-weight: 700;
  color: #111827;
  font-size: 15px;
}
.blog-detail-page .blog-list-author-role {
  font-size: 13px;
  color: #6b7280;
}
.blog-detail-page {
  --blog-font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --blog-heading: #0f172a;
  --blog-body: #374151;
  --blog-muted: #6b7280;
  --blog-muted-2: #9ca3af;
  --blog-link: #2563eb;
  --blog-link-hover: #1d4ed8;
}
.blog-detail-page,
.blog-detail-page .blog-main,
.blog-detail-page .blog-content.rich-content,
.blog-detail-page .blog-aside {
  font-family: var(--blog-font);
}
.blog-detail-page .blog-back-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blog-muted);
  letter-spacing: -0.005em;
}
.blog-detail-page .blog-back-link:hover {
  color: var(--blog-heading);
}
.blog-detail-page .blog-hero-text h1 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--blog-heading);
}
.blog-detail-page .blog-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--blog-muted);
  font-weight: 500;
  max-width: 820px;
}
.blog-detail-page .blog-meta {
  font-size: 13px;
  color: var(--blog-muted);
}
.blog-detail-page .blog-author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--blog-heading);
}
.blog-detail-page .blog-author-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--blog-muted-2);
}
.blog-detail-page .blog-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--blog-muted-2);
}
.blog-detail-page .blog-content.rich-content {
  color: var(--blog-body);
  line-height: 1.7;
  font-size: 16px;
}
.blog-detail-page .blog-content.rich-content p {
  color: var(--blog-body);
  line-height: 1.7;
  font-size: 16px;
}
.blog-detail-page .blog-content.rich-content h2 {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--blog-heading);
  margin: 28px 0 14px;
}
.blog-detail-page .blog-content.rich-content h3 {
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  font-weight: 600;
  color: var(--blog-heading);
  margin: 22px 0 12px;
}
.blog-detail-page .blog-content.rich-content a {
  color: var(--blog-link);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
  font-weight: 600;
}
.blog-detail-page .blog-content.rich-content a:hover {
  color: var(--blog-link-hover);
}
.blog-detail-page .blog-share {
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-detail-page .blog-share-label {
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}
.blog-detail-page .blog-share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-detail-page .blog-share-btn {
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-detail-page .blog-share-btn:hover {
  border-color: #111827;
}
.blog-detail-page .blog-share-facebook {
  color: #1b4f9a;
  border-color: #dbeafe;
  background: #eff6ff;
}
.blog-detail-page .blog-share-twitter {
  color: #0f172a;
  border-color: #e5e7eb;
  background: #fff;
}
.blog-detail-page .blog-share-whatsapp {
  color: #166534;
  border-color: #dcfce7;
  background: #ecfdf3;
}
.blog-detail-page .aside-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--blog-heading);
  margin-bottom: 12px;
}
.blog-detail-page .aside-item-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--blog-heading);
}
.blog-detail-page .aside-item-snippet {
  font-size: 13px;
  color: var(--blog-muted);
  line-height: 1.6;
  margin-top: 4px;
}
.blog-detail-page .aside-list li a {
  color: var(--blog-heading);
}
.blog-detail-page .aside-list li a:hover {
  color: var(--blog-heading);
}
@media (max-width: 1100px) {
  .blog-detail-page .blog-detail-shell {
    grid-template-columns: 1fr;
  }
  .blog-detail-page .blog-aside {
    position: relative;
    top: auto;
  }
}
@media (max-width: 768px) {
  .blog-detail-page.hero-layout {
    padding: 26px 14px 70px;
  }
  .blog-detail-page .blog-hero-card {
    padding: 0;
  }
  .blog-detail-page .blog-hero-text h1 {
    font-size: 34px;
  }
  .blog-detail-page .blog-lead {
    font-size: 15px;
  }
  .blog-detail-page .blog-content.rich-content {
    padding: 0;
  }
  .blog-detail-page .blog-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.blog-index-page {
  background: #f9fafb;
}
.blog-index-page .blog-index-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.blog-index-page .blog-index-hero {
  background: transparent;
  border: none;
  border-radius: 28px;
  padding: 52px 32px 46px;
  text-align: center;
  box-shadow: none;
}
.blog-index-page .blog-index-head h1 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #111827;
}
.blog-index-page .blog-index-head p {
  margin: 0 auto 26px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
  max-width: 620px;
}
.blog-index-page .blog-index-search {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 10px 8px 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.blog-index-page .blog-index-search input {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 14px;
  color: #111827;
  outline: none;
}
.blog-index-page .blog-index-search input::placeholder {
  color: #9ca3af;
}
.blog-index-page .blog-index-search button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.blog-index-page .blog-index-search button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  background: #0f172a;
}
.blog-index-page .blog-search-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.blog-index-page .blog-search-empty {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.blog-index-page .blog-featured-card {
  display: block;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}
.blog-index-page .blog-featured-media {
  position: relative;
  height: 400px;
  max-height: 400px;
  overflow: hidden;
}
.blog-index-page .blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-index-page .blog-featured-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 30%,
    rgba(15, 23, 42, 0.68) 100%
  );
}
.blog-index-page .blog-featured-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  max-width: 720px;
}
.blog-index-page .blog-featured-date {
  font-size: 13px;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-index-page .blog-featured-card h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
}
.blog-index-page .blog-featured-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #e5e7eb;
}
.blog-index-page .blog-featured-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.blog-index-page .blog-featured-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
.blog-index-page .blog-featured-author-name {
  font-weight: 700;
  color: #fff;
}
.blog-index-page .blog-featured-author-role {
  font-size: 13px;
  color: #e5e7eb;
}
.blog-index-page .blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 384px));
  gap: 24px;
  justify-content: center;
}
.blog-index-page .blog-list-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 18px;
}
.blog-index-page .blog-list-thumb {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  height: 230px;
  background: #f3f4f6;
}
.blog-index-page .blog-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-index-page .blog-list-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.blog-index-page .blog-list-meta {
  font-size: 14px;
  color: #6b7280;
  letter-spacing: 0;
  text-transform: none;
}
.blog-index-page .blog-list h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}
.blog-index-page .blog-list h3 a {
  color: #111827;
  text-decoration: none;
}
.blog-index-page .blog-list h3 a:hover {
  text-decoration: underline;
}
.blog-index-page .blog-list-excerpt {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.65;
}
.blog-index-page .blog-list-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 4px;
}
.blog-index-page .blog-list-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-index-page .blog-list-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: none;
}
.blog-index-page .blog-list-author-name {
  font-weight: 700;
  color: #111827;
  font-size: 15px;
}
.blog-index-page .blog-list-author-role {
  font-size: 13px;
  color: #6b7280;
}
@media (max-width: 1100px) {
  .blog-index-page .blog-featured-media {
    height: 360px;
    max-height: 360px;
  }
}
@media (max-width: 768px) {
  .blog-index-page .blog-index-shell {
    padding: 54px 14px 70px;
  }
  .blog-index-page .blog-index-head h1 {
    font-size: 34px;
  }
  .blog-index-page .blog-index-head p {
    font-size: 15px;
  }
  .blog-index-page .blog-featured-media {
    height: 320px;
    max-height: 320px;
  }
  .blog-index-page .blog-featured-content {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }
  .blog-index-page .blog-featured-card h2 {
    font-size: 24px;
  }
  .blog-index-page .blog-list {
    grid-template-columns: 1fr;
  }
}

/* Admin payment settings selects */
.i_general_row_box_item select.i_input,
.i_general_row_box_item select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f7f8fb;
  border: 1px solid #dfe4ec;
  border-radius: 14px;
  padding: 12px 44px 12px 14px;
  font-weight: 600;
  color: #111827;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 20px rgba(17, 24, 39, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%234b5563' d='M8 10 0 2.5 1.4 1 8 7.1 14.6 1 16 2.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}
.i_general_row_box_item select.i_input:focus,
.i_general_row_box_item select:focus {
  border-color: #c5d0e0;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
  outline: none;
  background: #ffffff;
}
.i_general_row_box_item select.i_input:hover,
.i_general_row_box_item select:hover {
  border-color: #cbd5e1;
  background: #ffffff;
}
.i_general_row_box_item select.i_input:disabled,
.i_general_row_box_item select:disabled {
  background: #eef1f6;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
}

/* Agency directory */
.agencies_wrapper {
  padding: 32px 0 70px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 24px;
  background-color: #f8fafc;
  background-image:
    radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    radial-gradient(
      560px 240px at 15% 0%,
      rgba(251, 146, 60, 0.18),
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      520px 220px at 85% 5%,
      rgba(14, 165, 233, 0.12),
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #f4f6fb 100%);
  background-size:
    18px 18px,
    auto,
    auto,
    auto;
  background-position:
    0 0,
    center top,
    center top,
    center;
}
.agencies_hero {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.agencies_hero_content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 24px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.agencies_hero_content:after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -120px;
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.2) 0%,
    rgba(251, 146, 60, 0) 70%
  );
}
.agencies_hero_text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
}
.agencies_hero_kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #92400e;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.agencies_hero_kicker svg {
  width: 18px;
  height: 18px;
}
.agencies_hero_title {
  font-size: 34px;
  line-height: 1.15;
  margin: 0;
  color: #0f172a;
  font-weight: 800;
}
.agencies_hero_subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 520px;
  line-height: 1.6;
  margin: 0;
}
.agencies_hero_highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  max-width: 360px;
}
.agencies_hero_chip {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #eef0f5;
  min-width: 170px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}
.agencies_hero_chip_icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea580c;
}
.agencies_hero_chip_icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.agencies_hero_chip_label {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.agencies_hero_chip_value {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}
.agencies_filters {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
}
.agencies_filter_bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e6eaf5;
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.agencies_search {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.agencies_search_icon {
  display: flex;
  align-items: center;
  color: #64748b;
}
.agencies_search_icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.agencies_search_input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 14px;
  color: #1f2937;
}
.agencies_search_input::placeholder {
  color: #9aa4b2;
}
.agencies_sort {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
  margin-left: auto;
}
.agencies_filter_label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #64748b;
}
.agencies_sort_select {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  background: #f8fafc;
}
.agencies_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  align-items: start;
}
.agency_card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #e6eaf5;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.agency_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
  border-color: #d4dff3;
}
.agency_card.is-hidden {
  display: none;
}
.agency_card_cover {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 0;
}
.agency_card_cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 40%,
    rgba(15, 23, 42, 0.35) 100%
  );
  z-index: 0;
}
.agency_card_cover img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.agency_card:hover .agency_card_cover img {
  transform: scale(1.04);
}
.agency_card_fee_badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}
.agency_card_body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}
.agency_card_description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}
.agency_card_head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.agency_card_avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #f1f5f9;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
}
.agency_card_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.agency_card_title a {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  line-height: 1.3;
}
.agency_card_owner {
  font-size: 13px;
  color: #6b7280;
}
.agency_card_owner a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}
.agency_card_owner a:hover {
  text-decoration: underline;
}
.agency_card_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #475569;
}
.agency_card_meta_item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 600;
}
.agency_card_actions {
  margin-top: auto;
}
.agency_card_actions .i_nex_btn {
  width: 100%;
}
.agency_card_actions .box_not {
  width: 100%;
  text-align: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px dashed #e2e8f0;
  color: #64748b;
  font-size: 12px;
}
.agency_empty_state {
  grid-column: 1/-1;
  text-align: center;
  color: #6b7280;
  padding: 24px;
  border-radius: 18px;
  border: 1px dashed #d7deef;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.agency_empty_state.is-hidden {
  display: none;
}
.agency_empty_icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  margin: 0 auto;
}
.agency_empty_icon svg {
  width: 22px;
  height: 22px;
}
.agency_empty_title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}
.agency_empty_note {
  font-size: 14px;
  color: #64748b;
  max-width: 420px;
  text-align: center;
  margin: 0 auto;
}

/* Community module */
.communities_wrapper {
  padding: 32px 0 70px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 24px;
  background-color: #f8fafc;
  background-image:
    radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    radial-gradient(
      600px 240px at 15% 0%,
      rgba(59, 130, 246, 0.18),
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      520px 220px at 85% 5%,
      rgba(14, 165, 233, 0.14),
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #f4f6fb 100%);
  background-size:
    18px 18px,
    auto,
    auto,
    auto;
  background-position:
    0 0,
    center top,
    center top,
    center;
}
.communities_hero {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 24px;
  padding: 0 20px;
}
.communities_hero_content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 224px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.98) 52%, rgba(241, 246, 255, 0.98) 100%);
  border: 1px solid #dbe4f3;
  border-radius: 26px;
  padding: 18px 22px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: none;
}
.communities_hero_content:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.2) 46%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 78% 24%, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 40%),
    radial-gradient(circle at 92% 86%, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0) 30%);
  pointer-events: none;
  z-index: 0;
}
.communities_hero_content:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -140px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, rgba(37, 99, 235, 0) 68%);
  pointer-events: none;
  z-index: 0;
}
.communities_hero_text,
.communities_hero_actions {
  position: relative;
  z-index: 1;
}
.communities_hero_text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
  padding: 4px 0;
}
.communities_hero_kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(191, 204, 226, 0.92);
  box-shadow: none;
  font-weight: 700;
  color: #23325a;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.communities_hero_kicker svg {
  width: 14px;
  height: 14px;
  color: #2563eb;
  fill: currentColor;
  flex-shrink: 0;
}
.communities_hero_title {
  font-size: 30px;
  line-height: 1.12;
  margin: 0;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 640px;
}
.communities_hero_subtitle {
  font-size: 14px;
  color: #68768f;
  max-width: 500px;
  line-height: 1.55;
  margin: 0;
}
.communities_hero_actions {
  flex: 0 0 272px;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 249, 255, 0.95) 100%);
  border: 1px solid rgba(216, 226, 241, 0.96);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}
.communities_hero_note {
  margin: 0;
  font-size: 12px;
  color: #62718a;
  line-height: 1.5;
  max-width: none;
}
.communities_hero_actions .i_nex_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 14px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
  border: 1px solid rgba(42, 93, 255, 0.22);
  background: linear-gradient(135deg, #3f86ff 0%, #2f68f5 48%, #2449c8 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.communities_hero_actions .i_nex_btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  filter: brightness(1.02);
}
.communities_hero_actions .i_nex_btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.community_leaderboard_page .communities_hero_actions .i_nex_btn,
.community_leaderboard_page .communities_hero_actions .i_nex_btn:hover,
.community_leaderboard_page .communities_hero_actions .i_nex_btn:focus,
.community_leaderboard_page .communities_hero_actions .i_nex_btn:active{
  text-decoration:none;
}
.communities_hero_actions .i_nex_btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(191, 219, 254, 0.85), 0 10px 22px rgba(37, 99, 235, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.communities_filters {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 0 20px;
}
.communities_filter_bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  align-items: start;
  gap: 16px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 251, 255, 0.99) 100%);
  border: 1px solid #dbe4f3;
  border-radius: 26px;
  padding: 16px 18px 18px;
}
.communities_search {
  grid-column: 1 / -1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid #d9e2ef;
  background: #ffffff;
}
.communities_search_icon {
  display: flex;
  align-items: center;
  color: #6a7a94;
}
.communities_search_icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.communities_search_input {
  border: none;
  background: transparent;
  font-size: 14px;
  color: #172033;
  width: 100%;
  outline: none;
  font-weight: 400;
}
.communities_search_input::placeholder {
  color: #94a0b4;
}
.communities_filter_group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  align-self: start;
}
.communities_filter_group:first-of-type {
  grid-column: 1 / -1;
}
.communities_filter_group:nth-of-type(2) {
  grid-column: 1;
}
.communities_filter_label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: #6c7b94;
}
.communities_filter_chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.communities_category_select {
  display: none;
}
.community_filter_chip,
.community_filter_toggle {
  border: 1px solid #d5deeb;
  background: #ffffff;
  color: #425069;
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
  padding: 7px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.1;
}
.community_filter_chip:hover,
.community_filter_toggle:hover {
  border-color: #bcc8d9;
  background: #f4f7fb;
  color: #1c2740;
}
.community_filter_chip.is-active,
.community_filter_toggle.is-active {
  background: #182235;
  border-color: #182235;
  color: #fff;
  box-shadow: none;
  font-weight: 600;
}
.communities_filter_toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.communities_sort {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  grid-column: 2;
  align-self: end;
}
.communities_sort_select,
.communities_category_select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #d6dfec;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 40px 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #172033;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2364748b' d='M7 10 0 2.6 1.2 1 7 6.8 12.8 1 14 2.6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
}

.communities_highlights {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 26px;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.communities_highlights_title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.communities_highlights_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  gap: 16px;
  align-items: stretch;
  justify-content: start;
}
.community_highlight_card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #dce5f2;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.community_highlight_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
  border-color: #cad9ee;
}
.community_highlight_media {
  position: relative;
  height: 168px;
  overflow: visible;
  z-index: 0;
}
.community_highlight_media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.32) 100%);
  pointer-events: none;
  z-index: 1;
}
.community_highlight_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 0;
}
.community_highlight_card:hover .community_highlight_media img {
  transform: scale(1.04);
}
.community_highlight_label {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.community_highlight_avatar {
  position: absolute;
  bottom: -22px;
  left: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 3px solid #fff;
  background: #eef4fb;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
  z-index: 3;
}
.community_highlight_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.community_highlight_body {
  position: relative;
  z-index: 1;
  padding: 30px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.community_highlight_title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}
.community_highlight_category {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid #dde7f3;
  background: #f4f7fb;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 600;
}
.community_highlight_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
}
.community_highlight_meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f6f9fd;
  border: 1px solid #e1e9f4;
}
.community_highlight_meta span svg {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex: 0 0 auto;
}

.communities_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: 22px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  align-items: stretch;
  justify-content: start;
}
.community_card {
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  border: 1px solid #dbe4f2;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.community_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  border-color: #cad8ec;
}
.community_card_cover {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 0;
}
.community_card_cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 40%,
    rgba(15, 23, 42, 0.35) 100%
  );
  z-index: 0;
}
.community_card_cover img {
  width: 100%;
  height: 196px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.community_card:hover .community_card_cover img {
  transform: scale(1.04);
}
.community_card_price_badge {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: auto;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 228, 242, 0.9);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
}
.community_card_price_badge svg {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex: 0 0 auto;
}
.community_card_body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 18px 18px;
  min-height: 224px;
}
.community_card_head {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: -28px;
  position: relative;
  z-index: 1;
}
.community_card_avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #eef4fb;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.community_card_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.community_card_title a {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  line-height: 1.3;
}
.community_card_category {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #dde6f3;
  background: #f4f7fb;
  font-size: 10px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.community_card_description {
  font-size: 13px;
  color: #66758e;
  line-height: 1.65;
}
.community_card_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #475569;
}
.community_card_meta_item {
  background: #f7fafd;
  border: 1px solid #dfe7f2;
  border-radius: 12px;
  padding: 7px 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.community_card_meta_item svg {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex: 0 0 auto;
}
.community_card_actions {
  margin-top: auto;
}
.community_card_actions .i_nex_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(35, 84, 243, 0.22);
  background: linear-gradient(135deg, #2454f3 0%, #258ef0 100%);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.18);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: center;
}
.community_empty_state {
  grid-column: 1/-1;
  text-align: center;
  color: #6b7280;
  padding: 24px;
  border-radius: 18px;
  border: 1px dashed #d7deef;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.community_empty_state.is-hidden {
  display: none;
}
.community_empty_icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  margin: 0 auto;
}
.community_empty_icon svg {
  width: 22px;
  height: 22px;
}
.community_empty_title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}
.community_empty_note {
  font-size: 14px;
  color: #64748b;
  max-width: 420px;
  text-align: center;
  margin: 0 auto;
}
.community_loading_state {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 20px;
  display: none;
}
.communities_wrapper.is-filtering .community_loading_state {
  display: block;
}
.communities_wrapper.is-filtering .communities_grid {
  opacity: 0.5;
  pointer-events: none;
}
.community_loading_card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #e6eaf5;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}
.community_loading_spinner {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  border-top-color: #2563eb;
  animation: communitySpin 0.8s linear infinite;
}
.community_loading_title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}
.community_loading_note {
  font-size: 13px;
  color: #64748b;
}
@keyframes communitySpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.community_profile_wrapper .i_p_cards {
  flex-wrap: wrap;
  gap: 8px;
}
.community_profile_wrapper .i_p_items_box {
  flex-wrap: wrap;
  gap: 12px;
}
.community_profile_wrapper .i_profile_cover_blur {
  display: none;
}
.community_profile_wrapper .i_profile_i_container {
  padding-top: 12px;
}
.community_profile_wrapper .community_profile_header {
  overflow: hidden;
  border: 1px solid #e3e8f0;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}
.community_profile_wrapper .community_profile_cover_shell {
  min-height: 252px;
  height: 252px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  background: #1f2937;
}
.community_profile_wrapper .community_profile_cover_media {
  position: relative;
  max-height: none;
  height: 100%;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}
.community_profile_wrapper .community_profile_cover_media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.18) 100%);
}
.community_profile_wrapper .community_profile_cover_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.community_profile_wrapper .community_profile_avatar_container {
  left: 0;
  bottom: -44px;
  padding: 0 24px;
}
.community_profile_wrapper .i_profile_avatar_wrp {
  justify-content: flex-start;
  padding-left: 0;
}
.community_profile_wrapper .community_profile_avatar {
  width: 108px;
  height: 108px;
  margin: 0;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}
.community_profile_wrapper .community_profile_info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "title stats" "owner stats" "tags actions" "bio bio";
  align-items: center;
  column-gap: 20px;
  row-gap: 4px;
  padding: 16px 24px 22px 150px;
}
.community_profile_wrapper .community_profile_title {
  grid-area: title;
  justify-content: flex-start;
  width: auto;
  max-width: none;
  padding-right: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #101827;
}
.community_profile_wrapper .community_profile_owner {
  grid-area: owner;
  justify-content: flex-start;
  width: auto;
  max-width: none;
  padding-right: 0;
  font-size: 13px;
  color: #667085;
}
.community_profile_wrapper .community_profile_owner a {
  justify-content: flex-start;
  gap: 6px;
  color: #667085;
  font-size: 13px;
  font-weight: 500;
}
.community_profile_wrapper .community_role_icon {
  margin-left: 0;
}
.community_profile_wrapper .community_profile_tags,
.community_profile_wrapper .community_profile_stats,
.community_profile_wrapper .community_profile_actions {
  justify-content: flex-start;
}
.community_profile_wrapper .community_profile_tags {
  grid-area: tags;
  width: auto;
  max-width: none;
}
.community_profile_wrapper .community_profile_tags .i_creator_category {
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid #d8e3f0;
  background: #eff5fd;
  color: #26476d;
  font-size: 11px;
  font-weight: 600;
}
.community_profile_wrapper .community_profile_tags .i_creator_category svg,
.community_profile_wrapper .community_profile_tags .i_creator_category a,
.community_profile_wrapper .community_profile_tags .i_creator_category a svg {
  color: inherit;
  fill: currentColor;
}
.community_profile_wrapper .community_profile_stats {
  grid-area: stats;
  position: static;
  width: auto;
  max-width: none;
  gap: 8px;
  justify-content: flex-end;
  justify-self: end;
  align-self: center;
}
.community_profile_wrapper .community_profile_stats .i_creator_category {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid #e7ebf1;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  color: #344054;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.community_profile_wrapper .community_profile_actions {
  grid-area: actions;
  width: auto;
  padding-top: 0;
  gap: 8px;
  justify-self: end;
}
.community_profile_wrapper .community_profile_actions .community_join_btn,
.community_profile_wrapper .community_profile_actions .community_unsub_btn,
.community_profile_wrapper .community_profile_actions .community_enter_btn,
.community_profile_wrapper .community_profile_actions .i_creator_category {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: none;
}
.community_profile_wrapper .community_profile_actions .community_join_btn,
.community_profile_wrapper .community_profile_actions .community_enter_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding: 0 18px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #1d4ed8;
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.18);
}
.community_profile_wrapper .community_profile_actions .community_join_btn svg,
.community_profile_wrapper .community_profile_actions .community_enter_btn svg {
  width: 16px;
  height: 16px;
  margin-right: 0;
  fill: currentColor;
  flex: 0 0 auto;
}
.community_profile_wrapper .community_profile_actions .community_unsub_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  align-self: center;
  border: 1px solid #d7dee8;
  background: #f7f9fc;
  color: #344054;
  white-space: nowrap;
}
.community_profile_wrapper .community_profile_actions .community_unsub_btn svg {
  width: 14px;
  height: 14px;
  margin-right: 0;
  fill: currentColor;
  flex: 0 0 auto;
}
.community_profile_wrapper .community_profile_actions .community_join_btn:hover,
.community_profile_wrapper .community_profile_actions .community_unsub_btn:hover,
.community_profile_wrapper .community_profile_actions .community_enter_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}
.community_profile_wrapper .community_profile_actions .community_unsub_btn:hover {
  background: #eef2f7;
  color: #1f2937;
}
.community_profile_wrapper .community_profile_actions .i_creator_category {
  border: 1px solid #e5eaf1;
  background: #f8fafc;
  color: #475467;
}
.community_profile_wrapper .community_profile_bio_wrap {
  grid-area: bio;
  width: 100%;
  padding-top: 4px;
}
.community_profile_wrapper .community_profile_bio {
  max-width: 760px;
  padding: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #667085;
}
@media (max-width: 1100px) {
  .community_profile_wrapper .community_profile_info {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "title" "owner" "tags" "stats" "actions" "bio";
    justify-items: start;
    padding: 16px 24px 22px 150px;
  }
  .community_profile_wrapper .community_profile_title,
  .community_profile_wrapper .community_profile_owner,
  .community_profile_wrapper .community_profile_tags,
  .community_profile_wrapper .community_profile_stats,
  .community_profile_wrapper .community_profile_actions {
    max-width: 100%;
    padding-right: 0;
    justify-self: start;
    justify-content: flex-start;
  }
}
@media (max-width: 740px) {
  .community_profile_wrapper .i_profile_i_container {
    padding-top: 6px;
  }
  .community_profile_wrapper .community_profile_header {
    border-radius: 18px;
  }
  .community_profile_wrapper .community_profile_cover_shell {
    min-height: 160px;
    height: 160px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }
  .community_profile_wrapper .community_profile_cover_media {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }
  .community_profile_wrapper .community_profile_avatar_container {
    bottom: -38px;
    padding: 0 16px;
  }
  .community_profile_wrapper .i_profile_avatar_wrp {
    justify-content: center;
  }
  .community_profile_wrapper .community_profile_avatar {
    width: 84px;
    height: 84px;
    margin: 0 auto;
  }
  .community_profile_wrapper .community_profile_info {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "title" "owner" "tags" "stats" "actions" "bio";
    justify-items: center;
    row-gap: 6px;
    padding: 46px 16px 18px;
    gap: 6px;
  }
  .community_profile_wrapper .community_profile_title,
  .community_profile_wrapper .community_profile_owner,
  .community_profile_wrapper .community_profile_tags,
  .community_profile_wrapper .community_profile_stats,
  .community_profile_wrapper .community_profile_actions {
    justify-content: center;
    max-width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .community_profile_wrapper .community_profile_title {
    font-size: 18px;
  }
  .community_profile_wrapper .community_profile_owner,
  .community_profile_wrapper .community_profile_owner a {
    font-size: 12px;
  }
  .community_profile_wrapper .community_profile_tags .i_creator_category,
  .community_profile_wrapper .community_profile_stats .i_creator_category,
  .community_profile_wrapper .community_profile_actions .community_join_btn,
  .community_profile_wrapper .community_profile_actions .community_unsub_btn,
  .community_profile_wrapper .community_profile_actions .community_enter_btn,
  .community_profile_wrapper .community_profile_actions .i_creator_category {
    min-height: 32px;
    border-radius: 999px;
    font-size: 11px;
  }
  .community_profile_wrapper .community_profile_stats {
    position: static;
    width: 100%;
    gap: 8px;
  }
  .community_profile_wrapper .community_profile_bio {
    font-size: 13px;
    text-align: center;
  }
}

.community_detail_header {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 0 20px;
}
.community_detail_cover {
  flex: 1 1 320px;
  min-width: 280px;
}
.community_detail_cover img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #e6eaf5;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.community_detail_info {
  flex: 1 1 360px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.community_detail_title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}
.community_detail_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #475569;
}
.community_meta_item {
  background: #f4f6fb;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
}
.community_detail_owner {
  font-size: 14px;
  color: #5b6472;
}
.community_detail_owner a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}
.community_detail_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.community_badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef3ff;
  color: #2f6bff;
  font-weight: 700;
  font-size: 12px;
}
.community_badge_full {
  background: #fff1f2;
  color: #d64755;
}
.community_detail_body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.community_detail_description {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}
.community_content {
  border-radius: 18px;
  border: 1px dashed #d7deef;
  background: linear-gradient(135deg, #f7faff 0%, #ffffff 100%);
  padding: 24px;
}
.community_content_title {
  font-weight: 700;
  font-size: 18px;
  color: #1c274c;
  margin-bottom: 6px;
}
.community_content_note {
  font-size: 14px;
  color: #6b7280;
}
.community_paywall {
  border-radius: 18px;
  border: 1px solid #e6eaf5;
  background: #fff;
  padding: 24px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.community_paywall_icon svg {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
}
.community_paywall_title {
  font-weight: 700;
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 6px;
}
.community_paywall_note {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 14px;
}

.community_modal {
  padding: 24px 16px;
  justify-content: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
}

.community_modal .i_modal_in_in {
  width: min(680px, calc(100vw - 32px));
  margin: 24px auto;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}
.community_modal .i_modal_content {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: none;
  overflow: visible;
  background: linear-gradient(180deg, #fbfcff 0%, #f4f7fb 100%);
}
.community_modal .popClose {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  box-shadow: none;
}
.community_modal .popClose:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}
.community_modal .popClose svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}
.community_modal_header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 20px 20px 14px;
  padding-right: 72px;
  border-bottom: 1px solid #e7edf6;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
}
.community_modal_title {
  font-size: 20px;
  font-weight: 700;
  color: #18233d;
  line-height: 1.25;
}
.community_modal_note {
  font-size: 14px;
  color: #6f7f98;
  line-height: 1.6;
}
.community_modal .i_modal_content > .community_modal_notice,
.community_modal .community_plan_gate,
.community_modal .community_form {
  margin: 20px;
}
.community_modal_notice {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff4f5 0%, #fff8f8 100%);
  border: 1px solid #ffd8dd;
  color: #bb2c3a;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
}
.community_plan_gate {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #eef4fd 0%, #e7eef9 100%);
  border: 1px solid #d2ddec;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 10px 24px rgba(148, 163, 184, 0.12);
}
.community_plan_price {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dde6f2;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}
.community_plan_price svg {
  width: 14px;
  height: 14px;
}
.community_plan_gate .i_nex_btn {
  align-self: flex-end;
  min-width: 180px;
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(35, 84, 243, 0.22);
  background: linear-gradient(135deg, #2454f3 0%, #258ef0 100%);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.18);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.community_form_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.community_form .form_label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.community_form .inora_user_input {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  color: #0f172a;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.community_form .inora_user_input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  background: #fff;
  outline: none;
}
.community_form textarea.inora_user_input {
  min-height: 120px;
  resize: vertical;
}
.community_price_group {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 6px 10px;
}
.community_price_group .inora_user_input {
  border: none;
  background: transparent;
  padding: 8px 6px;
  min-width: 140px;
}
.community_price_group .inora_user_input:focus {
  box-shadow: none;
}
.community_currency {
  font-weight: 700;
  color: #111827;
}
.community_file_input {
  width: 100%;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px dashed #d7deef;
  color: #53627c;
  font-size: 13px;
  line-height: 1.4;
}
.community_file_input::file-selector-button {
  margin-right: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(35, 84, 243, 0.18);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff6f7 0%, #fff0ef 48%, #fff6ea 100%);
  color: #d24f5a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.community_file_input::file-selector-button:hover {
  transform: translateY(-1px);
  border-color: rgba(35, 84, 243, 0.26);
  box-shadow: 0 10px 20px rgba(255, 88, 124, 0.12);
}
.community_form_message {
  font-size: 13px;
  color: #b42333;
  min-height: 18px;
}
.community_form_message.is-success {
  color: #1d7a44;
}
.community_form_actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}
.community_form_actions .i_nex_btn {
  min-width: 200px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 106, 121, 0.32);
  background: linear-gradient(135deg, #ff587c 0%, #ff8667 52%, #ffbc45 100%);
  box-shadow: 0 16px 30px rgba(255, 88, 124, 0.18);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
.community_form_actions .i_nex_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(255, 88, 124, 0.22);
}
.community_access_options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.community_access_option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.2s ease;
}
.community_access_option input {
  accent-color: #3b82f6;
}
.community_access_option:hover {
  border-color: #cbd5f5;
  background: #fff;
}
.community_access_static {
  display: flex;
  align-items: center;
  gap: 8px;
}
.community_access_badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef3ff;
  color: #2f6bff;
  font-weight: 700;
  font-size: 12px;
}
.community_price_group_wrap.is-hidden {
  display: none;
}
.community_free_limit_note {
  margin-top: 8px;
  font-size: 12px;
  color: #64748b;
}
.community_free_limit_note.is-hidden {
  display: none;
}
.community_edit_modal {
  padding: 20px 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow-y: auto;
}

.community_edit_modal .community_edit_modal_shell {
  width: min(720px, calc(100vw - 32px));
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  -webkit-box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: visible;
}

.community_edit_modal .community_edit_modal_content {
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  max-height: none;
  overflow: visible;
  border-radius: 30px;
}

.community_edit_modal .community_edit_modal_close {
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dbe4ef;
}

.community_edit_modal .community_edit_modal_close:hover {
  background: #ffffff;
  border-color: #cfd9e7;
}

.community_edit_modal .community_edit_modal_close svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}

.community_edit_modal .community_edit_modal_header {
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 20px 20px 14px;
  padding-right: 76px;
  gap: 4px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  text-align: left;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.community_edit_modal .community_modal_title {
  font-size: 18px;
  font-weight: 700;
  color: #18233d;
}

.community_edit_modal .community_edit_modal_form {
  margin: 0 !important;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-height: auto;
}

.community_edit_modal .community_edit_modal_body {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  min-height: auto;
  overflow: visible;
  padding: 18px 20px 16px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}

.community_edit_modal .community_form_group {
  gap: 8px;
  margin-bottom: 14px;
}

.community_edit_modal .community_form .form_label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #53627c;
}

.community_edit_modal .community_form .inora_user_input {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 18px;
  border-color: #dde6f1;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  font-size: 13px;
  color: #1f2b45;
}

.community_edit_modal .community_form textarea.inora_user_input {
  min-height: 132px;
  padding-top: 12px;
  line-height: 1.6;
}

.community_edit_modal .community_form select.inora_user_input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%2364768b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M2.25 4.5 6 8.25 9.75 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 12px;
  cursor: pointer;
}

.community_edit_modal .community_form .inora_user_input:focus {
  border-color: #cad8ea;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 0 0 4px rgba(226, 232, 240, 0.55);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 0 0 4px rgba(226, 232, 240, 0.55);
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9fd 100%);
}

.community_edit_modal .community_form select.inora_user_input:hover {
  border-color: #d3deec;
  background-color: #f9fbff;
}

.community_edit_modal .community_price_group {
  gap: 8px;
  padding: 6px 11px;
  border-radius: 18px;
  border-color: #dde6f1;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.community_edit_modal .community_currency {
  font-size: 14px;
  color: #1f2937;
}

.community_edit_modal .community_price_group .inora_user_input {
  min-height: 38px;
  padding: 7px 6px;
}

.community_edit_modal .community_access_options {
  gap: 8px;
}

.community_edit_modal .community_access_option {
  padding: 9px 12px;
  border-radius: 16px;
  font-size: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  border-color: #dde6f1;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.community_edit_modal .community_access_option:hover {
  border-color: #cad8ea;
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9fd 100%);
}

.community_edit_modal .community_access_badge {
  padding: 7px 12px;
  font-size: 12px;
  background: #eef4ff;
  color: #316dff;
}

.community_edit_modal .community_free_limit_note {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.45;
  color: #66768d;
}

.community_edit_modal .community_edit_modal_message {
  min-height: 18px;
  margin-top: 2px;
}

.community_edit_modal .editCommunityAvatarCover {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid #dde6f1;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  color: #364760;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 13px;
  font-weight: 600;
}

.community_edit_modal .editCommunityAvatarCover:hover {
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9fd 100%);
  border-color: #cad8ea;
}

.community_edit_modal .community_edit_modal_footer {
  margin: 0;
  padding: 14px 20px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid #e8eef7;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.community_edit_modal .community_edit_modal_footer .i_nex_btn {
  min-width: 122px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 16px;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 13px;
  font-weight: 700;
}

@media only screen and (max-width: 700px) {
  .community_modal {
    padding: 12px 10px;
  }
  .community_modal .i_modal_in_in {
    width: min(100%, calc(100vw - 24px));
    margin: 12px auto 24px;
    border-radius: 22px;
  }
  .community_modal .i_modal_content {
    max-height: none;
  }
  .community_modal .popClose {
    right: 12px;
    top: 12px;
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }
  .community_modal_header {
    padding: 16px 16px 12px;
    padding-right: 60px;
  }
  .community_modal_title {
    font-size: 18px;
  }
  .community_modal .i_modal_content > .community_modal_notice,
  .community_modal .community_plan_gate,
  .community_modal .community_form {
    margin: 16px;
  }
  .community_plan_gate {
    padding: 16px;
    border-radius: 20px;
  }
  .community_plan_gate .i_nex_btn,
  .community_form_actions .i_nex_btn {
    width: 100%;
    min-width: 0;
  }
  .community_form_actions {
    justify-content: stretch;
  }
  .community_file_input {
    padding: 10px;
    border-radius: 14px;
  }
  .community_file_input::file-selector-button {
    margin-right: 10px;
    padding: 9px 12px;
    border-radius: 10px;
  }
  .community_edit_modal {
    padding: 10px;
  }
  .community_edit_modal .community_edit_modal_shell {
    width: min(100%, calc(100vw - 20px));
    border-radius: 24px;
  }
  .community_edit_modal .community_edit_modal_content {
    max-height: none;
    border-radius: 24px;
  }
  .community_edit_modal .community_edit_modal_close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    padding: 9px;
  }
  .community_edit_modal .community_edit_modal_header {
    padding: 16px 16px 11px;
    padding-right: 60px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
  .community_edit_modal .community_modal_title {
    font-size: 17px;
  }
  .community_edit_modal .community_edit_modal_body {
    padding: 16px 16px 14px;
  }
  .community_edit_modal .community_edit_modal_footer {
    padding: 12px 16px 16px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .community_edit_modal .community_edit_modal_footer .i_nex_btn {
    width: 100%;
    min-width: 0;
  }
}
.community_manage_card {
  margin-bottom: 16px;
}
.community_enter_btn {
  padding: 10px 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid #1d4ed8;
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.18);
  text-decoration: none;
}
.community_enter_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(29, 78, 216, 0.22);
}
.community_upgrade_cta {
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.community_upgrade_cta_text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.community_upgrade_cta_title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}
.community_upgrade_cta_note {
  font-size: 12px;
  color: #64748b;
}
.community_upgrade_cta .i_nex_btn {
  min-width: auto;
  padding: 8px 16px;
  border-radius: 999px;
}
.community_content_layout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.community_manage_column {
  flex: 0 0 450px;
  max-width: 450px;
  width: 100%;
}
.community_feed_column {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
.community_manage_card .communityEditModalBtn,
.community_manage_card .communityDeleteBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  box-shadow: none;
  transition: all 0.2s ease;
}
.community_manage_card .communityEditModalBtn:hover,
.community_manage_card .communityDeleteBtn:hover {
  background: #eef2f7;
  border-color: #cbd5f5;
  color: #0f172a;
}
.community_manage_card .communityEditModalBtn svg {
  width: 18px;
  height: 18px;
}
.community_profile_wrapper .pageMiddleRow .pageMiddlePosts {
  max-width: none;
  min-width: 0;
  width: 100%;
}
.community_profile_wrapper .pageMiddleRow #moreType {
  max-width: none;
  min-width: 0;
  width: 100%;
}
.community_post_badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 5px;
  background: #d3e2f8;
  color: #2f6bff;
  font-weight: 700;
  font-size: 11px;
  margin-right: 6px;
  text-decoration: none;
}
.community_moderation_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.community_member_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #edf1f7;
}
.community_member_row:last-child {
  border-bottom: none;
}
.community_member_meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #0f172a;
}
.community_member_meta img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
}
.community_member_actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.community_member_actions .inora_user_input {
  min-width: 160px;
  padding: 10px 36px 10px 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.community_member_actions .inora_user_input:focus {
  border-color: #1e88e5;
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
  background: #fff;
  outline: none;
}
.community_member_status_label {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f5f9;
}
.community_member_timeout {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.community_member_timeout_label {
  font-size: 11px;
  color: #6b7280;
}
.community_moderator_form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.community_moderator_form_row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.community_moderator_options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.community_moderator_option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.community_moderator_option input {
  accent-color: #3b82f6;
}
.community_moderator_option:hover {
  border-color: #cbd5f5;
  background: #f1f5f9;
}
.community_moderator_options_note {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #6b7280;
}
.community_moderator_submit_btn {
  padding: 10px 30px;
  border-radius: 30px;
  background: #1e88e5;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  border: none;
  box-shadow: 0 8px 16px rgba(17, 112, 196, 0.2);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}
.community_moderator_submit_btn:hover {
  background: #1170c4;
  box-shadow: 0 10px 20px rgba(17, 112, 196, 0.25);
}
.community_moderator_submit_btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}
.community_moderation_member_modal .community_moderation_member_identity {
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 2px 0 4px;
}
.community_moderation_member_modal .community_moderator_avatar {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  border: 1px solid #dbe4f1;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}
.community_moderation_member_modal .community_moderator_avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.community_moderation_member_modal .community_moderator_name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: #18233d;
}
.community_moderation_member_form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.community_moderation_member_modal .community_member_actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 16px;
}
.community_moderation_member_modal .community_member_actions .inora_user_input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 12px 40px 12px 16px;
  border-radius: 16px;
  border: 1px solid #dbe4f1;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}
.community_moderation_member_modal .community_member_actions .inora_user_input:focus {
  border-color: #cad8ea;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 0 0 4px rgba(226, 232, 240, 0.55);
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9fd 100%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}
.community_moderation_member_modal .community_member_actions .inora_user_input.select-open {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 12l4-4 4 4' stroke='%234b5d7b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}
.community_moderation_member_modal .community_member_timeout {
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid #e2eaf3;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
}
.community_moderation_member_modal .community_member_timeout_label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  color: #5f6f89;
}
.community_moderation_member_modal .community_moderator_form_actions {
  margin-top: 4px;
  justify-content: flex-end;
}
.community_moderation_member_modal .communityMemberSubmit {
  min-width: 176px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}
@media (max-width: 600px) {
  .community_moderation_member_modal .community_moderation_member_identity {
    gap: 12px;
    margin-bottom: 16px;
  }
  .community_moderation_member_modal .community_moderator_avatar {
    width: 68px;
    height: 68px;
    border-radius: 20px;
  }
  .community_moderation_member_modal .community_moderator_name {
    font-size: 16px;
  }
  .community_moderation_member_modal .community_member_actions {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .community_moderation_member_modal .community_moderation_member_form {
    gap: 16px;
  }
  .community_moderation_member_modal .community_moderator_form_actions {
    justify-content: stretch;
  }
  .community_moderation_member_modal .communityMemberSubmit {
    width: 100%;
  }
}
.community_moderator_edit_header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.community_moderator_form_actions_split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.community_moderator_edit_modal .community_moderator_remove_btn {
  border: none;
}
.community_moderator_form_actions {
  display: flex;
  justify-content: flex-end;
}
.community_moderator_title,
.community_members_title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.community_moderators_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.community_moderators_grid,
.community_moderation_grid,
.community_members_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 18px;
}
.community_moderator_card,
.community_moderation_member_card,
.community_member_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.community_moderator_card:hover,
.community_moderation_member_card:hover,
.community_member_card:hover {
  border-color: #e2e8f0;
  background: #f8fafc;
  transform: translateY(-1px);
}
.community_moderator_avatar,
.community_moderation_member_avatar,
.community_member_avatar {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.community_moderator_avatar img,
.community_moderation_member_avatar img,
.community_member_avatar img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
}
.community_moderator_name,
.community_moderation_member_name,
.community_member_name {
  font-weight: 600;
  font-size: 13px;
  color: #0f172a;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.community_moderator_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #edf1f7;
}
.community_moderator_row:last-child {
  border-bottom: none;
}
.community_moderator_actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.community_moderator_permissions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.community_moderator_badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
}
.community_moderation_actions_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.community_moderation_action_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
}
.community_moderation_action_row.is-reverted {
  opacity: 0.7;
}
.community_moderation_action_meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.community_moderation_action_text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.community_moderation_action_meta img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
}
.community_moderation_action_title {
  font-weight: 600;
  font-size: 13px;
  color: #0f172a;
}
.community_moderation_action_subtitle {
  font-size: 12px;
  color: #6b7280;
}
.community_role_icon {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  vertical-align: middle;
}
.community_role_icon svg {
  width: 12px;
  height: 12px;
  display: block;
}
.community_moderation_action_controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.community_moderation_revert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
  cursor: pointer;
}
.community_moderation_revert:hover {
  background: #f1f5f9;
  border-color: #cbd5f5;
}
.community_moderation_reverted_label {
  font-size: 12px;
  font-weight: 700;
  color: #10b981;
}
.community_moderation_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.communityModerationModalBtn,
.communityModeratorModalBtn,
.communityMembersModalBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
  cursor: pointer;
}
.communityModerationModalBtn:hover,
.communityModeratorModalBtn:hover,
.communityMembersModalBtn:hover {
  background: #eef2f7;
  border-color: #cbd5f5;
  color: #0f172a;
}
.community_moderation_modal {
  padding: 24px 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-y: auto;
}
.community_moderation_modal_inner {
  max-width: 720px;
  width: 100%;
}
.community_moderation_modal_shell {
  width: min(720px, calc(100vw - 32px));
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  -webkit-box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: visible;
}
.community_moderation_modal_content {
  padding: 0;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-radius: 30px;
  overflow: visible;
}
.community_moderation_modal_header {
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 20px 20px 14px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  text-align: left;
}
.community_moderation_modal_title_wrap {
  min-width: 0;
  padding-right: 64px;
}
.community_moderation_modal_title {
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.community_moderation_modal_close {
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.community_moderation_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}
.community_moderation_modal_close svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}
.community_moderation_body {
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.community_moderation_search_wrapper {
  margin-bottom: 16px;
}
.community_moderation_search_input,
.community_moderator_search_input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid #dde6f1;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  font-size: 14px;
  color: #1f2b45;
  outline: none;
}
.community_moderation_search_input::placeholder,
.community_moderator_search_input::placeholder {
  color: #9aa4b2;
}
.community_moderation_search_input:focus,
.community_moderator_search_input:focus {
  border-color: #cad8ea;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 0 0 4px rgba(226, 232, 240, 0.55);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 0 0 4px rgba(226, 232, 240, 0.55);
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9fd 100%);
}
.community_moderator_options_modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.45);
  z-index: 1050;
  padding: 16px;
}
.community_moderator_options_modal.is-visible {
  display: flex;
}
.community_moderator_options_panel {
  background: #fff;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}
.community_moderator_options_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.community_moderator_options_title {
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
}
.community_moderator_options_close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.2s ease;
}
.community_moderator_options_close:hover {
  background: transparent;
}
.community_moderator_options_close svg {
  width: 16px;
  height: 16px;
}
.community_moderation_user_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 14px;
  padding: 4px 0 0;
}
.community_moderation_search_results {
  display: none;
}
.community_moderation_user_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 16px 12px 14px;
  border-radius: 22px;
  border: 1px solid #dde6f1;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.community_moderation_user_avatar {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
  border: 1px solid #dde6f1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.community_moderation_user_avatar img {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
}
.community_moderation_user_name {
  font-weight: 600;
  color: #1f2b45;
  font-size: 13px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.community_moderation_add_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d7e2f0;
  background: #ffffff;
  color: #23324a;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
  cursor: pointer;
}
.community_moderation_add_btn:hover {
  background: #f8fbff;
  border-color: #cad8ea;
  color: #1d2b42;
}
.community_moderation_added_label {
  font-size: 12px;
  font-weight: 700;
  color: #10b981;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
}
.community_moderation_user_card.is-added .community_moderation_user_avatar {
  opacity: 0.8;
}
.community_moderation_user_card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: #cad8ea;
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9fd 100%);
}
.community_moderator_user_card {
  cursor: pointer;
}
.community_moderator_user_card.is-added {
  cursor: default;
}
.community_moderator_user_card.is-selected .community_moderation_user_avatar {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
}
.community_moderator_user_card.is-selected .community_moderation_user_name {
  color: #1d4ed8;
}
.community_moderation_empty {
  width: 100%;
  text-align: center;
  color: #6b7280;
  font-size: 13px;
  padding: 18px 16px;
  border-radius: 20px;
  border: 1px dashed #d8e1ec;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
}
.community_moderator_modal .community_moderator_options_modal {
  background: rgba(15, 23, 42, 0.5);
  padding: 20px 16px;
}
.community_moderator_modal .community_moderator_options_panel {
  width: min(560px, calc(100vw - 32px));
  padding: 20px;
  border-radius: 24px;
  border: 1px solid #dde6f1;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
}
.community_moderator_modal .community_moderator_options_header {
  margin-bottom: 16px;
}
.community_moderator_modal .community_moderator_options_title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #18233d;
}
.community_moderator_modal .community_moderator_options_close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid #dce5f0;
  background: rgba(255, 255, 255, 0.78);
  color: #5b6781;
}
.community_moderator_modal .community_moderator_options_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}
.community_moderator_modal .community_moderator_options_close svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.community_moderator_modal .community_moderator_form {
  gap: 14px;
}
.community_moderator_modal .community_moderator_options {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid #e2eaf3;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
  gap: 10px;
}
.community_moderator_modal .community_moderator_option {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  border-color: #e2e8f0;
  background: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 600;
}
.community_moderator_modal .community_moderator_option:hover {
  border-color: #cad8ea;
  background: #fbfdff;
}
.community_moderator_modal .community_moderator_option input {
  flex: 0 0 auto;
}
.community_moderator_modal .community_moderator_option span {
  line-height: 1.35;
}
.community_moderator_modal .community_moderator_options_note {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #e4ebf4;
  background: rgba(248, 251, 255, 0.9);
  font-size: 13px;
  line-height: 1.55;
  color: #5b6781;
}
.community_moderator_modal .community_moderator_form_actions {
  justify-content: flex-end;
}
.community_moderator_modal .community_moderator_submit_btn {
  min-width: 132px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

.community_pay_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  text-align: center;
}
.community_pay_modal .i_modal_content {
  background: linear-gradient(180deg, #fbfcff 0%, #f4f7fb 100%);
}
.community_pay_cover img {
  width: 100%;
  max-width: 260px;
  border-radius: 14px;
  border: 1px solid #e6eaf5;
  object-fit: cover;
}
.community_pay_icon svg {
  width: 40px;
  height: 40px;
}
.community_pay_title {
  font-weight: 700;
  font-size: 18px;
  color: #0f172a;
}
.community_pay_category {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.community_pay_price {
  font-size: 14px;
  color: #4b5563;
  font-weight: 600;
}
.community_pay_price svg {
  width: 14px;
  height: 14px;
}
.community_action_box {
  margin-top: 18px;
}
.community_action_note {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}
.community_pay_modal {
  padding: 24px 16px;
  justify-content: flex-start;
}
.community_pay_modal .i_modal_in_in.i_payment_pop_box {
  width: min(760px, calc(100vw - 32px));
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
  margin: 24px auto;
}
.community_pay_modal .i_modal_content {
  padding: 0;
  background: transparent;
}
.community_pay_modal .payClose {
  right: 18px;
  top: 20px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid #dce5f0;
  box-shadow: none;
}
.community_pay_modal .payClose:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}
.community_pay_modal .payClose svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}
.community_pay_modal .community_pay_header {
  position: relative;
  padding: 22px 24px 18px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f2f6fc 100%);
  border-bottom: 1px solid #e7edf6;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  gap: 8px;
  margin-bottom: 0;
}
.community_pay_modal .community_pay_icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  border: 1px solid #dce6f2;
  background: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
}
.community_pay_modal .community_pay_icon svg {
  width: 34px;
  height: 34px;
}
.community_pay_modal .community_pay_cover img {
  width: min(100%, 264px);
  aspect-ratio: 1.85 / 1;
  max-width: 264px;
  border-radius: 20px;
  border: 1px solid #d7e2ef;
  box-shadow: 0 18px 34px rgba(148, 163, 184, 0.18);
  object-fit: cover;
}
.community_pay_modal .community_pay_title {
  max-width: 340px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  color: #1a2640;
}
.community_pay_modal .community_pay_category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #dde6f2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #73839c;
}
.community_pay_modal .community_pay_price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff6f7 0%, #fff1ef 48%, #fff7ea 100%);
  border: 1px solid rgba(255, 106, 121, 0.16);
  font-size: 14px;
  font-weight: 700;
  color: #5a677f;
}
.community_pay_modal .pay_method_selector {
  padding: 18px 20px;
  margin-bottom: 0;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid #e7edf6;
}
.community_pay_modal .pay_method_selector .pay_provider_toggle {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 15px;
  background: #edf3ff;
  border-color: #d4e1f5;
  color: #31548a;
}
.community_pay_modal .pay_method_selector .pay_provider_toggle:hover {
  background: #e3ecfb;
}
.community_pay_modal .pay_method_selector .pay_provider_toggle.active {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: #2d6fe8;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}
.community_pay_modal .pay_gateway_section,
.community_pay_modal #paymentFrm {
  width: 100%;
  background: transparent;
  overflow: hidden;
}
.community_pay_modal #paymentFrm .i_credit_card_form,
.community_pay_modal .pay_gateway_section.i_credit_card_form {
  margin: 0;
  padding: 18px 20px 20px;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, #f5f8fe 0%, #edf3fc 100%);
  border: 0;
  box-shadow: none;
}
.community_pay_modal .pay_form_group,
.community_pay_modal .pay_form_group_plus {
  padding: 8px 0;
}
.community_pay_modal .pay_form_group > label,
.community_pay_modal .pay_form_group_plus .i_form_group_plus > label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #566482;
  padding-bottom: 8px;
}
.community_pay_modal .pay_form_group .form-control input,
.community_pay_modal .pay_form_group .form-control #card_number,
.community_pay_modal .pay_form_group_plus .i_form_group_plus .form-control input,
.community_pay_modal .pay_form_group_plus .i_form_group_plus .form-control #card_expiry,
.community_pay_modal .pay_form_group_plus .i_form_group_plus .form-control #card_cvc {
  min-height: 56px;
  padding: 16px 16px 16px 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e2e8f2;
  box-shadow: none;
}
.community_pay_modal .form_control_icon {
  padding: 18px 16px;
}
.community_pay_modal .form_control_icon svg {
  width: 18px;
  height: 18px;
  fill: #7c8aa8;
}
.community_pay_modal #paymentResponse {
  margin: 0 20px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dde6f3;
}
.community_pay_modal .pay_subscription,
.community_pay_modal .pay_subscription_ccbill,
.community_pay_modal .pay_subscription_flutterwave,
.community_pay_modal .pay_subscription_iyzico,
.community_pay_modal .pay_subscription_epoch,
.community_pay_modal .pay_subscription_yookassa,
.community_pay_modal .pay_subscription_point,
.community_pay_modal .pay_subscription_point_renew a {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
}
.community_pay_modal .pay_subscription_point {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.16);
}
.community_pay_modal .pay_subscription_point:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
}
.community_pay_modal .pay_subscription_point svg {
  fill: #ffffff;
}
.community_pay_modal .pay_subscription_point_renew {
  border-radius: 16px;
  background: linear-gradient(135deg, #315a94 0%, #24436f 100%);
  box-shadow: none;
}
.community_pay_modal .pay_subscription_point_renew:hover {
  background: linear-gradient(135deg, #284c80 0%, #1f3c63 100%);
  box-shadow: none;
}
.community_pay_modal .point_subs_not {
  font-size: 15px;
  line-height: 1.6;
  color: #63728d;
}
.community_pay_modal .i_pay_note {
  padding: 16px 18px;
  border-radius: 18px;
  background: #5e6c89;
}

.pay_with_point_modal {
  padding: 20px 12px;
}
.pay_with_point_modal .i_modal_in_in.i_payment_pop_box.pay_with_point_modal_shell {
  width: min(460px, calc(100vw - 24px));
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.2);
  overflow: hidden;
}
.pay_with_point_modal .pay_with_point_modal_content {
  position: relative;
  padding: 26px 22px 22px;
  background: transparent;
}
.pay_with_point_modal .pay_with_point_modal_close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #d9e3f2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pay_with_point_modal .pay_with_point_modal_close svg {
  width: 18px;
  height: 18px;
  fill: #52607c;
}
.pay_with_point_modal .pay_with_point_modal_avatar {
  width: 94px;
  height: 94px;
  margin: 0 auto 16px;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 1px #e2e8f4;
}
.pay_with_point_modal .pay_with_point_modal_note {
  margin: 0 auto 18px;
  max-width: 340px;
  text-align: center;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  color: #1e293b;
}
.pay_with_point_modal .pay_with_point_modal_body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pay_with_point_modal .pay_with_point_modal_notice {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fd 100%);
  border: 1px solid #dde6f3;
  font-size: 14px;
  line-height: 1.6;
  color: #5f6f8b;
  text-align: center;
}
.pay_with_point_modal .pay_with_point_modal_action {
  margin: 0;
}
.pay_with_point_modal .pay_subscription_point,
.pay_with_point_modal .pay_with_point_modal_renew a {
  min-height: 52px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 800;
}
.pay_with_point_modal .pay_subscription_point {
  background: linear-gradient(135deg, #ff6487 0%, #f7b945 100%);
  box-shadow: 0 16px 34px rgba(255, 111, 132, 0.2);
}
.pay_with_point_modal .pay_subscription_point:hover {
  background: linear-gradient(135deg, #ff587c 0%, #f1ab2d 100%);
}
.pay_with_point_modal .pay_subscription_point svg {
  fill: #ffffff;
}
.pay_with_point_modal .pay_with_point_modal_renew {
  border-radius: 18px;
  background: linear-gradient(135deg, #315a94 0%, #24436f 100%);
}
.pay_with_point_modal .pay_with_point_modal_renew:hover {
  background: linear-gradient(135deg, #284c80 0%, #1f3c63 100%);
}
.pay_with_point_modal .pay_with_point_modal_renew a {
  justify-content: center;
  text-align: center;
}
.pay_with_point_modal .pay_with_point_modal_error {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .pay_with_point_modal {
    padding: 14px 10px;
  }
  .pay_with_point_modal .i_modal_in_in.i_payment_pop_box.pay_with_point_modal_shell {
    width: min(100%, calc(100vw - 20px));
    border-radius: 24px;
  }
  .pay_with_point_modal .pay_with_point_modal_content {
    padding: 22px 16px 18px;
  }
  .pay_with_point_modal .pay_with_point_modal_close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
  .pay_with_point_modal .pay_with_point_modal_avatar {
    width: 84px;
    height: 84px;
  }
  .pay_with_point_modal .pay_with_point_modal_note {
    max-width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .community_pay_modal {
    padding: 18px 12px;
  }
  .community_pay_modal .i_modal_in_in.i_payment_pop_box {
    width: calc(100vw - 24px);
    border-radius: 24px;
    margin: 12px auto;
  }
  .community_pay_modal .community_pay_header {
    padding: 18px 16px 16px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
  .community_pay_modal .community_pay_cover img {
    width: min(100%, 220px);
    max-width: 220px;
    border-radius: 18px;
  }
  .community_pay_modal .community_pay_title {
    max-width: 100%;
    font-size: 18px;
  }
  .community_pay_modal .community_pay_price {
    padding: 0 10px;
    font-size: 13px;
  }
  .community_pay_modal .payClose {
    right: 14px;
    top: 16px;
  }
  .community_pay_modal .pay_method_selector {
    padding: 14px 16px 16px;
  }
  .community_pay_modal .pay_method_selector .pay_provider_toggle {
    flex: 1 1 calc(50% - 5px);
    min-width: calc(50% - 5px);
  }
  .community_pay_modal #paymentFrm .i_credit_card_form,
  .community_pay_modal .pay_gateway_section.i_credit_card_form {
    padding: 16px;
    border-radius: 0 0 24px 24px;
  }
  .community_pay_modal .pay_form_group,
  .community_pay_modal .pay_form_group_plus {
    padding: 8px 0;
  }
  .community_pay_modal .pay_form_group_plus {
    flex-direction: column;
  }
  .community_pay_modal .i_form_group_plus {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 900px) {
  .community_content_layout {
    flex-direction: column;
  }
  .community_manage_column {
    max-width: none;
  }
}
@media (max-width: 1100px) {
  .communities_highlights_grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 300px));
  }
  .agencies_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .community_moderation_modal {
    padding: 12px 10px;
  }
  .community_moderator_modal .community_moderator_options_modal {
    padding: 12px 10px;
  }
  .community_moderator_modal .community_moderator_options_panel {
    width: min(100%, calc(100vw - 20px));
    padding: 16px;
    border-radius: 20px;
  }
  .community_moderator_modal .community_moderator_options_title {
    font-size: 17px;
  }
  .community_moderator_modal .community_moderator_options {
    grid-template-columns: minmax(0, 1fr);
    padding: 12px;
  }
  .community_moderator_modal .community_moderator_form_actions {
    justify-content: stretch;
  }
  .community_moderator_modal .community_moderator_submit_btn {
    width: 100%;
  }
  .community_moderation_modal_shell {
    width: min(100%, calc(100vw - 20px));
    border-radius: 24px;
  }
  .community_moderation_modal_content {
    border-radius: 24px;
  }
  .community_moderation_modal_header {
    padding: 16px 16px 11px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
  .community_moderation_modal_title_wrap {
    padding-right: 56px;
  }
  .community_moderation_modal_title {
    font-size: 17px;
  }
  .community_moderation_modal_close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    padding: 9px;
  }
  .community_moderation_body {
    padding: 16px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .community_moderation_user_card {
    padding: 14px 10px 12px;
  }
}

@media (max-width: 768px) {
  .agencies_hero_content {
    flex-direction: column;
    align-items: flex-start;
  }
  .agencies_hero_title {
    font-size: 28px;
  }
  .agencies_hero_highlights {
    width: 100%;
    justify-content: flex-start;
  }
  .agencies_hero,
  .agencies_filters,
  .agencies_grid {
    padding: 0 16px;
  }
  .agencies_filters {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .agencies_filter_bar {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .agencies_search {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .agencies_sort {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .agencies_sort_select {
    width: 100%;
  }
  .agencies_grid {
    grid-template-columns: 1fr;
  }
  .agency_card_cover img {
    height: 200px;
  }
  .communities_hero {
    margin: 0 auto 20px;
    padding: 0 16px;
  }
  .communities_hero_content {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    min-height: auto;
    padding: 16px 14px;
    border-radius: 22px;
  }
  .communities_hero_content:after {
    width: 220px;
    height: 220px;
    right: -110px;
    top: -110px;
  }
  .communities_hero_text {
    max-width: none;
    gap: 10px;
    padding: 0;
  }
  .communities_hero_kicker {
    padding: 7px 11px;
    font-size: 9px;
    letter-spacing: 0.13em;
  }
  .communities_hero_title {
    font-size: 24px;
    max-width: none;
  }
  .communities_hero_subtitle {
    font-size: 13px;
    max-width: none;
  }
  .communities_hero_actions {
    width: 100%;
    align-self: stretch;
    padding: 10px;
    border-radius: 16px;
  }
  .communities_hero_actions .i_nex_btn {
    width: 100%;
    min-height: 40px;
    font-size: 12px;
  }
  .communities_filters {
    margin: 0 0 24px;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .communities_filter_bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 14px;
  }
  .communities_search {
    grid-column: auto;
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 10px 13px;
    border-radius: 16px;
  }
  .communities_filter_group,
  .communities_sort {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    gap: 8px;
  }
  .communities_filter_group:first-of-type {
    grid-column: auto;
  }
  .communities_filter_label {
    font-size: 10px;
    letter-spacing: 0.18em;
  }
  .communities_sort_select {
    width: 100%;
  }
  .communities_filter_chips {
    display: none;
  }
  .communities_category_select {
    display: block;
    width: 100%;
  }
  .communities_filter_toggles {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
  .communities_highlights_grid {
    grid-template-columns: 1fr;
  }
  .communities_grid {
    grid-template-columns: 1fr;
  }
  .community_card_cover img {
    height: 200px;
  }
  .community_detail_cover img {
    height: 200px;
  }
.community_detail_title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .communities_hero_content {
    padding: 14px 12px;
  }
  .communities_hero_title {
    font-size: 21px;
  }
  .communities_hero_kicker {
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .communities_hero_actions {
    padding: 8px;
  }
}

.age_confirm_overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 9999;
  padding: 24px;
  box-sizing: border-box;
}
.age_confirm_overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.age_confirm_card {
  width: 100%;
  max-width: 680px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  border: 1px solid #e6eaf5;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  padding: 32px 36px;
  box-sizing: border-box;
  text-align: left;
}
.age_confirm_title {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.age_confirm_desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 18px;
}
.age_confirm_list {
  margin: 0 0 24px;
  padding-left: 20px;
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
}
.age_confirm_list li {
  margin-bottom: 8px;
}
.age_confirm_actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.age_confirm_btn {
  flex: 1 1 0;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.age_confirm_yes {
  background: linear-gradient(90deg, #f65169, #fab429);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(246, 81, 105, 0.25);
}
.age_confirm_yes:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(246, 81, 105, 0.28);
}
.age_confirm_no {
  background: #ffffff;
  color: #f65169;
  border: 1px solid rgba(246, 81, 105, 0.35);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}
.age_confirm_no:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(15, 23, 42, 0.12);
}
.age_confirm_terms {
  font-size: 13px;
  color: #6b7280;
}
.age_confirm_terms_link {
  color: #f65169;
  font-weight: 600;
  text-decoration: none;
}
.age_confirm_terms_link:hover {
  text-decoration: underline;
}
body.age-confirm-open {
  overflow: hidden;
}
@media (max-width: 640px) {
  .age_confirm_card {
    padding: 24px;
    border-radius: 16px;
  }
  .age_confirm_title {
    font-size: 20px;
  }
  .age_confirm_actions {
    flex-direction: column;
  }
  .age_confirm_btn {
    width: 100%;
  }
}

/* Profile Highlights */
.profile_highlights {
  margin-bottom: 24px;
  padding: 18px 18px 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border-radius: 18px;
  border: 1px solid #eef1f7;
  box-shadow: 0 12px 28px rgba(20, 30, 58, 0.06);
}
.profile_highlights_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef1f7;
}
.profile_highlights_title {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 0.02em;
}
.profile_highlights_title svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  fill: #1f2937;
}
.profile_highlights_add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #e2e7f2;
  background-color: #f6f7fb;
  font-size: 12px;
  font-weight: 700;
  color: #1f2937;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(31, 41, 55, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.profile_highlights_add svg {
  width: 14px;
  height: 14px;
  fill: #1f2937;
}
.profile_highlights_add:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(31, 41, 55, 0.12);
  background: #ffffff;
}
.profile_highlights_list {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 2px 6px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #dbe1ef transparent;
}
.profile_highlights_list::-webkit-scrollbar {
  height: 6px;
}
.profile_highlights_list::-webkit-scrollbar-thumb {
  background: #dbe1ef;
  border-radius: 999px;
}
.profile_highlights_list::-webkit-scrollbar-track {
  background: transparent;
}
.profile_highlights_empty {
  font-size: 12px;
  color: #6b7280;
  padding: 6px 2px;
}
.highlight-item {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.profile_highlights .story-view-item {
  width: 98px !important;
}
.profile_highlights .story-bubble {
  --story-size: 86px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}
.highlight-item .name {
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
}
.highlight-edit {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #e2e7f2;
  background-color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.highlight-edit svg {
  width: 13px;
  height: 13px;
  fill: #1f2937;
}
.highlight-edit:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.16);
}
.highlight-modal .highlight-modal-body {
  padding: 15px;
}
.highlight-form-field {
  margin-bottom: 15px;
}
.highlight-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111111;
}
.highlight-title-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  outline: none;
}
.highlight-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 10px;
}
.highlight-story-option {
  position: relative;
  cursor: pointer;
}
.highlight-story-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.highlight-story-thumb {
  display: block;
  width: 100%;
  padding-top: 100%;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
}
.highlight-story-checkbox:checked + .highlight-story-thumb {
  border-color: #f65169;
}
.highlight-cover-uploader {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.highlight-cover-preview {
  width: 92px;
  height: 92px;
  border-radius: 12px;
  background: #f3f5fb;
  border: 1px dashed #d7dbe6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  color: #6b7280;
  padding: 8px;
  background-size: cover;
  background-position: center;
}
.highlight-cover-preview.has-cover {
  border-style: solid;
}
.highlight-cover-preview.has-cover .highlight-cover-placeholder {
  display: none;
}
.highlight-cover-placeholder {
  line-height: 1.3;
}
.highlight-cover-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #e2e7f2;
  background: #f6f7fb;
  font-size: 12px;
  font-weight: 700;
  color: #1f2937;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.highlight-cover-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
  background: #ffffff;
}
.highlight-cover-input {
  display: none;
}
.highlight-cover-hint {
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
}
.highlight-empty-note {
  font-size: 13px;
  color: #666666;
}
.highlight-error {
  font-size: 12px;
  color: #f65169;
  min-height: 16px;
}
.highlight-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.profile_wrapper .profile_meta_card {
  position: relative;
  padding: 20px 20px 16px;
  border: none;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: none;
  overflow: hidden;
  gap: 14px;
}
.profile_wrapper .profile_meta_card:before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 112px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #f65169 0%, #fab429 100%);
}
.profile_wrapper .profile_meta_header {
  align-items: flex-end;
  padding-bottom: 10px;
}
.profile_wrapper .profile_meta_title {
  font-size: 15px;
  font-weight: 800;
  color: #172033;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.profile_wrapper .profile_meta_list {
  gap: 0;
}
.profile_wrapper .profile_meta_row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
}
.profile_wrapper .profile_meta_row:last-child {
  border-bottom: none;
}
.profile_wrapper .profile_meta_icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f4f7fb;
}
.profile_wrapper .profile_meta_icon svg {
  width: 15px;
  height: 15px;
  fill: #172033;
}
.profile_wrapper .meta_text {
  flex-direction: column;
  align-items: flex-start;
  align-self: auto;
  gap: 4px;
  min-width: 0;
}
.profile_wrapper .profile_meta_row .label {
  font-size: 9px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7b8798;
}
.profile_wrapper .profile_meta_row .value {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: #172033;
}
.profile_wrapper .meta_text .value {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.profile_wrapper .profile_meta_row .value svg {
  width: 12px;
  height: 12px;
}
.profile_wrapper .profile_meta_row .value .i_creator_category,
.profile_wrapper .profile_meta_row .value .i_creator_category a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: #1e3a6d;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
}
.profile_wrapper .profile_meta_row .value .i_creator_category {
  display: inline;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.profile_wrapper .profile_meta_row .value .i_creator_category a {
  padding: 6px 10px;
  border: none;
  border-radius: 999px;
  background: rgba(70, 106, 180, 0.12);
  box-shadow: none;
}
.profile_wrapper .profile_meta_row .value .i_creator_category svg,
.profile_wrapper .profile_meta_row .value .i_creator_category a svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}
.profile_wrapper .profile_meta_missing {
  color: #e25c64;
}
.profile_wrapper .profile_meta_bio,
.profile_wrapper .profile_meta_social {
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(226, 232, 240, 0.72);
}
.profile_wrapper .profile_meta_bio_title {
  margin-bottom: 8px;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7b8798;
}
.profile_wrapper .profile_meta_bio_text {
  font-size: 12px;
  line-height: 1.55;
  color: #344256;
}
.profile_wrapper .profile_meta_social_list {
  gap: 8px;
}
.profile_wrapper .profile_meta_social_link {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 9px;
  background: #f4f7fb;
}
.profile_wrapper .profile_meta_social_link:hover {
  transform: none;
  box-shadow: none;
  background: #edf2f8;
}
.profile_wrapper .profile_meta_social_link svg {
  width: 15px;
  height: 15px;
}
.profile_wrapper .community_manage_card .profile_meta_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
}
.profile_wrapper .community_manage_card .profile_meta_title {
  flex: 1 1 auto;
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}
.profile_wrapper .community_manage_card .communityEditModalBtn {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 14px;
  flex: 0 0 auto;
}
.profile_wrapper .community_manage_card .profile_meta_row {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 12px 0;
}
.profile_wrapper .community_manage_card .meta_text {
  width: 100%;
  max-width: none;
  gap: 6px;
}
.profile_wrapper .community_manage_card .profile_meta_row .label {
  display: block;
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0.08em;
}
.profile_wrapper .community_manage_card .profile_meta_row .value {
  display: block;
  width: 100%;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}
.profile_wrapper .community_manage_card .meta_text .value {
  display: block;
}
.profile_wrapper .community_manage_card .community_form_actions {
  margin-top: 18px;
  justify-content: flex-end;
}
.profile_wrapper .community_manage_card .communityDeleteBtn {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 740px) {
  .profile_wrapper .community_manage_card .profile_meta_header {
    gap: 12px;
    padding-bottom: 12px;
  }
  .profile_wrapper .community_manage_card .profile_meta_title {
    font-size: 16px;
  }
  .profile_wrapper .community_manage_card .communityEditModalBtn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .profile_wrapper .community_manage_card .profile_meta_row {
    padding: 10px 0;
  }
  .profile_wrapper .community_manage_card .profile_meta_row .label {
    font-size: 10px;
  }
  .profile_wrapper .community_manage_card .profile_meta_row .value {
    font-size: 14px;
  }
  .profile_wrapper .community_manage_card .community_form_actions {
    justify-content: stretch;
  }
  .profile_wrapper .community_manage_card .communityDeleteBtn {
    width: 100%;
    min-height: 42px;
  }
}
@media (max-width: 740px) {
  .profile_wrapper .profile_meta_card {
    padding: 16px 14px 14px;
    border-radius: 18px;
    gap: 12px;
  }
  .profile_wrapper .profile_meta_card:before {
    left: 16px;
    width: 88px;
  }
  .profile_wrapper .profile_meta_title {
    font-size: 14px;
  }
  .profile_wrapper .profile_meta_row {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    padding: 9px 0;
  }
  .profile_wrapper .profile_meta_icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
  .profile_wrapper .profile_meta_icon svg {
    width: 14px;
    height: 14px;
  }
  .profile_wrapper .profile_meta_row .value {
    font-size: 12px;
  }
  .profile_wrapper .profile_meta_row .value .i_creator_category,
  .profile_wrapper .profile_meta_row .value .i_creator_category a {
    font-size: 10px;
  }
  .profile_wrapper .profile_meta_row .value .i_creator_category a {
    padding: 5px 9px;
  }
  .profile_wrapper .profile_meta_bio_text {
    font-size: 11px;
  }
}
.i_sidebar_profile_card {
  background: #ffffff;
  border: 1px solid #e6ebf4;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: none;
}
.i_sidebar_profile_cover {
  height: 104px;
  background-color: #eef2fb;
  background-size: cover;
  background-position: center;
  position: relative;
}
.i_sidebar_profile_cover:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      140px 110px at 82% 0%,
      rgba(250, 180, 41, 0.22),
      transparent 68%
    ),
    radial-gradient(
      150px 100px at 0% 0%,
      rgba(148, 163, 184, 0.22),
      transparent 72%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72),
      rgba(247, 249, 252, 0.18)
    );
}
.i_sidebar_profile_cover_badges {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}
.i_sidebar_profile_body {
  padding: 0 16px 16px;
  position: relative;
  text-align: left;
}
.i_sidebar_profile_identity {
  margin-top: -26px;
  position: relative;
  z-index: 1;
}
.i_sidebar_profile_header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 14px;
}
.i_sidebar_profile_intro {
  min-width: 0;
  flex: 1 1 auto;
  padding-bottom: 6px;
}
.i_sidebar_profile_avatar {
  width: 84px;
  height: 84px;
  border-radius: 26px;
  border: 4px solid #ffffff;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.16);
  flex: 0 0 auto;
}
.i_sidebar_profile_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.i_sidebar_profile_meta {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.i_sidebar_profile_name {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  text-decoration: none;
  line-height: 1.1;
}
.i_sidebar_profile_verified {
  display: inline-flex;
  align-items: center;
  color: #4f46e5;
}
.i_sidebar_profile_handle {
  font-size: 13px;
  color: #64748b;
  margin-top: 0;
}
.i_sidebar_profile_category {
  font-size: 12px;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 4px;
  line-height: 1.3;
}
.i_sidebar_profile_category svg {
  width: 14px;
  height: 14px;
  display: block;
  flex: 0 0 auto;
}
.i_sidebar_profile_badges {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
}
.i_sidebar_profile_badge {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #e0e7ff;
  background: #eef2ff;
  color: #4338ca;
  font-weight: 600;
}
.i_sidebar_profile_badge.is-active {
  border-color: #bbf7d0;
  background: #ecfdf3;
  color: #15803d;
}
.i_sidebar_profile_badge.is-warning {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #b45309;
}
.i_sidebar_profile_badge.is-pending {
  border-color: #e5e7eb;
  background: #f3f4f6;
  color: #4b5563;
}
.i_sidebar_profile_bio {
  margin-top: 12px;
  padding: 11px 13px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #edf1f7;
  font-size: 12px;
  color: #475569;
  line-height: 1.55;
}
.i_sidebar_profile_bio_empty {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.i_sidebar_profile_actions {
  margin-top: 12px;
}
.i_sidebar_profile_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}
.i_sidebar_profile_btn:hover {
  background: #111827;
}
.i_sidebar_profile_quick {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}
.i_sidebar_profile_quick_btn {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #d9e1ee;
  background: #f8fafc;
  font-size: 11px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  appearance: none;
}
.i_sidebar_profile_quick_btn:hover {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
.i_sidebar_profile_snapshot {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.i_sidebar_profile_stats {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.i_sidebar_profile_stat {
  background: #f8fafc;
  border-radius: 16px;
  padding: 11px 8px;
  text-align: center;
  text-decoration: none;
  color: #0f172a;
  border: 1px solid #e8edf5;
  transition: all 0.2s ease;
}
.i_sidebar_profile_stat:hover {
  background: #ffffff;
  transform: translateY(-1px);
}
.i_sidebar_profile_stat .stat_value {
  font-weight: 700;
  font-size: 16px;
  display: block;
  line-height: 1;
}
.i_sidebar_profile_stat .stat_label {
  font-size: 10px;
  color: #64748b;
  display: block;
  margin-top: 6px;
  line-height: 1.25;
}
.i_sidebar_profile_earnings {
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
}
.i_sidebar_profile_earnings .earnings_label {
  opacity: 0.82;
}
.i_sidebar_profile_earnings .earnings_value {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}
.i_sidebar_profile_progress {
  padding: 13px 14px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e8edf5;
}
.i_sidebar_profile_progress_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}
.i_sidebar_profile_progress_bar {
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin-top: 10px;
}
.i_sidebar_profile_progress_fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #0f172a, #334155);
}
.i_sidebar_profile_progress_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 10px;
}
.i_sidebar_profile_progress_item {
  font-size: 11px;
  color: #64748b;
  display: flex;
  align-items: center;
  line-height: 1.3;
  min-width: 0;
}
.i_sidebar_profile_progress_item:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  margin-right: 6px;
}
.i_sidebar_profile_progress_item.is-done {
  color: #0f172a;
}
.i_sidebar_profile_progress_item.is-done:before {
  background: #22c55e;
  border-color: #22c55e;
}
.i_sidebar_profile_alerts {
  display: grid;
  gap: 8px;
}
.i_sidebar_profile_alert {
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: #b45309;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  line-height: 1.35;
}
.i_sidebar_profile_alert.is-critical {
  border-color: #fecaca;
  background: #fff1f2;
  color: #b42318;
}
.i_sidebar_profile_alert.is-warning {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}
@media (max-width: 680px) {
  .i_sidebar_profile_body {
    padding: 0 14px 16px;
  }
  .i_sidebar_profile_header {
    gap: 12px;
    align-items: flex-end;
  }
  .i_sidebar_profile_avatar {
    width: 74px;
    height: 74px;
  }
  .i_sidebar_profile_name {
    font-size: 18px;
  }
  .i_sidebar_profile_stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .i_sidebar_profile_progress_list {
    gap: 8px 12px;
  }
}
.invite_card_compact {
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e6ebf4;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  box-shadow: none;
}
.invite_card_header_compact {
  display: block;
}
.invite_card_intro {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.invite_visual_compact {
  width: 72px;
  min-width: 72px;
  text-align: left;
  padding: 0;
}
.invite_visual_compact img {
  width: 72px;
  max-width: 72px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  display: block;
}
.invite_card_copy {
  min-width: 0;
  flex: 1 1 auto;
}
.invite_card_compact .invite_title_text {
  width: auto;
  margin: 0 0 6px 0;
  text-align: left;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.invite_card_compact .invite_sub_text {
  width: auto;
  margin: 0;
  text-align: left;
  font-size: 12px;
  line-height: 1.5;
  color: #64748b;
  font-weight: 500;
}
.invite_card_compact .already_in_use {
  margin: 0;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: #fff5f5;
  border: 1px solid #fecaca;
  font-size: 12px;
  line-height: 1.4;
}
.invite_card_form_compact {
  gap: 10px;
  justify-content: stretch;
}
.invite_card_form_compact .invite_input_wrap {
  flex: 1 1 100%;
}
.invite_card_compact .inviteemail_input {
  height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #dbe3ef;
  font-size: 14px;
  color: #172033;
}
.invite_card_compact .inviteemail_input:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}
.invite_card_form_compact .send_invitation_btn {
  width: 100%;
  min-width: 0;
  padding: 13px 16px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  justify-content: center;
  background: #0f172a;
  box-shadow: none;
}
.invite_card_form_compact .send_invitation_btn:hover {
  background: #111827;
}
.invite_card_form_compact .send_invitation_btn svg {
  fill: #ffffff;
}
.invite_card_form_compact .send_invitation_btn .pbtn {
  font-size: 14px;
  font-weight: 600;
}
.invite_card_footer {
  display: flex;
  justify-content: flex-start;
}
.invite_card_compact .invite_meta_chip {
  width: auto;
  margin: 0;
  justify-content: flex-start;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  color: #334155;
  padding: 8px 12px;
  font-size: 12px;
}
.invite_card_compact .invite_meta_chip span {
  font-size: 13px;
}
@media (max-width: 700px) {
  .invite_card_intro {
    gap: 10px;
  }
  .invite_visual_compact {
    width: 60px;
    min-width: 60px;
  }
  .invite_visual_compact img {
    width: 60px;
    max-width: 60px;
  }
  .invite_card_compact .invite_title_text {
    font-size: 17px;
  }
  .invite_card_form_compact .send_invitation_btn .pbtn {
    font-size: 13px;
  }
}
.sp_wrp .sp_products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  overflow: visible;
}
.sp_wrp .sp_product_wrapper {
  width: 100%;
  float: none;
  padding: 0 !important;
}
.sp_wrp .sp_product_wrapper.is-featured .sp_product_container {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  min-height: 320px;
  max-height: none;
  background: #dfe7f5;
  border: 1px solid #dfe7f2;
  box-shadow: none;
}
.sp_wrp .sp_product_wrapper.is-featured .sp_product_img {
  padding-top: 74%;
  min-height: 320px;
  max-height: none;
}
.sp_wrp .sp_product_wrapper.is-featured .sp_product_img img {
  transition: transform 0.35s ease;
}
.sp_wrp .sp_product_wrapper.is-featured .sp_product_overlay {
  padding: 16px;
}
.sp_wrp .sp_product_wrapper.is-featured .sp_product_overlay::before {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.18) 0%,
    rgba(15, 23, 42, 0.08) 36%,
    rgba(15, 23, 42, 0.82) 100%
  );
}
.sp_wrp .sp_product_wrapper.is-featured .sp_product_body {
  gap: 10px;
}
.sp_wrp .sp_product_wrapper.is-featured .sp_product_body .sp_product_name {
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.sp_wrp .sp_product_wrapper.is-featured .sp_product_desc {
  font-size: 14px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
}
.sp_wrp .sp_product_wrapper.is-featured .sp_product_meta .mypType {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
}
.sp_wrp .sp_product_wrapper.is-featured .sp_product_price_tag {
  background: #ff845f;
  box-shadow: none;
}
.sp_product_compact_card {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e6ebf4;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.sp_product_compact_card:hover {
  background: #fbfcff;
  border-color: #d8e2f0;
}
.sp_product_compact_media {
  position: relative;
  display: block;
  flex: 0 0 112px;
  width: 112px;
  min-width: 112px;
  overflow: hidden;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  background: #dfe7f5;
  text-decoration: none;
}
.sp_product_compact_media img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.sp_product_compact_card:hover .sp_product_compact_media img {
  transform: scale(1.04);
}
.sp_product_compact_content {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 2px 0;
}
.sp_product_compact_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sp_product_compact_meta .mypType {
  position: relative;
  top: auto !important;
  left: auto !important;
  padding: 5px 10px;
  box-shadow: none;
  background: #eef2ff;
  border: 1px solid #dce4f6;
}
.sp_product_compact_meta .s_p_product_type a {
  color: #334155;
}
.sp_product_compact_meta .sp_product_price_tag {
  padding: 6px 10px;
  background: #fff1ec;
  color: #c2410c;
  font-size: 13px;
  box-shadow: none;
}
.sp_product_compact_body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: #0f172a;
}
.sp_product_compact_body .sp_product_name {
  padding: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.18;
  color: #0f172a;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: none;
}
.sp_product_compact_body .sp_product_desc {
  font-size: 13px;
  line-height: 1.45;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 700px) {
  .sp_product_compact_card {
    gap: 10px;
    padding: 9px;
  }
  .sp_product_compact_media {
    flex-basis: 96px;
    width: 96px;
    min-width: 96px;
  }
  .sp_product_compact_media img {
    min-height: 118px;
  }
  .sp_product_compact_body .sp_product_name {
    font-size: 15px;
  }
  .sp_product_compact_body .sp_product_desc {
    font-size: 12px;
  }
  .sp_wrp .sp_product_wrapper.is-featured .sp_product_body .sp_product_name {
    font-size: 18px;
  }
}
.suggested_creators_widget {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.suggested_creators_widget_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.suggested_creators_widget_count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e4eaf3;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.suggested_creators_widget_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.suggested_creator_featured_card {
  border: 1px solid #e6ebf4;
  background: #ffffff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
}
.suggested_creator_featured_cover {
  position: relative;
  display: block;
  height: 110px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}
.suggested_creator_featured_cover:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.08) 0%,
    rgba(15, 23, 42, 0.5) 100%
  );
}
.suggested_creator_featured_chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.suggested_creator_featured_cover_cta {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.suggested_creator_featured_body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 14px 14px;
  position: relative;
  z-index: 1;
  background: #ffffff;
  margin-top: 0;
}
.suggested_creator_identity,
.suggested_creator_row_identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
  text-decoration: none;
}
.suggested_creator_identity_copy,
.suggested_creator_row_copy {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.suggested-avatar-wrapper.is-featured,
.suggested-avatar-wrapper.is-compact {
  position: relative;
  display: block;
  flex: 0 0 auto;
  background: none;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.suggested-avatar-wrapper.is-featured {
  width: 68px;
  height: 68px;
  transform: translateY(-34px);
  margin-bottom: -34px;
}
.suggested-avatar-wrapper.is-compact {
  width: 46px;
  height: 46px;
}
.suggested-avatar-wrapper.is-featured .suggested-avatar,
.suggested-avatar-wrapper.is-compact .suggested-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
.suggested-avatar-wrapper.is-compact .suggested-avatar {
  border-width: 2px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
.suggested-avatar-wrapper.is-featured .suggested-verified-badge,
.suggested-avatar-wrapper.is-compact .suggested-verified-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 22px;
  height: 22px;
  border-width: 2px;
}
.suggested-avatar-wrapper.is-featured .suggested-verified-badge svg,
.suggested-avatar-wrapper.is-compact .suggested-verified-badge svg {
  width: 13px;
  height: 13px;
}
.suggested_creator_identity .suggested-name,
.suggested_creator_row_identity .suggested-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin: 0;
}
.suggested_creator_row_identity {
  align-items: center;
}
.suggested_creator_row_identity .suggested-name {
  font-size: 14px;
}
.suggested_creator_identity .suggested-name-text,
.suggested_creator_row_identity .suggested-name-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.suggested_creator_handle {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.3;
  color: #64748b;
  font-weight: 600;
  text-align: left;
}
.suggested_creator_cta,
.suggested_creator_row_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.suggested_creator_cta {
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #ffffff;
}
.suggested_creator_cta:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: #ffffff;
}
.suggested_creator_row_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e6ebf4;
  background: #ffffff;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.suggested_creator_row_card:hover {
  background: #fbfcff;
  border-color: #d8e2f0;
}
.suggested_creator_row_cta {
  background: #f8fafc;
  border: 1px solid #dfe7f2;
  color: #0f172a;
}
.suggested_creator_row_cta:hover {
  background: #eef3fa;
  border-color: #d5e0ef;
  color: #0f172a;
}
.suggested-name .i_plus_g,
.suggested-name .i_plus_gf {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.suggested-name .i_plus_g svg,
.suggested-name .i_plus_gf svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 700px) {
  .suggested_creator_featured_cover {
    height: 100px;
  }
  .suggested_creator_featured_cover_cta {
    top: 12px;
    right: 12px;
    padding: 7px 11px;
    font-size: 10px;
  }
  .suggested_creator_featured_body {
    padding: 0 12px 12px;
    margin-top: 0;
  }
  .suggested-avatar-wrapper.is-featured {
    width: 60px;
    height: 60px;
    transform: translateY(-30px);
    margin-bottom: -30px;
  }
  .suggested_creator_identity .suggested-name {
    font-size: 15px;
  }
  .suggested_creator_row_card {
    padding: 11px 12px;
    gap: 10px;
  }
  .suggested-avatar-wrapper.is-compact {
    width: 42px;
    height: 42px;
  }
  .suggested_creator_row_identity .suggested-name {
    font-size: 13px;
  }
  .suggested_creator_row_cta {
    padding: 8px 12px;
    font-size: 11px;
  }
}
.boosted_creators_widget {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.boosted_creators_widget_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.boosted_creators_widget_header > span:first-child {
  flex: 1 1 180px;
  min-width: 0;
  line-height: 1.35;
}
.boosted_creators_widget_chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #c2410c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.boosted_creators_widget_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.boosted_creator_spotlight_card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff3e8 0%, #ffe3cd 52%, #ffd1b5 100%);
  border: 1px solid #fed7aa;
  box-shadow: none;
  background-size: cover;
  background-position: center;
}
.boosted_creator_spotlight_card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 247, 237, 0.96) 0%,
    rgba(255, 237, 213, 0.88) 55%,
    rgba(255, 216, 185, 0.82) 100%
  );
}
.boosted_creator_spotlight_card:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -54px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.22) 0%,
    rgba(251, 146, 60, 0) 72%
  );
}
.boosted_creator_spotlight_rank,
.boosted_creator_spotlight_copy,
.boosted_creator_spotlight_visual {
  position: relative;
  z-index: 1;
}
.boosted_creator_spotlight_rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  background: #0f172a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.boosted_creator_spotlight_copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding-top: 2px;
}
.boosted_creator_spotlight_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(251, 146, 60, 0.32);
  color: #c2410c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.boosted_creator_spotlight_identity {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
}
.boosted_creator_spotlight_identity .boosted-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.12;
  color: #111827;
  margin: 0;
}
.boosted_creator_spotlight_identity .boosted-name-text {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.boosted_creator_spotlight_identity .boosted-username {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.3;
  color: #7c889f;
  font-weight: 700;
  text-align: left;
}
.boosted_creator_spotlight_note {
  font-size: 12px;
  line-height: 1.45;
  color: #9a3412;
  font-weight: 700;
}
.boosted_creator_spotlight_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.boosted_creator_spotlight_cta:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: #ffffff;
}
.boosted_creator_spotlight_visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.boosted-avatar-wrapper.is-featured,
.boosted-avatar-wrapper.is-compact {
  position: relative;
  display: block;
  flex: 0 0 auto;
  background: none;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.boosted-avatar-wrapper.is-featured {
  width: 88px;
  height: 88px;
}
.boosted-avatar-wrapper.is-compact {
  width: 46px;
  height: 46px;
}
.boosted-avatar-wrapper.is-featured .boosted-avatar,
.boosted-avatar-wrapper.is-compact .boosted-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(194, 65, 12, 0.18);
}
.boosted-avatar-wrapper.is-compact .boosted-avatar {
  border-width: 2px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
.boosted-avatar-wrapper.is-featured .boosted-verified-badge,
.boosted-avatar-wrapper.is-compact .boosted-verified-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 22px;
  height: 22px;
  border-width: 2px;
}
.boosted-avatar-wrapper.is-featured .boosted-verified-badge svg,
.boosted-avatar-wrapper.is-compact .boosted-verified-badge svg {
  width: 13px;
  height: 13px;
}
.boosted_creator_ranked_row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #f3e1cf;
  background: #ffffff;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}
.boosted_creator_ranked_row:hover {
  background: #fffaf5;
  border-color: #f5d1b2;
  transform: translateY(-1px);
}
.boosted_creator_rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #c2410c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.boosted_creator_row_identity {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  width: 100%;
}
.boosted_creator_row_copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1 1 auto;
}
.boosted_creator_row_identity .boosted-name {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin: 0;
}
.boosted_creator_row_identity .boosted-name-text {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.boosted_creator_row_identity .boosted-username {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.3;
  color: #7c889f;
  font-weight: 600;
  text-align: left;
}
.boosted_creator_row_actions {
  display: flex;
  align-items: center;
  gap: 8px;
  grid-column: 2;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.boosted_creator_row_chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #c2410c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.boosted_creator_row_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.boosted_creator_row_cta:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: #ffffff;
}
.boosted-name .i_plus_g,
.boosted-name .i_plus_gf {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.boosted-name .i_plus_g svg,
.boosted-name .i_plus_gf svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 700px) {
  .boosted_creator_spotlight_card {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 14px;
  }
  .boosted_creator_spotlight_visual {
    grid-column: 1/-1;
    justify-content: flex-start;
    order: -1;
  }
  .boosted-avatar-wrapper.is-featured {
    width: 74px;
    height: 74px;
  }
  .boosted_creator_spotlight_identity .boosted-name {
    font-size: 18px;
  }
  .boosted_creator_ranked_row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
  }
  .boosted_creator_row_actions {
    justify-content: flex-start;
  }
  .boosted_creator_row_cta {
    padding: 7px 11px;
    font-size: 10px;
  }
}

.friends_activity_widget {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.friends_activity_widget_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.friends_activity_widget_heading {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.friends_activity_widget_title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
}
.friends_activity_widget_note {
  font-size: 12px;
  line-height: 1.4;
  color: #64748b;
}
.friends_activity_widget_chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: none;
}
.friends_activity_stream {
  max-height: 372px;
  overflow-y: auto;
  padding: 2px 4px 2px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.friends_activity_stream::-webkit-scrollbar {
  width: 4px !important;
  height: 4px !important;
}
.friends_activity_stream::-webkit-scrollbar-thumb {
  background-color: #d5deeb !important;
  border-radius: 999px;
}
.friends_activity_widget .i_message_wrpper {
  margin: 0;
}
.friends_activity_widget .activity_card_link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.friends_activity_widget .activity_card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 14px 14px 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 22px;
  -webkit-border-radius: 22px;
  box-shadow: 0 12px 28px rgba(148, 163, 184, 0.12);
  min-height: 0;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.friends_activity_widget .activity_card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: linear-gradient(180deg, #f97393 0%, #fda4af 100%);
  opacity: 1;
}
.friends_activity_widget .activity_card::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -34px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 114, 182, 0.16) 0%,
    rgba(244, 114, 182, 0) 70%
  );
}
.friends_activity_widget .activity_card[data-activity="newPost"] {
  background: linear-gradient(135deg, #ffffff 0%, #f2f5ff 100%);
}
.friends_activity_widget .activity_card[data-activity="newPost"]::before {
  background: linear-gradient(180deg, #818cf8 0%, #c7d2fe 100%);
}
.friends_activity_widget .activity_card[data-activity="newPost"]::after {
  background: radial-gradient(
    circle,
    rgba(129, 140, 248, 0.16) 0%,
    rgba(129, 140, 248, 0) 72%
  );
}
.friends_activity_widget .activity_card[data-activity="postLike"] {
  background: linear-gradient(135deg, #ffffff 0%, #fff3f7 100%);
}
.friends_activity_widget .activity_card[data-activity="postLike"]::before {
  background: linear-gradient(180deg, #f43f5e 0%, #f9a8d4 100%);
}
.friends_activity_widget .activity_card[data-activity="postLike"]::after {
  background: radial-gradient(
    circle,
    rgba(244, 63, 94, 0.14) 0%,
    rgba(244, 63, 94, 0) 72%
  );
}
.friends_activity_widget .activity_card[data-activity="userFollow"] {
  background: linear-gradient(135deg, #ffffff 0%, #eefcf4 100%);
}
.friends_activity_widget .activity_card[data-activity="userFollow"]::before {
  background: linear-gradient(180deg, #22c55e 0%, #86efac 100%);
}
.friends_activity_widget .activity_card[data-activity="userFollow"]::after {
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.16) 0%,
    rgba(34, 197, 94, 0) 72%
  );
}
.friends_activity_widget .activity_card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(148, 163, 184, 0.18);
  border-color: #d8e2f0;
  background: #ffffff;
}
.friends_activity_widget .activity_card_avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  flex: 0 0 64px;
  padding-left: 14px;
  z-index: 1;
}
.friends_activity_widget .activity_avatar_ring {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  padding: 2px;
  box-shadow: none;
  align-self: center;
}
.friends_activity_widget .activity_avatar_ring .i_message_avatar {
  border: 2px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
.friends_activity_widget .activity_event_badge {
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: #ffffff;
  border: 1px solid #ffd6df;
  color: #e11d48;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
  z-index: 3;
}
.friends_activity_widget
  .activity_card[data-activity="newPost"]
  .activity_event_badge {
  border-color: #d9e3ff;
  color: #4f46e5;
}
.friends_activity_widget
  .activity_card[data-activity="userFollow"]
  .activity_event_badge {
  border-color: #ccefd9;
  color: #15803d;
}
.friends_activity_widget .activity_card_main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  z-index: 1;
}
.friends_activity_widget .activity_row_meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}
.friends_activity_widget .activity_type_chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.95);
  backdrop-filter: blur(8px);
  color: #334155;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.friends_activity_widget
  .activity_card[data-activity="newPost"]
  .activity_type_chip {
  background: rgba(255, 255, 255, 0.76);
  border-color: #d9e3ff;
  color: #4f46e5;
}
.friends_activity_widget
  .activity_card[data-activity="postLike"]
  .activity_type_chip {
  background: rgba(255, 255, 255, 0.78);
  border-color: #ffd2de;
  color: #e11d48;
}
.friends_activity_widget
  .activity_card[data-activity="userFollow"]
  .activity_type_chip {
  background: rgba(255, 255, 255, 0.78);
  border-color: #ccefd9;
  color: #15803d;
}
.friends_activity_widget .activity_type_chip:before {
  width: 7px;
  height: 7px;
}
.friends_activity_widget .i_activity_info_container.activity_text {
  padding-left: 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  color: #0f172a;
}
.friends_activity_widget .i_activity_info_container.activity_text a {
  font-weight: 800;
  color: #ef476f;
}
.friends_activity_widget .i_activity_info_container.activity_text a.a_o_user {
  color: #0f172a;
  margin-left: 0;
}
.friends_activity_widget
  .i_activity_info_container.activity_text
  a.a_o_user_flw {
  color: #2563eb;
  margin-left: 0;
}
.friends_activity_widget .activity_meta_chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: #94a3b8;
  font-size: 18px;
  line-height: 1;
  align-self: center;
  z-index: 1;
}
@media (max-width: 700px) {
  .friends_activity_widget_header {
    gap: 10px;
  }
  .friends_activity_widget_title {
    font-size: 15px;
  }
  .friends_activity_widget_note {
    font-size: 11px;
  }
  .friends_activity_widget_chip {
    padding: 6px 10px;
    font-size: 9px;
  }
  .friends_activity_stream {
    max-height: 320px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-gutter: stable;
    gap: 10px;
  }
  .friends_activity_widget .activity_card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    padding: 12px;
  }
  .friends_activity_widget .activity_card::before {
    left: 10px;
    top: 14px;
    bottom: 14px;
  }
  .friends_activity_widget .activity_meta_chevron {
    display: none;
  }
  .friends_activity_widget .activity_card_avatar {
    width: 56px;
    flex-basis: 56px;
    padding-left: 12px;
  }
  .friends_activity_widget .activity_avatar_ring {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .friends_activity_widget .activity_event_badge {
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    min-width: 24px;
    height: 18px;
    padding: 0 5px;
    font-size: 7px;
  }
  .friends_activity_widget .i_activity_info_container.activity_text {
    font-size: 12px;
  }
}

.stories_fb_strip {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}
.stories_fb_strip .stories_strip_surface {
  padding: 0 !important;
  background: transparent !important;
  border: none;
  outline: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  overflow: visible;
  gap: 0;
}
.stories_fb_strip .stories_scroller {
  padding: 0 0 6px;
  gap: 10px;
  align-items: stretch;
  cursor: grab;
}
.stories_fb_strip .stories_track {
  gap: 10px;
}
.stories_fb_strip .mystoriesstyle {
  display: flex;
  flex: 0 0 auto;
  flex-grow: 0;
  flex-shrink: 0;
  gap: 10px;
  padding-bottom: 0;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 0;
}
.stories_fb_strip .story-card-feed,
.stories_fb_strip .story-card-live,
.stories_fb_strip .story-card-create {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 112px !important;
  min-height: 198px;
  max-height: 198px;
  padding: 12px;
  border-radius: 18px !important;
  -webkit-border-radius: 18px !important;
  overflow: hidden !important;
  scroll-snap-align: start;
  isolation: isolate;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    filter 0.22s ease;
}
.stories_fb_strip .story-card-feed,
.stories_fb_strip .story-card-live {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: none;
}
.stories_fb_strip .story-card-feed {
  background-color: #cbd5e1;
}
.stories_fb_strip .story-card-feed .story-card-cover {
  position: absolute;
  inset: 0;
  background-image: var(--story-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.stories_fb_strip .story-card-live {
  background-image: var(--story-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #0f172a;
  border-color: rgba(96, 165, 250, 0.22);
}
.stories_fb_strip .story-card-create {
  padding: 0;
  background: #ffffff;
  border: 1px solid #e6ebf4;
  box-shadow: none;
}
.stories_fb_strip .story-card-create {
  overflow: visible !important;
}
.stories_fb_strip .story-card-feed:before,
.stories_fb_strip .story-card-live:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0) 38%
  );
  pointer-events: none;
  z-index: 1;
}
.stories_fb_strip .story-card-live:before {
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.18) 0%, rgba(8, 13, 24, 0.08) 36%, rgba(8, 13, 24, 0.82) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 38%);
}
.stories_fb_strip .story-card-live:after {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  -webkit-border-radius: inherit;
  background: rgba(15, 23, 42, 0.08);
  pointer-events: none;
  z-index: 0;
}
.stories_fb_strip .story-card-feed:hover,
.stories_fb_strip .story-card-live:hover,
.stories_fb_strip .story-card-create:hover {
  transform: none;
  filter: saturate(1.03);
}
.stories_fb_strip .story-card-feed:hover,
.stories_fb_strip .story-card-live:hover {
  box-shadow: none;
  border-color: rgba(191, 219, 254, 0.9);
}
.stories_fb_strip .story-card-create:hover {
  box-shadow: none;
  border-color: #dce4f2;
}
.stories_fb_strip .story-card-feed .story-bubble,
.stories_fb_strip .story-card-live .story-bubble {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 2px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.22);
  z-index: 2;
}
.stories_fb_strip .story-card-feed .story-bubble {
  background: linear-gradient(135deg, #1d8fe1 0%, #2f76ff 52%, #9b51e0 100%);
}
.stories_fb_strip .story-card-live .story-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8a00 100%);
  box-shadow: none;
  z-index: 3;
}
.stories_fb_strip .story-card-feed .story-ring,
.stories_fb_strip .story-card-live .story-ring {
  width: 100%;
  height: 100%;
  padding: 2px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stories_fb_strip .story-card-feed .story-view-pr-avatar,
.stories_fb_strip .story-card-live .story-view-pr-avatar {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.stories_fb_strip .story-card-feed.is-seen .story-bubble,
.stories_fb_strip .story-view-item.activated .story-bubble {
  background: linear-gradient(135deg, #d6deeb 0%, #e8edf5 100%);
  box-shadow: 0 8px 18px rgba(148, 163, 184, 0.2);
  filter: saturate(0.65);
}
.stories_fb_strip .story-card-live .story-live-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  max-width: calc(100% - 20px);
  padding: 4px 8px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: rgba(246, 81, 105, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: none;
  z-index: 4;
}
.stories_fb_strip .story-card-live .story-live-badge span {
  display: inline-block;
  max-width: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.stories_fb_strip .story-card-live .name {
  padding-bottom: 12px;
}
.stories_fb_strip .story-card-feed .name,
.stories_fb_strip .story-card-live .name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 46px 12px 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  font-family:
    "Noto Sans",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.22;
  letter-spacing: 0.01em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.42);
  background: linear-gradient(
    180deg,
    rgba(6, 12, 34, 0) 0%,
    rgba(6, 12, 34, 0.16) 34%,
    rgba(6, 12, 34, 0.82) 100%
  );
  text-transform: none;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  z-index: 2;
}
.stories_fb_strip .story-card-create .story-bubble {
  position: relative;
  width: 100%;
  height: 142px;
  min-height: 142px;
  padding: 0;
  border-radius: 18px 18px 0 0;
  -webkit-border-radius: 18px 18px 0 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}
.stories_fb_strip .story-card-create .story-ring {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 18px 18px 0 0;
  -webkit-border-radius: 18px 18px 0 0;
  background: none;
  display: block;
  overflow: hidden;
}
.stories_fb_strip .story-card-create .story-view-pr-avatar {
  border-radius: 0;
  -webkit-border-radius: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.stories_fb_strip .story-card-create .story-bubble:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.04) 0%,
    rgba(15, 23, 42, 0.22) 100%
  );
  pointer-events: none;
}
.stories_fb_strip .story-card-create .story-add-cta {
  position: absolute;
  left: 50%;
  bottom: -20px;
  right: auto;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.stories_fb_strip .story-card-create .plstr {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  aspect-ratio: 1/1;
  margin: 0;
  background: #2f76ff;
  border: 3px solid #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0 10px 22px rgba(47, 118, 255, 0.24);
}
.stories_fb_strip .story-card-create .plstr svg {
  width: 18px;
  height: 18px;
}
.stories_fb_strip .story-card-create .name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 30px 12px 12px;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  font-family:
    "Noto Sans",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
  text-shadow: none;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  border-bottom-left-radius: 18px;
  -webkit-border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  -webkit-border-bottom-right-radius: 18px;
  z-index: 2;
}
.stories_fb_strip .stories_nav {
  width: 54px;
  height: 54px;
  border: none;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
  color: #475569;
  font-size: 28px;
  font-weight: 700;
}
.stories_outer.has-nav .stories_nav.is-hidden,
.stories_wrapper.has-nav .stories_nav.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.stories_fb_strip .stories_nav:hover {
  transform: translateY(-50%) scale(1.03);
}
.stories_fb_strip .stories_nav-prev {
  left: -4px;
}
.stories_fb_strip .stories_nav-next {
  right: -4px;
}
@media (max-width: 700px) {
  .stories_fb_strip .stories_scroller {
    padding: 0 0 4px;
    gap: 8px;
  }
  .stories_fb_strip .stories_track {
    gap: 8px;
  }
  .stories_fb_strip .mystoriesstyle {
    gap: 8px;
  }
  .stories_fb_strip .story-card-feed,
  .stories_fb_strip .story-card-live,
  .stories_fb_strip .story-card-create {
    width: 98px !important;
    min-height: 176px;
    max-height: 176px;
    border-radius: 16px !important;
  }
  .stories_fb_strip .story-card-create .story-bubble {
    height: 124px;
    min-height: 124px;
    border-radius: 16px 16px 0 0;
  }
  .stories_fb_strip .story-card-create .story-add-cta {
    bottom: -18px;
    width: 36px;
    height: 36px;
  }
  .stories_fb_strip .story-card-create .plstr {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-width: 3px;
  }
  .stories_fb_strip .story-card-feed .story-bubble,
  .stories_fb_strip .story-card-live .story-bubble {
    width: 38px;
    height: 38px;
  }
  .stories_fb_strip .story-card-live .story-bubble {
    width: 50px;
    height: 50px;
  }
  .stories_fb_strip .story-card-feed .name,
  .stories_fb_strip .story-card-live .name {
    font-size: 13px;
    padding: 42px 10px 10px;
  }
  .stories_fb_strip .story-card-create .name {
    font-size: 13px;
    padding: 28px 10px 10px;
    border-bottom-left-radius: 16px;
    -webkit-border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    -webkit-border-bottom-right-radius: 16px;
  }
  .stories_fb_strip .stories_nav {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

.obs-layout-editor {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.obs-layout-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.obs-layout-canvas {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16/9;
  background: #f4f6fb;
  border: 1px solid #dfe4ef;
  border-radius: 14px;
  overflow: hidden;
}
.obs-layout-canvas:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 31px, rgba(15, 23, 42, 0.06) 32px),
    linear-gradient(90deg, transparent 31px, rgba(15, 23, 42, 0.06) 32px);
  background-size: 32px 32px;
  pointer-events: none;
}
.obs-layout-widget {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  padding: 8px 12px;
  border-radius: 10px;
  background: #0f172a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
  cursor: grab;
  user-select: none;
  touch-action: none;
}
.obs-layout-widget.obs-layout-dragging {
  cursor: grabbing;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
}
.obs-layout-widget-disabled {
  opacity: 0.5;
}
.obs-layout-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.obs-layout-control {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e4e8f2;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.obs-layout-control-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}
.obs-layout-control label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #475569;
}
.obs-layout-control input {
  width: 90px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid #d6dbe6;
  font-size: 12px;
}
.obs-layout-coords {
  font-size: 11px;
  color: #64748b;
  display: flex;
  gap: 6px;
  align-items: center;
}
.obs-styles-editor {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.obs-style-section {
  border: 1px solid #e4e8f2;
  border-radius: 12px;
  padding: 10px 12px;
  background: #ffffff;
}
.obs-style-section summary {
  cursor: pointer;
  font-weight: 600;
  color: #111827;
}
.obs-style-fields {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.obs-style-fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #475569;
}
.obs-style-fields input,
.obs-style-fields select {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d6dbe6;
  font-size: 12px;
}
.obs-style-fields input[type="hidden"] {
  display: none;
}
.obs-style-color {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.obs-color-picker {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.obs-color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid #d6dbe6;
  background: #f8fafc;
  max-height: 120px;
  overflow: auto;
}
.obs-color-option {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: var(--swatch, #ffffff);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.obs-color-option.obs-color-default {
  width: auto;
  padding: 0 8px;
  height: 22px;
  font-size: 11px;
  color: #475569;
  background: #ffffff;
}
.obs-color-option.is-selected {
  outline: 2px solid #3b82f6;
  outline-offset: 1px;
}
.obs-color-selected {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #475569;
}
.obs-color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid #d1d5db;
  background: var(--swatch, #ffffff);
}
.obs-style-range {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.obs-style-range-field {
  display: flex;
  align-items: center;
  gap: 8px;
}
.obs-style-range-slider {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 999px;
  background-color: #e2e8f0;
  outline: none;
}
.obs-style-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3b82f6;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.45);
}
.obs-style-range-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3b82f6;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.45);
}
.obs-style-range-slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background-color: #e2e8f0;
}
.obs-style-range-value {
  min-width: 34px;
  text-align: right;
  font-size: 11px;
  color: #0f172a;
}
.obs-styles-actions {
  display: flex;
  justify-content: flex-start;
}
.obs-overlay-layout-note,
.obs-overlay-styles-note {
  font-size: 12px;
  color: #64748b;
}
.obs-overlay-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.obs-overlay-tab {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  min-width: 180px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6dbe6;
  background: #ffffff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.obs-overlay-tab:hover {
  border-color: #c2cade;
  transform: translateY(-1px);
}
.obs-overlay-tab.is-active {
  border-color: #3b82f6;
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.15);
}
.obs-overlay-tab-label {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
}
.obs-overlay-tab-token {
  font-size: 11px;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 0.3px;
}
.obs-overlay-tab-status {
  font-size: 11px;
  color: #64748b;
}
.obs-overlay-panels {
  display: block;
  width: 100%;
}
.obs-overlay-panel {
  display: none;
}
.obs-overlay-panel.is-active {
  display: block;
}
.settings_main_wrapper.obs_overlays_page .i_settings_wrapper_item {
  align-items: stretch;
  flex-direction: column;
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title {
  width: 100%;
  margin-bottom: 8px;
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title_for {
  width: 100%;
  padding-left: 0;
}
.settings_main_wrapper.obs_overlays_page
  .i_settings_wrapper_item.obs-collapsible-item {
  padding-top: 14px;
  padding-bottom: 14px;
}
.settings_main_wrapper.obs_overlays_page .obs-collapsible-title {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}
.settings_main_wrapper.obs_overlays_page .obs-collapsible-title:after {
  content: "-";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #41506f;
  background: #eef2fa;
}
.settings_main_wrapper.obs_overlays_page
  .obs-collapsible-item.obs-collapsible-closed
  .obs-collapsible-title:after {
  content: "+";
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-wrap {
  margin-bottom: 14px;
  padding: 10px;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-title {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.25;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-note {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-field {
  position: relative;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #64748b;
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-input {
  width: 100%;
  height: 48px;
  padding: 0 14px 0 44px;
  border: 1px solid #d7e0ef;
  border-radius: 14px;
  background: #ffffff;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-input:hover {
  border-color: #c6d2e8;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-input:focus {
  border-color: #3b82f6;
  background: #ffffff;
  box-shadow:
    0 0 0 3px rgba(59, 130, 246, 0.2),
    0 12px 24px rgba(59, 130, 246, 0.12);
  outline: none;
}
.settings_main_wrapper.obs_overlays_page
  .obs-overlay-search-input::placeholder {
  color: #8a97ac;
  font-weight: 500;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: none;
  max-height: 280px;
  overflow: auto;
  background: #ffffff;
  border: 1px solid #dce3f0;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  z-index: 40;
}
.settings_main_wrapper.obs_overlays_page
  .obs-overlay-search-suggestions.is-visible {
  display: block;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-suggestion {
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-bottom: 1px solid #eef2fa;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  cursor: pointer;
  text-align: left;
}
.settings_main_wrapper.obs_overlays_page
  .obs-overlay-search-suggestion:last-child {
  border-bottom: 0;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-suggestion:hover,
.settings_main_wrapper.obs_overlays_page
  .obs-overlay-search-suggestion.is-active {
  background: #f3f7ff;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-suggestion-title {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-suggestion-meta {
  font-size: 11px;
  color: #64748b;
}
.settings_main_wrapper.obs_overlays_page
  .i_settings_wrapper_item.obs-search-highlight {
  background: #f3f8ff;
  transition: background-color 0.9s ease;
}
@media (max-width: 768px) {
  .settings_main_wrapper.obs_overlays_page .obs-overlay-search-wrap {
    margin-bottom: 12px;
  }
  .settings_main_wrapper.obs_overlays_page .obs-overlay-search-title {
    font-size: 13px;
  }
  .settings_main_wrapper.obs_overlays_page .obs-overlay-search-note {
    font-size: 11px;
  }
  .settings_main_wrapper.obs_overlays_page .obs-overlay-search-suggestions {
    top: calc(100% + 6px);
  }
}
.settings_main_wrapper.obs_overlays_page {
  --obs-page-surface: #ffffff;
  --obs-page-surface-muted: #f7f9fc;
  --obs-page-surface-soft: #fbfcfe;
  --obs-page-border: #e2e8f2;
  --obs-page-border-strong: #d4deeb;
  --obs-page-text: #172033;
  --obs-page-text-muted: #66758d;
  --obs-page-text-soft: #8a97ac;
  --obs-page-accent: #f65169;
  --obs-page-accent-soft: rgba(246, 81, 105, 0.1);
  --obs-page-blue-soft: #eef6ff;
  --obs-page-blue-border: #d7e7f7;
}
.settings_main_wrapper.obs_overlays_page .obs_overlays_shell {
  overflow: hidden;
}
.settings_main_wrapper.obs_overlays_page .i_settings_wrapper_title {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--obs-page-border);
}
.settings_main_wrapper.obs_overlays_page .obs-overlays-title-meta {
  display: grid;
  gap: 10px;
  max-width: 900px;
}
.settings_main_wrapper.obs_overlays_page .i_settings_wrapper_title_txt {
  color: var(--obs-page-text);
}
.settings_main_wrapper.obs_overlays_page .i_settings_wrapper_title_txt svg {
  padding: 10px;
  border-radius: 14px;
  background: var(--obs-page-accent-soft);
  fill: var(--obs-page-accent);
}
.settings_main_wrapper.obs_overlays_page .obs-overlays-title-note {
  color: var(--obs-page-text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-wrap {
  margin: 16px 24px 18px;
  padding: 18px 20px 20px;
  border: 1px solid var(--obs-page-border);
  border-radius: 22px;
  background: var(--obs-page-surface-soft);
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-title {
  color: var(--obs-page-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-note {
  max-width: 760px;
  margin-top: 8px;
  margin-bottom: 12px;
  color: var(--obs-page-text-muted);
  font-size: 13px;
  line-height: 1.65;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-input {
  height: 50px;
  border-color: var(--obs-page-border);
  border-radius: 16px;
  background: var(--obs-page-surface);
  color: var(--obs-page-text);
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-input:hover {
  border-color: var(--obs-page-border-strong);
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-input:focus {
  border-color: #8ab4f8;
  box-shadow: 0 0 0 3px rgba(138, 180, 248, 0.18);
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-search-suggestions {
  border-color: var(--obs-page-border);
  border-radius: 14px;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}
.settings_main_wrapper.obs_overlays_page .i_settings_wrapper_items {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 16px;
  padding: 16px 24px 24px;
}
.settings_main_wrapper.obs_overlays_page .i_settings_wrapper_items > .i_settings_wrapper_item {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--obs-page-border);
  border-radius: 22px;
  background: var(--obs-page-surface);
}
.settings_main_wrapper.obs_overlays_page .i_settings_wrapper_items > .i_settings_wrapper_item:nth-child(n + 3),
.settings_main_wrapper.obs_overlays_page .obs-overlay-panels {
  grid-column: 1/-1;
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title {
  margin-bottom: 10px;
  color: var(--obs-page-text);
  font-size: 14px;
  font-weight: 800;
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title_for {
  display: grid;
  gap: 10px;
}
.settings_main_wrapper.obs_overlays_page .box_not {
  color: var(--obs-page-text-muted);
  font-size: 12px;
  line-height: 1.65;
}
.settings_main_wrapper.obs_overlays_page #obsOverlayCreateForm {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.settings_main_wrapper.obs_overlays_page .obs_overlay_create_notice {
  width: 100%;
}
.settings_main_wrapper.obs_overlays_page .i_nex_btn_btn {
  min-height: 44px;
  border-radius: 14px;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-tabs {
  gap: 12px;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-tab {
  min-width: 190px;
  padding: 12px 14px;
  border-radius: 16px;
  border-color: var(--obs-page-border);
  background: var(--obs-page-surface-muted);
  box-shadow: none;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-tab:hover {
  border-color: var(--obs-page-border-strong);
  background: var(--obs-page-surface);
  transform: translateY(-1px);
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-tab.is-active {
  border-color: #b7cff8;
  background: var(--obs-page-surface);
  box-shadow: inset 0 0 0 1px rgba(183, 207, 248, 0.45);
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-tab-label {
  color: var(--obs-page-text);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-tab-token {
  color: #456caa;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-tab-status {
  color: var(--obs-page-text-muted);
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-panels {
  display: grid;
  gap: 16px;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-panel {
  border: 1px solid var(--obs-page-border);
  border-radius: 24px;
  background: var(--obs-page-surface);
  overflow: hidden;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-panel > .i_settings_wrapper_item {
  border: 0;
  border-top: 1px solid var(--obs-page-border);
  border-radius: 0;
  background: transparent;
  padding: 18px 22px;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-panel > .i_settings_wrapper_item:first-child {
  border-top: 0;
}
.settings_main_wrapper.obs_overlays_page .i_settings_wrapper_item.obs-collapsible-item {
  padding-top: 18px;
  padding-bottom: 18px;
}
.settings_main_wrapper.obs_overlays_page .obs-collapsible-title {
  padding-right: 40px;
}
.settings_main_wrapper.obs_overlays_page .obs-collapsible-title:after {
  width: 28px;
  height: 28px;
  color: #53627e;
  background: var(--obs-page-surface-muted);
  border: 1px solid var(--obs-page-border);
  font-size: 16px;
}
.settings_main_wrapper.obs_overlays_page .flnm[readonly] {
  background: var(--obs-page-surface-muted);
  color: var(--obs-page-text);
}
.settings_main_wrapper.obs_overlays_page .obs-layout-editor,
.settings_main_wrapper.obs_overlays_page .obs-styles-editor {
  gap: 16px;
}
.settings_main_wrapper.obs_overlays_page .obs-layout-toolbar,
.settings_main_wrapper.obs_overlays_page .obs-styles-actions {
  gap: 10px;
}
.settings_main_wrapper.obs_overlays_page .obs-layout-canvas {
  max-width: 860px;
  border-color: var(--obs-page-border);
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fc 100%);
}
.settings_main_wrapper.obs_overlays_page .obs-layout-canvas:before {
  background-image: linear-gradient(transparent 31px, rgba(100, 116, 139, 0.08) 32px), linear-gradient(90deg, transparent 31px, rgba(100, 116, 139, 0.08) 32px);
}
.settings_main_wrapper.obs_overlays_page .obs-layout-widget {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}
.settings_main_wrapper.obs_overlays_page .obs-layout-control,
.settings_main_wrapper.obs_overlays_page .obs-style-section {
  border-color: var(--obs-page-border);
  border-radius: 16px;
  padding: 14px;
  background: var(--obs-page-surface-muted);
}
.settings_main_wrapper.obs_overlays_page .obs-layout-control-title,
.settings_main_wrapper.obs_overlays_page .obs-style-section summary {
  color: var(--obs-page-text);
  font-size: 13px;
  font-weight: 800;
}
.settings_main_wrapper.obs_overlays_page .obs-layout-control label,
.settings_main_wrapper.obs_overlays_page .obs-style-fields label,
.settings_main_wrapper.obs_overlays_page .obs-overlay-layout-note,
.settings_main_wrapper.obs_overlays_page .obs-overlay-styles-note,
.settings_main_wrapper.obs_overlays_page .obs-layout-coords {
  color: var(--obs-page-text-muted);
}
.settings_main_wrapper.obs_overlays_page .obs-layout-control input,
.settings_main_wrapper.obs_overlays_page .obs-style-fields input,
.settings_main_wrapper.obs_overlays_page .obs-style-fields select {
  border-color: var(--obs-page-border);
  border-radius: 10px;
  background: var(--obs-page-surface);
  color: var(--obs-page-text);
}
.settings_main_wrapper.obs_overlays_page .obs-color-options {
  border-color: var(--obs-page-border);
  border-radius: 12px;
  background: var(--obs-page-surface);
}
.settings_main_wrapper.obs_overlays_page .obs-color-option {
  border-color: rgba(15, 23, 42, 0.14);
}
.settings_main_wrapper.obs_overlays_page .obs-color-selected {
  color: var(--obs-page-text-muted);
}
.settings_main_wrapper.obs_overlays_page .obs-style-range-slider {
  background-color: #dce6f5;
}
.settings_main_wrapper.obs_overlays_page .obs-style-range-slider::-webkit-slider-thumb,
.settings_main_wrapper.obs_overlays_page .obs-style-range-slider::-moz-range-thumb {
  background: #4a84df;
  box-shadow: 0 0 0 1px rgba(74, 132, 223, 0.35);
}
.settings_main_wrapper.obs_overlays_page .obs-style-range-slider::-moz-range-track {
  background-color: #dce6f5;
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title_for > .flnm,
.settings_main_wrapper.obs_overlays_page .obs-layout-control input,
.settings_main_wrapper.obs_overlays_page .obs-style-fields input,
.settings_main_wrapper.obs_overlays_page .obs-style-fields select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--obs-page-border);
  border-radius: 14px;
  background: var(--obs-page-surface);
  color: var(--obs-page-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title_for > .flnm:hover,
.settings_main_wrapper.obs_overlays_page .obs-layout-control input:hover,
.settings_main_wrapper.obs_overlays_page .obs-style-fields input:hover,
.settings_main_wrapper.obs_overlays_page .obs-style-fields select:hover {
  border-color: var(--obs-page-border-strong);
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title_for > .flnm:focus,
.settings_main_wrapper.obs_overlays_page .obs-layout-control input:focus,
.settings_main_wrapper.obs_overlays_page .obs-style-fields input:focus,
.settings_main_wrapper.obs_overlays_page .obs-style-fields select:focus {
  border-color: #4a84df;
  box-shadow: 0 0 0 3px rgba(74, 132, 223, 0.14);
  outline: none;
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title_for > .flnm::placeholder,
.settings_main_wrapper.obs_overlays_page .obs-layout-control input::placeholder,
.settings_main_wrapper.obs_overlays_page .obs-style-fields input::placeholder {
  color: var(--obs-page-text-soft);
  font-weight: 500;
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title_for > select.flnm,
.settings_main_wrapper.obs_overlays_page .obs-style-fields select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%2366758d' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}
.settings_main_wrapper.obs_overlays_page .flnm[readonly] {
  background: var(--obs-page-surface-muted);
  color: var(--obs-page-text);
  box-shadow: none;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-tier-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--obs-page-border);
  border-radius: 16px;
  background: var(--obs-page-surface-muted);
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-tier-row:last-of-type {
  margin-bottom: 0;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-tier-field {
  min-width: 0;
  display: grid;
  gap: 8px;
}
.settings_main_wrapper.obs_overlays_page .obs-overlay-field-note {
  color: var(--obs-page-text-soft);
  font-size: 11px;
  line-height: 1.5;
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title_for label.box_not {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--obs-page-border);
  border-radius: 14px;
  background: var(--obs-page-surface-muted);
  color: var(--obs-page-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title_for label.box_not:hover {
  border-color: var(--obs-page-border-strong);
  background: var(--obs-page-surface-soft);
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title_for label.box_not input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  border: 1.5px solid #bccadd;
  border-radius: 6px;
  background: var(--obs-page-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  flex: 0 0 18px;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title_for label.box_not input[type="checkbox"]:hover {
  border-color: #92aad0;
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title_for label.box_not input[type="checkbox"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(74, 132, 223, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  outline: none;
}
.settings_main_wrapper.obs_overlays_page .i_settings_item_title_for label.box_not input[type="checkbox"]:checked {
  border-color: #4a84df;
  background-color: #4a84df;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.25L6.5 11.25L12.5 5.25' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  box-shadow: none;
}
@media (max-width: 1180px) {
  .settings_main_wrapper.obs_overlays_page .i_settings_wrapper_items {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 768px) {
  .settings_main_wrapper.obs_overlays_page .i_settings_wrapper_title {
    padding: 20px 18px 18px;
  }
  .settings_main_wrapper.obs_overlays_page .obs-overlay-search-wrap,
  .settings_main_wrapper.obs_overlays_page .i_settings_wrapper_items {
    margin-left: 16px;
    margin-right: 16px;
  }
  .settings_main_wrapper.obs_overlays_page .i_settings_wrapper_items {
    padding: 0 0 16px;
  }
  .settings_main_wrapper.obs_overlays_page .obs-overlay-search-wrap {
    padding: 16px;
  }
  .settings_main_wrapper.obs_overlays_page .obs-overlay-panel > .i_settings_wrapper_item {
    padding: 16px;
  }
  .settings_main_wrapper.obs_overlays_page .obs-layout-canvas {
    max-width: 100%;
  }
}
.scheduled_live_page {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.scheduled_live_header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scheduled_live_page_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.scheduled_live_page_actions .new_s_one {
  margin: 0;
  border-radius: 12px;
  flex: 1 1 240px;
}
.scheduled_live_title_card {
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.scheduled_live_title_card .live_title_page {
  margin: 0;
  padding-bottom: 0;
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: 16px;
  color: #1f2937;
}
.scheduled_live_title_card .live_title_page svg {
  width: 26px;
  height: 26px;
  margin-right: 8px;
}
.scheduled_live_page .scheduled_live_streamings_list_container {
  margin-top: 6px;
}
.scheduled_live_page .scheduled_live_empty {
  grid-column: 1/-1;
  border: 1px dashed #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.05);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 220px;
}
.scheduled_live_page .scheduled_live_empty .noPostIcon svg {
  width: 64px;
  height: 64px;
  fill: #cbd5e1;
}
.scheduled_live_page .scheduled_live_empty .noPostNote {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
  text-align: center;
  max-width: 220px;
}
.scheduled_live_streamings_list_container {
  display: grid;
  gap: 16px;
}
.scheduled_live_card {
  border: 1px solid #e6eaf2;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
}
.scheduled_live_link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.scheduled_live_cover {
  position: relative;
  height: 150px;
  background-size: cover;
  background-position: center;
}
.scheduled_live_badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0f172a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}
.scheduled_live_avatar {
  position: absolute;
  bottom: -18px;
  left: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.15);
}
.scheduled_live_body {
  padding: 28px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scheduled_live_creator {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.scheduled_live_title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}
.scheduled_live_time,
.scheduled_live_price {
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: #475569;
  align-items: center;
}
.scheduled_live_time .label,
.scheduled_live_price .label {
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.scheduled_live_countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
  color: #0f172a;
}
.scheduled_live_countdown_value {
  font-weight: 700;
  min-width: 64px;
  text-align: left;
}
.scheduled_live_countdown_label {
  color: #64748b;
  font-weight: 600;
}
.scheduled_live_actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px 16px;
  gap: 10px;
  flex-wrap: wrap;
}
.scheduled_live_view_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  background: #0f172a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #0f172a;
}
.scheduled_live_view_btn:hover {
  background: #111827;
}
.scheduled_live_delete_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: #ffffff;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #fecaca;
  cursor: pointer;
}
.scheduled_live_delete_btn:hover {
  background: #fee2e2;
}
.profile_scheduled_lives_card {
  width: 100%;
  margin-bottom: 16px;
}
.profile_scheduled_lives_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}
.profile_scheduled_lives_title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}
.profile_scheduled_lives_link {
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}
.profile_scheduled_lives_list {
  display: grid;
  gap: 16px;
}
.profile_scheduled_live_item {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e6eaf2;
}
.profile_scheduled_live_link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.profile_scheduled_live_cover {
  position: relative;
  height: 190px;
  background-size: cover;
  background-position: center;
}
.profile_scheduled_live_cover:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(15, 23, 42, 0.35) 0%,
    rgba(15, 23, 42, 0) 55%
  );
}
.profile_scheduled_live_date {
  position: absolute;
  left: 16px;
  bottom: -18px;
  width: 68px;
  height: 68px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 14px 20px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.profile_scheduled_live_day {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}
.profile_scheduled_live_month {
  font-size: 12px;
  font-weight: 700;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.profile_scheduled_live_body {
  padding: 30px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile_scheduled_live_title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
.profile_scheduled_live_time {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.profile_scheduled_live_time span {
  color: #0f172a;
  font-weight: 700;
}
.profile_scheduled_live_actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 18px 16px;
}
.profile_scheduled_live_view_btn {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  background: #f1f5f9;
  padding: 7px 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.profile_scheduled_live_view_btn:hover {
  background: #e2e8f0;
}
.scheduled_post_card {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
}
.scheduled_post_link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.scheduled_post_link:hover {
  text-decoration: none;
}
.scheduled_post_cover {
  position: relative;
  height: 190px;
  background-size: cover;
  background-position: center;
}
.scheduled_post_cover:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(15, 23, 42, 0.35) 0%,
    rgba(15, 23, 42, 0) 55%
  );
}
.scheduled_post_date {
  position: absolute;
  left: 16px;
  bottom: -18px;
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.scheduled_post_day {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}
.scheduled_post_month {
  font-size: 12px;
  font-weight: 700;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.scheduled_post_body {
  padding: 30px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #ffffff;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.scheduled_post_title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  transition: color 0.2s ease;
}
.scheduled_post_time {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  transition: color 0.2s ease;
}
.scheduled_post_link:hover .scheduled_post_body {
  background: #f8fafc;
}
.scheduled_post_link:hover .scheduled_post_title,
.scheduled_post_link:hover .scheduled_post_time {
  color: #4e6af1;
}
@media (min-width: 720px) {
  .scheduled_live_streamings_list_container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .scheduled_live_streamings_list_container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.trend-hashtags-widget .trend-hashtags {
  padding: 12px 14px 16px 14px;
  border-radius: 14px;
  border: 1px solid #e6eaf3;
  background: #f6f8fc;
}

.trend-hashtags__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.trend-hashtags__tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(24, 32, 56, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.trend-hashtags__tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(24, 32, 56, 0.16);
  opacity: 0.95;
}

.trend-hashtag--coral {
  background: #e35d4f;
}

.trend-hashtag--amber {
  background: #f2a341;
}

.trend-hashtag--mint {
  background: #48b88d;
}

.trend-hashtag--sky {
  background: #4a96d6;
}

.trend-hashtag--violet {
  background: #8b6ad6;
}

.trend-hashtag--orange {
  background: #f08b3f;
}

.trend-hashtag--teal {
  background: #3aa7a3;
}

.trend-hashtag--rose {
  background: #d95a86;
}
.trend-hashtags-header {
  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;
}

.trend-hashtags-header__title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.trend-hashtags-header__btn {
  border: 1px solid #d6dce8;
  background: #f2f5fb;
  color: #3b4a66;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.trend-hashtags-header__btn:hover {
  background: #e7ecf6;
  border-color: #c8d0e0;
}

.trend-top100-modal .i_modal_in_in {
  max-width: 640px;
}

.trend-top100-modal .i_modal_content {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.trend-top100-modal .popClose {
  position: static;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid #dbe4f0;
  background: #ffffff;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(148, 163, 184, 0.18);
}

.trend-top100-modal .popClose:hover {
  color: #0f172a;
  border-color: #cbd5e1;
  background: #f8fafc;
}

.trend-top100-modal .popClose svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.trend-top100-header {
  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: 18px 20px 16px;
  border-bottom: 1px solid #e8eef6;
  background: linear-gradient(180deg, #fdfefe 0%, #f7fbff 100%);
}

.trend-top100-title {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.trend-top100-body {
  margin: 18px 20px 20px;
  max-height: 520px;
  overflow: auto;
  padding: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fd 100%);
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.trend-top100-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.trend-top100-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: #94a3b8;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
  color: #ffffff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.trend-top100-item:hover,
.trend-top100-item:focus-within {
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.trend-top100-rank {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  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;
}

.trend-top100-tag {
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52vw;
}

.trend-top100-tag:hover {
  text-decoration: underline;
}

.trend-top100-count {
  margin-left: 2px;
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.22);
  font-size: 11px;
  color: #ffffff;
  font-weight: 700;
}

.trend-top100-empty {
  padding: 18px 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px dashed #dbe2ee;
  color: #64748b;
  font-weight: 600;
  text-align: center;
}

.trend-top100-item:nth-child(8n + 1) {
  background: #e35d4f;
}

.trend-top100-item:nth-child(8n + 2) {
  background: #f2a341;
}

.trend-top100-item:nth-child(8n + 3) {
  background: #48b88d;
}

.trend-top100-item:nth-child(8n + 4) {
  background: #4a96d6;
}

.trend-top100-item:nth-child(8n + 5) {
  background: #8b6ad6;
}

.trend-top100-item:nth-child(8n + 6) {
  background: #f08b3f;
}

.trend-top100-item:nth-child(8n + 7) {
  background: #3aa7a3;
}

.trend-top100-item:nth-child(8n + 8) {
  background: #d95a86;
}

@media (max-width: 640px) {
  .trend-top100-modal .i_modal_content {
    border-radius: 24px;
  }

  .trend-top100-header {
    padding: 16px 16px 14px;
  }

  .trend-top100-title {
    font-size: 22px;
  }

  .trend-top100-body {
    margin: 16px;
    border-radius: 18px;
  }
}

.i_link_preview {
  margin-top: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.i_link_preview_link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.i_link_preview_image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f3f4f6;
}

.i_link_preview_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.i_link_preview_body {
  padding: 10px 12px 12px;
  background: #f0f2f5;
}

.i_link_preview_domain {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.i_link_preview_title {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
}

.i_link_preview_desc {
  margin-top: 4px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.4;
  max-height: 2.8em;
  overflow: hidden;
}

/* Age verification page */
.age-verif-page {
  position: relative;
}

.age-verif-page .i_become_creator_container.age-verif-card {
  max-width: 920px;
  margin-top: 70px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  -webkit-box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
}

.age-verif-page .i_become_creator_container.age-verif-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#6a8fcb),
    to(#f65169)
  );
  background: linear-gradient(90deg, #6a8fcb 0%, #f65169 100%);
}

.age-verif-page .i_become_creator_container.age-verif-card:after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(106, 143, 203, 0.2) 0%,
    rgba(106, 143, 203, 0) 70%
  );
  pointer-events: none;
}

.age-verif-page .age-verif-content {
  position: relative;
  z-index: 1;
}

.age-verif-page .age-verif-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}

.age-verif-page .age-verif-intro {
  background: -webkit-linear-gradient(310deg, #f7f8fb 0%, #eef1f7 100%);
  background: linear-gradient(140deg, #f7f8fb 0%, #eef1f7 100%);
  border-bottom: 1px solid #e4e8f0;
}

.age-verif-page .age-verif-header {
  padding: 32px 30px;
  gap: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.age-verif-page .age-verif-header .i_login_box_wellcome_icon {
  padding: 18px 20px;
  -webkit-transform: translateY(-2%) rotate(12deg);
  transform: translateY(-2%) rotate(12deg);
  background-color: rgba(106, 143, 203, 0.16);
  border: 1px solid rgba(106, 143, 203, 0.32);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.age-verif-page .age-verif-header .i_login_box_wellcome_icon svg {
  width: 42px;
  height: 42px;
  fill: #4d6fb6;
}

.age-verif-page .age-verif-header .i_lBack {
  font-size: 28px;
}

.age-verif-page .age-verif-header .i_lnot {
  font-size: 14px;
  color: #5b647a;
  line-height: 1.5;
}

.age-verif-page .age-verif-container {
  padding: 28px 30px 34px;
}

.age-verif-page .age-verif-panel {
  background: #fbfcfe;
  border: 1px solid #e6e9f1;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
}

.age-verif-page .age-verif-status-row {
  -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;
}

.age-verif-page .age-verif-status-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6c738a;
}

.age-verif-page .age-verif-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.age-verif-page .age-verif-badge--ok {
  background: #e7f6ef;
  border: 1px solid #bce8d2;
  color: #0f766e;
}

.age-verif-page .age-verif-badge--warn {
  background: #fff4e5;
  border: 1px solid #f6d3a8;
  color: #b45309;
}

.age-verif-page .age-verif-required {
  margin-top: 12px;
  padding: 10px 12px;
  background: #fff1f3;
  border: 1px solid #ffd2db;
  border-radius: 10px;
  color: #7a3340;
  font-size: 13px;
}

.age-verif-page .age-verif-message {
  margin-bottom: 16px;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
}

.age-verif-page .age-verif-message--success {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.age-verif-page .age-verif-message--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.age-verif-page .age-verif-action .i_login_button {
  margin-top: 0;
  border-radius: 12px;
  background: -webkit-linear-gradient(315deg, #f65169 0%, #ff7a8e 100%);
  background: linear-gradient(135deg, #f65169 0%, #ff7a8e 100%);
  -webkit-box-shadow: 0 12px 24px rgba(246, 81, 105, 0.28);
  box-shadow: 0 12px 24px rgba(246, 81, 105, 0.28);
}

.age-verif-page .age-verif-action .i_login_button:hover {
  -webkit-box-shadow: 0 14px 28px rgba(246, 81, 105, 0.35);
  box-shadow: 0 14px 28px rgba(246, 81, 105, 0.35);
}

.age-verif-page .age-verif-action .i_login_button button {
  padding: 14px 12px;
  letter-spacing: 0.02em;
}

.age-verif-page .age-verif-action .i_login_button button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.age-verif-page .age-verif-inline-message {
  margin-top: 10px;
  min-height: 18px;
  color: #6b7280;
  font-size: 12px;
}

.age-verif-page .age-verif-card {
  -webkit-animation: age-verif-enter 0.45s ease-out;
  animation: age-verif-enter 0.45s ease-out;
}

@-webkit-keyframes age-verif-enter {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes age-verif-enter {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .age-verif-page .age-verif-layout {
    gap: 16px;
  }
  .age-verif-page .age-verif-intro {
    border-bottom: 1px solid #e4e8f0;
  }
  .age-verif-page .i_become_creator_container.age-verif-card {
    margin-top: 40px;
  }
  .age-verif-page .age-verif-header {
    padding: 26px 22px;
  }
  .age-verif-page .age-verif-container {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .age-verif-page .age-verif-card {
    -webkit-animation: none;
    animation: none;
  }
}

/* Account delete page */
.account-delete-page .i_settings_wrapper_in {
  border: 1px solid #edf1f6;
}

.account-delete-page .account-delete-page-header {
  background: linear-gradient(180deg, #f7f9fc 0%, #f2f5fa 100%);
  border-bottom: 1px solid #e5ebf4;
}

.account-delete-page .account-delete-page-header .i_settings_wrapper_title_txt {
  gap: 8px;
  padding-bottom: 0;
}

.account-delete-page
  .account-delete-page-header
  .i_settings_wrapper_title_txt
  span {
  line-height: 1.2;
}

.account-delete-page .account-delete-page-note {
  margin-top: 8px;
  font-size: 13px;
  color: #6c7691;
  font-weight: 500;
  line-height: 1.45;
}

.account-delete-page .account-delete-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.account-delete-page .account-delete-panel {
  margin-bottom: 0;
  background: #ffffff;
  border: 1px solid #e3eaf4;
  border-radius: 14px;
  padding: 16px;
}

.account-delete-page .account-delete-panel.pref_top {
  margin-top: 0;
}

.account-delete-page .account-delete-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.account-delete-page .account-delete-panel-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.account-delete-page .account-delete-panel-icon svg {
  width: 18px;
  height: 18px;
}

.account-delete-page .account-delete-panel-icon-export {
  background: #edf5ff;
  color: #1c67b6;
}

.account-delete-page .account-delete-panel-icon-danger {
  background: #fff2f2;
  color: #c62828;
}

.account-delete-page .account-delete-panel-icon svg path {
  fill: currentColor !important;
}

.account-delete-page .account-delete-panel-title-wrap {
  min-width: 0;
}

.account-delete-page .account-delete-panel-title {
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.3;
}

.account-delete-page .account-delete-panel-desc {
  color: #6c7691;
  font-size: 13px;
  line-height: 1.45;
}

.account-delete-page .account-delete-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 8px;
}

.account-delete-page .account-delete-meta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f3f6fb;
  color: #50607f;
  font-size: 12px;
  font-weight: 600;
}

.account-delete-page .account-delete-meta-pill-danger {
  background: #fff2f2;
  color: #c62828;
}

.account-delete-page .account-delete-meta-text {
  margin-top: 4px;
  color: #667391;
  font-size: 13px;
  line-height: 1.4;
}

.account-delete-page .account-delete-danger-note {
  margin: 4px 0 10px;
  color: #6c7691;
  font-size: 13px;
  line-height: 1.45;
}

.account-delete-page .account-delete-danger-warning {
  margin: 6px 0 10px;
  background: #fff3f3;
  color: #c62828;
  border: 1px solid #ffd9d9;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}

.account-delete-page .account-delete-panel-actions {
  margin-top: 12px;
  display: flex;
  align-items: stretch;
  gap: 10px;
  justify-content: flex-start;
  flex-direction: column;
}

.account-delete-page .account-delete-page-btn {
  min-width: 180px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  width: 100%;
}

.account-delete-page .account-delete-page-btn-primary {
  background: #1f73be;
  color: #ffffff;
  border-color: #1f73be;
}

.account-delete-page .account-delete-page-btn-primary:hover {
  background: #1968ae;
  border-color: #1968ae;
}

.account-delete-page .account-delete-page-btn-secondary {
  background: #eff4fb;
  color: #345f98;
  border-color: #d6e1f2;
}

.account-delete-page .account-delete-page-btn-secondary:hover {
  background: #e5eef9;
}

.account-delete-page .account-delete-page-btn-danger {
  background: #d32f2f;
  color: #ffffff;
  border-color: #d32f2f;
}

.account-delete-page .account-delete-page-btn-danger:hover {
  background: #bf2929;
  border-color: #bf2929;
}

.account-delete-page .account-export-feedback,
.account-delete-page .account-delete-feedback {
  border: 0;
  padding: 0;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .account-delete-page .account-delete-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .account-delete-page .account-delete-panel {
    padding: 14px;
  }
  .account-delete-page .account-delete-panel-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .account-delete-page .account-delete-page-btn {
    width: 100%;
    min-width: 0;
  }
}

/* Account deletion password modal */
.account-delete-password-modal .account-delete-modal-card {
  max-width: 520px;
}

.account-delete-modal-content {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.account-delete-modal-header {
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  padding: 18px 22px;
  border-bottom: 1px solid #edf1f6;
}

.account-delete-modal-close-btn {
  border: 0;
  background: transparent;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.account-delete-modal-close-btn svg {
  width: 18px;
  height: 18px;
}

.account-delete-modal-close-btn:hover {
  background: #e9edf3;
}

.account-delete-modal-body {
  padding: 22px;
}

.account-delete-modal-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff2f2;
  color: #c62828;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.4;
}

.account-delete-modal-warning svg {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}

.account-delete-password-title {
  display: block;
  margin-top: 12px;
  margin-bottom: 8px;
  color: #4a587c;
  font-size: 14px;
  font-weight: 600;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.account-delete-password-input-wrap {
  width: 100%;
}

.account-delete-password-input {
  width: 100%;
  min-width: 0;
  border: 1px solid #d8e0ef;
  background-color: #f6f8fc;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #1f2f4a;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.account-delete-password-input:focus {
  border-color: #8fb5ea;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(38, 121, 219, 0.15);
}

.account-delete-password-input::placeholder {
  color: #8791a8;
  font-weight: 400;
}

.account-delete-modal-error {
  margin-top: 8px;
  font-size: 13px;
  color: #c62828;
  font-weight: 500;
}

.account-delete-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.account-delete-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  min-width: 180px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.account-delete-btn:hover {
  transform: translateY(-1px);
}

.account-delete-btn:active {
  transform: translateY(0);
}

.account-delete-btn-secondary {
  background: #eef3fb;
  color: #3062a8;
  border-color: #d3def1;
}

.account-delete-btn-secondary:hover {
  background: #e4edf9;
}

.account-delete-btn-primary {
  background: #1f73be;
  color: #ffffff;
  border-color: #1f73be;
  box-shadow: 0 8px 18px rgba(23, 102, 178, 0.22);
}

.account-delete-btn-primary:hover {
  background: #1968ae;
  border-color: #1968ae;
}

@media (max-width: 640px) {
  .account-delete-password-modal .account-delete-modal-card {
    max-width: calc(100% - 20px);
  }
  .account-delete-modal-body {
    padding: 18px;
  }
  .account-delete-modal-actions {
    flex-direction: column;
  }
  .account-delete-btn {
    min-width: 0;
  }
}

.account-delete-page .account-delete-sticky-status {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e2ebf8;
  background: linear-gradient(180deg, #f6f9ff 0%, #f1f6ff 100%);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.account-delete-page .account-delete-sticky-status-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f73be;
  background: #e6f0ff;
  flex-shrink: 0;
}

.account-delete-page .account-delete-sticky-status-icon svg {
  width: 18px;
  height: 18px;
}

.account-delete-page .account-delete-sticky-status-icon svg path {
  fill: currentColor !important;
}

.account-delete-page .account-delete-sticky-status-body {
  min-width: 0;
  flex: 1 1 auto;
}

.account-delete-page .account-delete-sticky-status-title {
  font-size: 15px;
  font-weight: 700;
  color: #2a3858;
  line-height: 1.3;
}

.account-delete-page .account-delete-sticky-status-desc {
  font-size: 13px;
  color: #607195;
  margin-top: 2px;
  line-height: 1.4;
}

.account-delete-page .account-delete-sticky-status-count {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8effb;
  color: #325d97;
  font-size: 12px;
  font-weight: 600;
}

.account-delete-page .account-delete-sticky-status-actions {
  width: 220px;
  max-width: 100%;
}

.account-delete-page .account-delete-sticky-cancel-btn {
  width: 100%;
}

.account-delete-page .account-export-delete-notice {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 9px;
  background: #f3f7ff;
  border: 1px solid #dbe8ff;
  color: #4e648b;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

.account-delete-page .account-export-empty-note {
  margin-top: 10px;
  font-size: 13px;
  color: #6b7896;
}

.account-delete-page .account-export-stats {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.account-delete-page .account-export-stat-item {
  border: 1px solid #e3ebf8;
  border-radius: 10px;
  background: #f8fbff;
  padding: 8px 10px;
}

.account-delete-page .account-export-stat-label {
  display: block;
  font-size: 11px;
  color: #7a88a6;
  line-height: 1.2;
  margin-bottom: 4px;
}

.account-delete-page .account-export-stat-item strong {
  display: block;
  font-size: 13px;
  color: #2d3f63;
  line-height: 1.2;
}

.account-delete-password-input-wrap {
  position: relative;
}

.account-delete-password-input-wrap .account-delete-password-field {
  padding-right: 96px;
}

.account-delete-password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 1px solid #d5e1f4;
  background: #ffffff;
  color: #446799;
  border-radius: 8px;
  height: 30px;
  min-width: 68px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.account-delete-password-toggle:hover {
  background: #f3f7ff;
}

.account-delete-password-input.account-delete-confirm-input {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.account-delete-page .account-delete-faq {
  margin-top: 18px;
  border: 1px solid #e4ebf7;
  border-radius: 14px;
  background: #fbfcff;
  padding: 16px;
}

.account-delete-page .account-delete-faq-title {
  font-size: 16px;
  font-weight: 700;
  color: #2f3e60;
  margin-bottom: 10px;
}

.account-delete-page .account-delete-faq-list {
  display: grid;
  gap: 8px;
}

.account-delete-page .account-delete-faq-item {
  border: 1px solid #e6edf8;
  border-radius: 10px;
  background: #ffffff;
  padding: 10px 12px;
}

.account-delete-page .account-delete-faq-q {
  font-size: 13px;
  font-weight: 600;
  color: #334666;
  margin-bottom: 4px;
  line-height: 1.35;
}

.account-delete-page .account-delete-faq-a {
  font-size: 13px;
  color: #667391;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .account-delete-page .account-delete-sticky-status {
    flex-direction: column;
    align-items: flex-start;
  }
  .account-delete-page .account-delete-sticky-status-actions {
    width: 100%;
  }
  .account-delete-page .account-export-stats {
    grid-template-columns: 1fr;
  }
}

.dashboard_earnings_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.dashboard_earnings_cards .chart_row_box {
  width: calc(50% - 8px);
  padding: 0;
}

.dashboard_earnings_cards .chart_row_box:first-child,
.dashboard_earnings_cards .chart_row_box:last-child {
  padding: 0;
}

.dashboard_earnings_cards .chart_row_box_item {
  min-height: 210px;
  padding: 24px;
}

.dashboard_earnings_cards .chart_row_box_item.c4 {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
}

.dashboard_earnings_breakdown {
  flex-direction: column;
  align-items: flex-start;
}

.dashboard_earnings_breakdown .i_settings_item_title {
  width: 100%;
  margin-bottom: 10px;
}

.dashboard_earnings_breakdown .i_settings_item_title_for {
  width: 100%;
  padding-left: 0;
}

@media (max-width: 1024px) {
  .dashboard_earnings_cards .chart_row_box {
    width: 100%;
  }
}

.pwa_install_popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.pwa_install_popup.is-visible {
  display: flex;
}

.pwa_install_popup_overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 20, 34, 0.58);
  z-index: 1;
}

.pwa_install_popup_card {
  position: relative;
  width: min(460px, 94vw);
  border-radius: 16px;
  border: 1px solid #e4e9f2;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(22, 36, 63, 0.22);
  padding: 22px 20px 18px;
  z-index: 2;
}

.pwa_install_popup_close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #8994ad;
  cursor: pointer;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pwa_install_popup_close:hover {
  background: #f3f5f9;
  color: #364056;
}

.pwa_install_popup_close svg {
  width: 13px;
  height: 13px;
}

.pwa_install_popup_title {
  font-size: 20px;
  font-weight: 700;
  color: #1b2437;
  line-height: 1.25;
  margin-bottom: 8px;
  padding-right: 34px;
}

.pwa_install_popup_desc {
  font-size: 14px;
  line-height: 1.55;
  color: #52607a;
  margin-bottom: 16px;
}

.pwa_install_popup_actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.pwa_install_popup_btn {
  border: none;
  border-radius: 11px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.pwa_install_popup_btn_secondary {
  background: #f2f4f8;
  color: #243046;
}

.pwa_install_popup_btn_secondary:hover {
  background: #e6eaf1;
}

.pwa_install_popup_btn_primary {
  background: #f65169;
  color: #ffffff;
}

.pwa_install_popup_btn_primary:hover {
  background: #e34259;
}

@media screen and (max-width: 545px) {
  .pwa_install_popup_card {
    width: min(420px, 95vw);
    padding: 20px 16px 16px;
  }
}

/* Chat UI refinements */
.chat_p_body .chat_left_header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 6;
  background-color: #ffffff;
  border-bottom: 1px solid #eceff6;
}

.chat_p_body .chat_search_box {
  padding: 10px 0 4px;
}

.chat_p_body .chat_left_container .i_message_wrapper:hover {
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.07);
}

.chat_p_body .all_messages {
  padding-top: 10px;
  padding-bottom: 18px;
  scroll-behavior: smooth;
}

.chat_p_body .msg {
  padding: 4px 18px;
}

.chat_p_body .msg_me,
.chat_p_body .msg_friend {
  max-width: min(72%, 640px);
  border-radius: 20px;
  -webkit-border-radius: 20px;
}

.chat_p_body .msg_txt {
  padding: 8px 10px;
}

.chat_p_body .chat-day-separator {
  width: 100%;
  text-align: center;
  margin: 10px 0 8px;
}

.chat_p_body .chat-day-separator-label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background-color: #eef2ff;
  color: #4b5563;
  font-size: 11px;
  font-weight: 600;
}

.chat_p_body .chat-unread-break {
  margin: 8px 18px 4px;
  height: 12px;
  position: relative;
}

.chat_p_body .chat-unread-break::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px dashed #d6dae6;
}

.chat_p_body .chat-unread-break-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #f65169;
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 0;
}

@media screen and (max-width: 700px) {
  .chat_p_body .message_send_form_wrapper {
    position: sticky;
    position: -webkit-sticky;
    bottom: 0;
    z-index: 8;
  }

  .chat_p_body .nanosSend {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-right: 8px;
  }

  .chat_p_body .nanosSend .message_form_plus {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

/* Chat WOW refresh (no shadow) */
.chat_p_body {
  --chat-accent-start: #f65169;
  --chat-accent-end: #fab429;
  --chat-surface: #ffffff;
  --chat-surface-soft: #f4f7ff;
  --chat-border: #e6eaf3;
  --chat-text: #0f172a;
  --chat-text-soft: #5b6477;
}

.chat_p_body .i_chat_wrapper {
  background: linear-gradient(165deg, #ffffff 0%, #f7f9ff 48%, #fef7f2 100%);
}

.chat_p_body .chat_left_container {
  border-right: 1px solid var(--chat-border);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.chat_p_body .chat_left_header {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border-bottom: 1px solid var(--chat-border);
}

.chat_p_body .c_search {
  background-color: #ffffff;
  border: 1px solid var(--chat-border);
  color: var(--chat-text);
}

.chat_p_body .c_search:focus {
  border-color: #f3a1ac;
  background-color: #fffaf8;
}

.chat_p_body .chat_left_container .i_message_wrapper {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid transparent;
}

.chat_p_body .chat_left_container .i_message_wrapper:hover {
  background: linear-gradient(135deg, #ffffff 0%, #fff5ef 100%);
  border-color: #f4d7c6;
}

.chat_p_body .chat_left_container .i_message_wrapper.talking {
  border-color: #f2b49f;
  background: linear-gradient(135deg, #fff9f6 0%, #fff3ea 100%);
}

.chat_p_body .chat_left_container .i_message_wrapper.has_unread {
  border-color: #f8c4b2;
  background: linear-gradient(135deg, #fff8f4 0%, #fff3ea 100%);
}

.chat_p_body .chat_left_container .i_message_owner_name {
  color: var(--chat-text);
}

.chat_p_body .chat_left_container .i_message_i {
  color: var(--chat-text-soft);
}

.chat_p_body .i_message_time {
  color: #7a8398;
}

.chat_p_body .i_message_unread {
  background: linear-gradient(
    120deg,
    var(--chat-accent-start),
    var(--chat-accent-end)
  );
  color: #ffffff;
}

.chat_p_body .chat_middle_container {
  border-left: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(250, 180, 41, 0.12),
      transparent 44%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(246, 81, 105, 0.09),
      transparent 42%
    ),
    #fbfcff;
}

.chat_p_body .conversation_box_header {
  background: linear-gradient(90deg, #ffffff 0%, #fffaf7 100%);
  border-bottom: 1px solid var(--chat-border);
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.chat_p_body .c_u_f_nm a {
  font-size: 15px;
}

.chat_p_body .msg {
  animation: chatMessageRise 0.18s ease both;
}

@keyframes chatMessageRise {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat_p_body .msg_me {
  background: linear-gradient(130deg, #f65169 0%, #ff7a59 55%, #fab429 100%);
  color: #ffffff;
}

.chat_p_body .msg_friend {
  background: #ffffff;
  color: #1d2435;
  border: 1px solid #e7eaf2;
}

.chat_p_body .chat-day-separator-label {
  background: #ffffff;
  border: 1px solid #e7eaf2;
  color: #6b7280;
  letter-spacing: 0.2px;
}

.chat_p_body .chat-unread-break::before {
  border-top: 1px solid #e3e7f0;
}

.chat_p_body .chat-unread-break-dot {
  background: linear-gradient(130deg, #f65169, #fab429);
}

.chat_p_body .message_send_form_wrapper {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border-top: 1px solid var(--chat-border);
}

.chat_p_body .message_text_textarea {
  background-color: #ffffff;
  border: 1px solid #dbe1ef;
}

.chat_p_body .message_text_textarea:focus-within {
  border-color: #f2a9a1;
  background: #fffaf7;
}

.chat_p_body .message_text_textarea textarea {
  color: #1c2433;
}

.chat_p_body .nanosSend .message_form_plus,
.chat_p_body .message_form_items .message_form_plus,
.chat_p_body .sendmes {
  border: 1px solid #e0e5f2;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: #ffffff;
}

.chat_p_body .nanosSend .message_form_plus:hover,
.chat_p_body .message_form_items .message_form_plus:hover,
.chat_p_body .sendmes:hover {
  background: #fff4ef;
  border-color: #f0c1ad;
}

.chat_p_body .nmore,
.chat_p_body .i_message_setting,
.chat_p_body .cSetc {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

@media screen and (max-width: 980px) {
  .chat_p_body .chat_left_container {
    width: 340px;
  }
}

@media screen and (max-width: 700px) {
  .chat_p_body .chat_left_container {
    width: 100%;
    border-right: 0;
  }

  .chat_p_body .conversation_box_header {
    background: linear-gradient(90deg, #ffffff 0%, #fff7f2 100%);
  }

  .chat_p_body .message_send_form_wrapper {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  }

  .chat_p_body .msg_me,
  .chat_p_body .msg_friend {
    max-width: 88%;
  }
}

/* Chat requested corrections */

.chat_p_body .conversation_user_d {
  gap: 8px;
}

.chat_p_body .c_dotdot {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}

.chat_p_body .c_set {
  padding: 9px;
}

.chat_p_body .c_set svg {
  width: 16px;
  height: 16px;
}

.chat_p_body .nanosSend .message_form_plus,
.chat_p_body .message_form_items .message_form_plus,
.chat_p_body .sendmes,
.chat_p_body .message_form_smiley_plus {
  min-width: 34px;
  min-height: 34px;
  width: 34px;
  height: 34px;
}

.chat_p_body .msg_me {
  background: rgb(0, 153, 255);
  background-image: none;
  color: #ffffff;
}

.chat_p_body .msg_friend {
  background: #e4e6eb;
  background-image: none;
  color: #000000;
  border: 0;
}

/* Chat list hard top align fix */
.chat_p_body .chat_left_container {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.chat_p_body .chat_users_wrapper,
.chat_p_body .chat_users_wrapper_results {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
  margin-top: 0 !important;
}

.chat_p_body .chat_users_wrapper .i_message_wrpper,
.chat_p_body .chat_users_wrapper_results .i_message_wrpper {
  margin: 0 0 8px 0 !important;
  -webkit-box-flex: 0 !important;
  -ms-flex: 0 0 auto !important;
  flex: 0 0 auto !important;
}

/* Chat list final top-lock */
.chat_p_body .chat_left_container.flex_ {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

/* Critical fix: keep search results hidden unless explicitly opened */
.chat_p_body .chat_users_wrapper_results.nonePoint {
  display: none !important;
}

/* Mobile restore: keep chat list hidden unless toggled */
@media screen and (max-width: 700px) {
  .chat_p_body .chat_left_container.flex_ {
    display: none !important;
    width: 0 !important;
  }

  .chat_p_body .chat_left_container.flex_.chatDisplay {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100% !important;
  }
}

/* Mobile first conversation selection */
@media screen and (max-width: 700px) {
  .chat_p_body.chat_no_conversation .i_chat_wrapper {
    display: block !important;
    min-height: calc(100vh - 78px);
    background: var(--chat-shell, #ffffff);
  }

  .chat_p_body.chat_no_conversation .chat_left_container.flex_ {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 1;
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: calc(100vh - 78px);
    border-right: 0;
    overflow: hidden;
    background: var(--chat-panel, #ffffff);
  }

  .chat_p_body.chat_no_conversation .chat_middle_container {
    display: none !important;
  }

  .chat_p_body.chat_no_conversation .chat_left_header {
    flex: 0 0 auto;
    padding: 16px;
  }

  .chat_p_body.chat_no_conversation .chat_left_container > .chat_users_wrapper,
  .chat_p_body.chat_no_conversation .chat_left_container > .chat_users_wrapper_results {
    flex: 1 1 auto;
    min-height: 0;
    padding: 10px 12px 18px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .chat_p_body.chat_no_conversation .chat_left_container .i_message_wrapper {
    min-height: 72px;
    border-radius: 14px;
  }
}

/* Composer UX upgrade */

.chat_p_body .message_send_form_wrapper .nanosSend.box_not_padding_top {
  padding-top: 0 !important;
}

.chat_p_body .message_form_plus.sendmes .message_pls {
  padding: 10px;
}

.chat_p_body .message_form_plus.ownTooltip {
  position: relative;
}

.chat_p_body .message_form_plus.ownTooltip .ownTooltipWrapper {
  top: auto;
  bottom: calc(100% + 8px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  white-space: nowrap;
}

.chat_p_body .nanosSend .message_form_plus.ownTooltip .ownTooltipWrapper {
  left: 0;
  right: auto;
  transform: none;
  -webkit-transform: none;
}

.chat_p_body .fl_btns {
  top: -58px;
  z-index: 15;
}

.chat_p_body .message_form_plus.chtBtns {
  position: relative;
  overflow: visible;
}

.chat_p_body .message_form_plus.chtBtns > .fl_btns {
  position: absolute;
  top: auto !important;
  bottom: 44px;
  left: 0;
  width: 238px;
  max-width: min(238px, calc(100vw - 24px));
  overflow: visible;
  pointer-events: auto;
  z-index: 40;
}

@media screen and (max-width: 700px) {
  .chat_p_body .nanosSend {
    overflow: visible;
    white-space: normal;
  }

  .chat_p_body .message_form_plus.chtBtns > .fl_btns {
    top: auto !important;
    bottom: 44px;
  }
}

/* Chat conversation polish */
.chat_p_body .conversation_box_header {
  min-height: 86px;
  padding: 18px 24px;
  align-items: center !important;
  background: #ffffff;
}

.chat_p_body .conversation_user_d {
  min-width: 0;
  align-items: center !important;
}

.chat_p_body .conversation_user {
  min-width: 0;
  padding-left: 0;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 2px;
}

.chat_p_body .c_u_f_nm {
  display: flex;
  min-width: 0;
  max-width: 100%;
  line-height: 1;
}

.chat_p_body .c_u_f_nm a {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  line-height: 1.25;
}

.chat_p_body .c_u_f_nm a > .i_plus_s,
.chat_p_body .c_u_f_nm a > .i_plus_g,
.chat_p_body .c_u_f_nm a > .i_plus_gf,
.chat_p_body .c_u_f_nm a > .i_plus_staff,
.chat_p_body .c_u_f_nm a > .staff_role_badge {
  display: inline-flex !important;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin: 0;
  vertical-align: middle;
}

.chat_p_body .c_u_f_nm a > .i_plus_s svg,
.chat_p_body .c_u_f_nm a > .i_plus_g svg,
.chat_p_body .c_u_f_nm a > .i_plus_gf svg,
.chat_p_body .c_u_f_nm a > .i_plus_staff svg,
.chat_p_body .c_u_f_nm a > .staff_role_badge svg {
  display: block;
  width: 16px;
  height: 16px;
}

.chat_p_body .message_send_form_wrapper {
  overflow: visible;
  gap: 10px;
  padding: 12px 0 calc(14px + env(safe-area-inset-bottom));
  flex-basis: auto;
}

.chat_p_body .message_send_form_wrapper > .tabing_non_justify.flex_ {
  align-items: center !important;
  box-sizing: border-box;
  padding: 0 16px;
}

.chat_p_body .message_form_items {
  gap: 10px;
  align-items: center !important;
}

.chat_p_body .message_text_textarea {
  min-height: 52px;
  padding: 0 50px 0 16px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  align-items: center;
}

.chat_p_body .message_text_textarea textarea.mSize {
  min-height: 50px;
  height: 50px;
  padding: 14px 2px;
  font-size: 15px;
  line-height: 1.45;
}

.chat_p_body .message_smiley {
  right: 7px;
  bottom: 7px;
}

.chat_p_body .message_form_plus.sendmes {
  width: 50px !important;
  min-width: 50px !important;
  min-height: 52px !important;
  border-radius: 16px;
  -webkit-border-radius: 16px;
}

.chat_p_body .nanosSend {
  gap: 10px;
  box-sizing: border-box;
  min-height: 58px;
  padding: 10px 16px 8px !important;
  overflow: visible;
}

.chat_p_body .nanosSend .message_form_plus,
.chat_p_body .message_form_smiley_plus {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
}

.chat_p_body .message_form_plus.ownTooltip .ownTooltipWrapper,
.chat_p_body .nanosSend .message_form_plus.ownTooltip .ownTooltipWrapper {
  top: auto !important;
  bottom: calc(100% + 14px) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) translateY(-4px) !important;
  -webkit-transform: translateX(-50%) translateY(-4px) !important;
  max-width: min(280px, calc(100vw - 32px));
  padding: 8px 12px;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  line-height: 1.25;
  pointer-events: none;
}

@media screen and (max-width: 700px) {
  .chat_p_body .conversation_box_header {
    min-height: 74px;
    padding: 12px 14px;
  }

  .chat_p_body .message_send_form_wrapper {
    padding: 10px 0 calc(12px + env(safe-area-inset-bottom));
  }

  .chat_p_body .message_send_form_wrapper > .tabing_non_justify.flex_ {
    padding: 0 12px;
  }

  .chat_p_body .nanosSend {
    min-height: 54px;
    padding: 8px 12px 6px !important;
  }

  .chat_p_body .message_text_textarea {
    min-height: 48px;
    padding-left: 14px;
  }

  .chat_p_body .message_text_textarea textarea.mSize {
    min-height: 46px;
    height: 46px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .chat_p_body .message_form_plus.ownTooltip .ownTooltipWrapper,
  .chat_p_body .nanosSend .message_form_plus.ownTooltip .ownTooltipWrapper {
    bottom: calc(100% + 12px) !important;
  }
}

/* Message action menu positioning fix */
.chat_p_body .me_msg_plus,
.chat_p_body .msg:last-child .msg_me .me_btns_cont .me_msg_plus {
  top: auto !important;
  bottom: calc(100% + 8px) !important;
  right: -4px !important;
  width: auto !important;
  min-width: 170px !important;
  max-width: 190px !important;
  padding: 4px !important;
  border: 1px solid #dbe2ef;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  z-index: 60 !important;
}

.chat_p_body .me_msg_plus .i_post_menu_item_out {
  padding: 9px 12px !important;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  font-size: 14px;
  line-height: 1.2;
  color: #2a3143;
  gap: 8px;
}

.chat_p_body .me_msg_plus .i_post_menu_item_out svg {
  width: 16px;
  height: 16px;
  margin-right: 0;
  fill: #7c879f;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.chat_p_body .me_msg_plus .i_post_menu_item_out:hover {
  background-color: #f4f7fc;
}

@media screen and (max-width: 700px) {
  .chat_p_body .me_msg_plus,
  .chat_p_body .msg:last-child .msg_me .me_btns_cont .me_msg_plus {
    right: 0 !important;
    min-width: 156px !important;
    max-width: 170px !important;
  }

  .chat_p_body .me_msg_plus .i_post_menu_item_out {
    padding: 8px 10px !important;
    font-size: 13px;
  }
}

/* Giphy search */
.giphy_search_bar {
  width: 100%;
}

.giphy_search_form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.giphy_search_input {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 14px;
  border: 1px solid #e2e7f1;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: #172033;
  font-size: 14px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.giphy_search_input:focus {
  border-color: #f0b09f;
  background: #fffdfb;
  box-shadow: 0 0 0 3px rgba(246, 81, 105, 0.08);
  outline: none;
}

.giphy_search_btn {
  height: 38px;
  padding: 0 14px;
  border: 1px solid #f0d2c8;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7f4 0%, #fff1ea 100%);
  color: #c54d5d;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.giphy_search_btn:hover {
  transform: translateY(-1px);
  border-color: #e6b4a4;
  background: linear-gradient(135deg, #fff3ee 0%, #ffe8de 100%);
}

.giphy_search_btn:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.giphy_results_container,
.giphy_results_container_conversation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.giphy_results_container .rGif,
.giphy_results_container_conversation .mrGif {
  width: 100%;
  height: 124px;
  object-fit: cover;
  border-radius: 14px;
  background: #eef2f8;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    opacity 0.16s ease;
}

.giphy_results_container .rGif:hover,
.giphy_results_container_conversation .mrGif:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(20, 32, 61, 0.12);
}

.no_gif_found,
.no-gif-found {
  grid-column: 1 / -1;
  padding: 18px 14px;
  border: 1px dashed #d7dfec;
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfcff 0%, #f6f8fc 100%);
  color: #5a667d;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.Message_stickersContainer .giphy_search_input {
  height: 36px;
  border-radius: 10px;
}

.Message_stickersContainer .giphy_search_btn {
  height: 36px;
  border-radius: 10px;
}

@media (max-width: 700px) {
  .giphy_search_form {
    gap: 6px;
  }

  .giphy_search_input,
  .giphy_search_btn {
    height: 34px;
  }

  .giphy_search_btn {
    padding: 0 12px;
  }

  .giphy_results_container,
  .giphy_results_container_conversation {
    gap: 8px;
  }

  .giphy_results_container .rGif,
  .giphy_results_container_conversation .mrGif {
    height: 108px;
    border-radius: 12px;
  }
}

/* Header redesign */
.header {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e7ebf3;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header:before {
  display: none;
}

.header .i_header_in {
  max-width: 1360px;
  min-height: 52px;
  gap: 20px;
}

.header .i_header_left,
.header .i_header_center,
.header .i_header_right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header .i_header_left {
  flex: 1 1 0;
  gap: 16px;
}

.header .i_header_center {
  flex: 0 1 auto;
  justify-content: center;
}

.header .i_header_right {
  flex: 1 1 0;
  justify-content: flex-end;
  flex-direction: row;
}

.header .i_logo {
  width: auto;
  height: auto;
  flex: 0 0 auto;
}

.header .i_logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  text-decoration: none;
}

.header .i_logo img {
  display: block;
  width: auto;
  max-width: 42px;
  height: 42px;
  object-fit: contain;
}

.header .i_search {
  flex: 1 1 360px;
  max-width: 380px;
  min-width: 220px;
  padding: 0;
}

.header .i_s_input {
  height: 46px;
  padding: 0 18px 0 50px;
  background-color: #f1f4f9;
  border: 1px solid transparent;
  background-position: 16px center;
  background-size: 20px;
  box-shadow: none;
}

.header .i_s_input:hover {
  background-color: #edf2f7;
}

.header .i_s_input:focus {
  border-color: #c9d7ff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.header .i_header_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e8edf5;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.header .i_header_nav_item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 44px;
  border-radius: 14px;
  color: #5b657b;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.header .i_header_nav_item svg {
  width: 22px;
  height: 22px;
  fill: currentColor !important;
}

.header .i_header_nav_item:hover {
  background: #f4f7fb;
  color: #111827;
}

.header .i_header_nav_item.is-active {
  background: #edf4ff;
  color: #1d4ed8;
}

.header .i_header_nav_item.is-active:after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: #1d4ed8;
}

.header .i_one {
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.header .i_header_btn_item {
  width: 42px;
  height: 42px;
  margin-right: 0;
  border-radius: 50%;
  background: #f1f3f7;
  border: 1px solid transparent;
  box-shadow: none;
  transform: none !important;
}

.header .i_header_btn_item:hover {
  background-color: #e8edf5;
  border-color: #d8e0eb;
  box-shadow: none;
  transform: none !important;
}

.header .i_header_btn_item:focus,
.header .i_header_btn_item:active {
  transform: none !important;
}

.header .i_header_btn_item a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  border-radius: inherit;
  color: inherit;
  text-decoration: none;
}

.header .i_header_btn_item svg {
  width: 20px;
  height: 20px;
  fill: #1f2937;
}

.header .i_h_in {
  width: 100%;
  height: 100%;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}

.header .i_notifications_count {
  top: -1px;
  right: -1px;
}

.header .isum {
  min-width: 18px;
  padding: 2px 6px;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.1;
}

.i_general_box_container,
.i_general_box_message_notifications_container,
.i_general_box_notifications_container {
  top: 76px;
}

.header .i_general_box_search_container {
  top: 100%;
  bottom: auto;
  transform: translate(-50%, 12px);
  -webkit-transform: translate(-50%, 12px);
  -moz-transform: translate(-50%, 12px);
  -o-transform: translate(-50%, 12px);
  -ms-transform: translate(-50%, 12px);
}

.header .i_login,
.header .i_singup,
.header .i_language {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-right: 0;
  box-shadow: none;
}

.header .i_login {
  padding: 0 18px;
  border-color: #d9e1ef;
}

.header .i_singup {
  padding: 0 20px;
}

.header .i_language {
  width: 42px;
  padding: 0;
}

@media screen and (max-width: 1200px) {
  .header .i_header_in {
    gap: 14px;
  }

  .header .i_search {
    max-width: 320px;
  }

  .header .i_header_nav {
    gap: 6px;
    padding: 4px 8px;
  }

  .header .i_header_nav_item {
    width: 48px;
  }
}

@media screen and (max-width: 960px) {
  .header .i_header_center {
    display: none;
  }

  .header .i_search {
    max-width: 360px;
  }
}

@media screen and (max-width: 662px) {
  .header {
    padding: 10px 12px;
  }

  .header .i_header_left {
    flex: 1 1 auto;
    gap: 8px;
  }

  .header .i_logo a {
    width: 46px;
    height: 46px;
  }

  .header .i_logo img {
    max-width: 38px;
    height: 38px;
  }

  .header .i_search {
    padding: 3px 15px;
    max-width: none;
  }

  .header .i_header_right {
    flex: 0 0 auto;
  }
}

/* Header refinement fixes */
.header .i_header_in {
  width: 100%;
  max-width: none;
}

.header .i_header_left {
  margin-right: auto;
}

.header .i_header_nav {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* Header responsive reset guard */
@media screen and (min-width: 663px) {
  .header {
    top: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
  }

  .header .i_header_in {
    min-height: 52px !important;
    flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
  }

  .header .i_header_nav {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
  }
}

@media screen and (min-width: 961px) {
  .header .i_header_center {
    display: flex !important;
  }
}

.i_general_box_container,
.i_general_box_message_notifications_container,
.i_general_box_notifications_container {
  top: 74px;
  right: 16px;
  left: auto;
  width: min(380px, calc(100vw - 32px));
  max-width: min(380px, calc(100vw - 32px));
  height: auto;
  max-height: calc(100vh - 92px);
  border: 1px solid #e8edf5;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.i_general_box_container .btest,
.i_general_box_message_notifications_container .btest,
.i_general_box_notifications_container .btest {
  max-height: calc(100vh - 156px);
  overflow-y: auto;
}

.i_general_box_container .i_user_details,
.i_general_box_message_notifications_container .i_user_details,
.i_general_box_notifications_container .i_user_details {
  padding: 14px 16px 16px;
}

.i_general_box_container .i_box_messages_header,
.i_general_box_message_notifications_container .i_box_messages_header,
.i_general_box_notifications_container .i_box_messages_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid #edf1f6;
  font-size: 16px;
}

.i_general_box_container .i_message_full_screen,
.i_general_box_message_notifications_container .i_message_full_screen,
.i_general_box_notifications_container .i_message_full_screen {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 12px;
  background: #f4f6fa;
}

.i_general_box_container .i_message_full_screen a,
.i_general_box_message_notifications_container .i_message_full_screen a,
.i_general_box_notifications_container .i_message_full_screen a {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.i_general_box_container .i_u_details {
  padding: 12px;
  border-radius: 16px;
  justify-content: flex-start;
  align-items: flex-start;
}

.i_general_box_container .i_u_details a {
  width: 100%;
  align-items: center;
  gap: 12px;
}

.i_general_box_container .iu_avatar {
  width: 56px;
  height: 56px;
}

.i_general_box_container .i_user_nm {
  padding-left: 0;
  gap: 2px;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.i_general_box_container .i_unm {
  padding-bottom: 0;
  font-size: 16px;
}

.i_general_box_container .i_header_others_box,
.i_general_box_message_notifications_container .i_header_others_box,
.i_general_box_notifications_container .i_header_others_box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: auto;
}

.i_general_box_container .i_header_others_box {
  display: block;
}

.i_general_box_container .i_header_others_box > a {
  display: block;
  width: 100%;
}

.i_general_box_container .i_header_others_item,
.i_general_box_notifications_container .i_header_others_item {
  padding: 10px 12px;
  margin-bottom: 0;
  gap: 12px;
  min-height: 56px;
  border-radius: 14px;
}

.i_general_box_container .i_header_others_item {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.3;
}

.i_general_box_container .i_header_item_icon_box,
.i_general_box_notifications_container .i_header_item_icon_box {
  width: 44px;
  height: 44px;
  padding: 0;
  margin-right: 0;
  flex: 0 0 44px;
  border-radius: 14px;
  background: #f3f5fa;
}

.i_general_box_container .arrow,
.i_general_box_message_notifications_container .arrow,
.i_general_box_notifications_container .arrow {
  margin: 10px 0;
  background-color: #edf1f6;
}

.i_general_box_message_notifications_container .i_message_wrapper,
.i_general_box_notifications_container .i_message_wrapper {
  padding: 10px;
  border-radius: 14px;
}

.i_general_box_container .footer_container,
.i_general_box_message_notifications_container .footer_container,
.i_general_box_notifications_container .footer_container {
  position: static;
  padding: 14px 16px;
  background: #ffffff;
  border-top: 1px solid #edf1f6;
}

.i_general_box_container.points_popover_box .btest {
  max-height: none;
  overflow: visible;
}

.i_general_box_container.points_popover_box .i_user_details {
  min-height: auto;
  padding-bottom: 18px;
  text-align: center;
}

.i_general_box_container.points_popover_box .i_box_messages_header {
  justify-content: center;
}

.i_general_box_container.points_popover_box .i_header_others_box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.i_general_box_container.points_popover_box .crnt_points {
  width: 100%;
  text-align: center;
}

.i_general_box_container.points_popover_box .point_box_BG {
  pointer-events: none;
}

@media screen and (max-width: 700px) {
  .i_general_box_container,
  .i_general_box_message_notifications_container,
  .i_general_box_notifications_container {
    right: 12px;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }
}

/* Left menu redesign */
.left-menu-pro-v1 .leftSidebar_in::before,
.left-menu-pro-v1 .leftSidebar_in::after {
  display: none;
}

.left-menu-pro-v1 .leftSidebar_in .leftSidebarWrapper {
  --aura-left-menu-gutter: clamp(18px, 1.8vw, 24px);
  width: calc(100% - var(--aura-left-menu-gutter));
  max-width: 330px;
  height: auto;
  min-height: 0;
  max-height: none;
  margin-left: var(--aura-left-menu-gutter);
  margin-right: auto;
  overflow: visible;
  overflow-y: visible;
  overflow-x: visible;
}

.left-menu-pro-v1 .leftSidebarWrapper {
  padding: 12px 14px 22px 22px;
}

.left-menu-pro-v1 .btest {
  position: relative;
  padding: 10px 10px 0;
  border: 1px solid color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 70%, transparent);
  border-radius: 18px;
  -webkit-border-radius: 18px;
  overflow: visible;
  overflow-y: visible;
  background: var(--dizzy-theme-panel-background, #ffffff);
}

.left-menu-pro-v1 .i_left_menu_box {
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  min-height: 48px;
  padding: 9px 11px;
  margin-bottom: 5px;
  border: 1px solid transparent;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  background: transparent;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--dizzy-theme-menu-text, #172033);
  outline: 0;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.left-menu-pro-v1 .i_left_menu_box > svg,
.left-menu-pro-v1 .i_left_menu_box > .i_left_menu_profile_avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: color-mix(in srgb, var(--dizzy-theme-hover-surface, #e0e3eb) 54%, transparent);
  color: var(--dizzy-theme-menu-icon, #53627c);
  overflow: hidden;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.left-menu-pro-v1 .i_left_menu_box > svg {
  padding: 6px;
  box-sizing: border-box;
}

.left-menu-pro-v1 .i_left_menu_profile_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.left-menu-pro-v1 .i_left_menu_box .m_tit {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: inherit;
  letter-spacing: 0;
  color: inherit;
}

.left-menu-pro-v1 .i_left_menu_box:hover,
.left-menu-pro-v1 .i_left_menu_box:focus-visible,
.left-menu-pro-v1 .btest > a:focus-visible .i_left_menu_box {
  background: color-mix(in srgb, var(--dizzy-theme-hover-surface, #e0e3eb) 62%, transparent);
  border-color: color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 90%, transparent);
  color: var(--dizzy-theme-text-primary, #0f172a);
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
}

.left-menu-pro-v1 .i_left_menu_box:hover > svg,
.left-menu-pro-v1 .i_left_menu_box:hover > .i_left_menu_profile_avatar,
.left-menu-pro-v1 .i_left_menu_box:focus-visible > svg,
.left-menu-pro-v1 .i_left_menu_box:focus-visible > .i_left_menu_profile_avatar,
.left-menu-pro-v1 .btest > a:focus-visible .i_left_menu_box > svg,
.left-menu-pro-v1 .btest > a:focus-visible .i_left_menu_box > .i_left_menu_profile_avatar {
  background: #edf4ff;
  color: #1d4ed8;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.left-menu-pro-v1 .i_left_menu_box.is-active {
  background: #edf4ff;
  border-color: #dbeafe;
  color: #1d4ed8;
}

.left-menu-pro-v1 .i_left_menu_box.is-active > svg,
.left-menu-pro-v1 .i_left_menu_box.is-active > .i_left_menu_profile_avatar {
  background: #dbeafe;
  color: #1d4ed8;
}

.left-menu-pro-v1 .i_left_menu_box.is-active::before {
  left: -1px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: #1d4ed8;
}

.left-menu-pro-v1 .i_left_menu_box.is-active:hover {
  -webkit-transform: translateX(1px);
  transform: translateX(1px);
}

.left-menu-pro-v1 .i_left_menu_box.left-menu-section-start {
  margin-top: 14px;
}

.left-menu-pro-v1 .i_left_menu_box.left-menu-section-start::after {
  display: block;
  left: 12px;
  right: 12px;
  top: -8px;
  background: color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 88%, transparent);
}

@media screen and (max-width: 700px) {
  .left-menu-pro-v1 .leftSidebar_in .leftSidebarWrapper {
    --aura-left-menu-gutter: 0px;
    width: 100%;
    max-width: none;
    height: calc(100vh - 60px);
    margin-left: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .left-menu-pro-v1 .leftSidebarWrapper {
    padding-right: 0;
    padding-left: 14px;
  }

  .left-menu-pro-v1 .btest {
    border-radius: 16px;
    -webkit-border-radius: 16px;
  }
}

@media screen and (min-width: 701px) and (max-height: 760px) {
  .left-menu-pro-v1 .leftSidebar_in .leftSidebarWrapper {
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    overflow-x: hidden;
  }
}

.sv-view {
  background:
    radial-gradient(
      circle at top center,
      rgba(240, 117, 88, 0.18) 0%,
      rgba(240, 117, 88, 0) 32%
    ),
    radial-gradient(
      circle at bottom center,
      rgba(45, 105, 255, 0.14) 0%,
      rgba(45, 105, 255, 0) 34%
    ),
    linear-gradient(180deg, #05070d 0%, #090d16 48%, #05070d 100%);
}

.sv-view::before,
.sv-view::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sv-view::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0) 22%
  );
  z-index: 0;
}

.sv-view::after {
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 16%
    ),
    radial-gradient(
      circle at 82% 78%,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 14%
    );
  z-index: 0;
}

.sv-view.open {
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
}

.sv-view .sv-view-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0) 48%
    ),
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0) 22%,
      rgba(0, 0, 0, 0.24) 100%
    );
  z-index: 0;
  pointer-events: none;
}

.sv-view .sv-chrome,
.sv-view .sv-bottom-dock {
  position: absolute;
  z-index: 12;
}

.sv-view .sv-chrome {
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  transform: none;
  padding: 28px 16px 30px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.34) 52%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 11;
  pointer-events: none;
}

.sv-view .sv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: auto;
}

.sv-view .close {
  position: static;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  margin-left: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(7, 12, 20, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.sv-view .close img {
  display: none;
}

.sv-view .close::before {
  content: "\00d7";
  display: block;
  width: 1em;
  line-height: 1;
  text-align: center;
  transform: translateY(-1px);
}

.sv-view .profile {
  position: static;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: calc(100% - 132px);
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(-3px) scale(0.96);
  box-shadow: none;
  gap: 10px;
}

.sv-view .profile.show {
  transform: translateY(0) scale(1);
}

.sv-view .profile .image {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  margin-left: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.sv-view .profile .meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}

.sv-view .profile .name {
  max-height: none;
  margin-left: 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.sv-view .profile .username,
.sv-view .profile .time {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.15;
}

.sv-view .profile .username:empty,
.sv-view .profile .time:empty {
  display: none;
}

.sv-view .story-audio-controls {
  position: static;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin-left: 0;
  flex-shrink: 0;
}

.sv-view .story-audio-controls.is-hidden {
  display: none;
}

.sv-view .story-audio-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(7, 12, 20, 0.62);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}

.sv-view .story-audio-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.sv-view .story-audio-btn svg {
  width: 16px;
  height: 16px;
}

.sv-view .story-audio-badge,
.sv-view .story-audio-tip {
  position: static;
  width: fit-content;
  max-width: 100%;
  margin-top: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(7, 12, 20, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.2;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-left: 52px;
  pointer-events: auto;
}

.sv-view .story-audio-badge:not(.is-visible),
.sv-view .story-audio-tip:not(.is-visible) {
  display: none;
}

.sv-view .content {
  width: min(100%, 506px);
  max-width: 506px;
  height: min(calc(100vh - 32px), 900px);
  margin: 0 auto;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(13, 18, 31, 0.78) 0%,
    rgba(9, 13, 22, 0.92) 100%
  );
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
}

.sv-view .media-bars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  min-height: 0;
  height: 4px;
  gap: 4px;
  padding: 12px 14px 0;
  z-index: 13;
}

.sv-view .media-bars li {
  min-height: 4px;
  height: 4px;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.18);
}

.sv-view .media-bars .progress {
  background: linear-gradient(90deg, #ffffff 0%, #d9e6ff 100%);
}

.sv-view .content .media-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.sv-view .content .current-media {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.sv-view .content img.current-media,
.sv-view .content video.current-media {
  border-radius: 0;
}

.sv-view .content::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(
    180deg,
    rgba(4, 7, 15, 0) 0%,
    rgba(4, 7, 15, 0.22) 34%,
    rgba(4, 7, 15, 0.86) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.sv-view .story-overlays {
  position: absolute;
  inset: 92px 16px 170px;
  z-index: 10;
  pointer-events: none;
}

.sv-view .story-overlays.is-hidden {
  display: none;
}

.sv-view .story-overlay {
  display: none;
  pointer-events: auto;
  position: absolute;
  max-width: 76%;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(7, 12, 20, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sv-view .story-overlay.is-visible {
  display: inline-flex;
  align-items: center;
}

.sv-view .story-overlay-link {
  top: 0;
  left: 0;
}

.sv-view .story-overlay-mention {
  bottom: 0;
  left: 0;
}

.sv-view .story-overlay-sticker {
  right: 0;
  bottom: 0;
  width: 92px;
  height: 92px;
  padding: 8px;
  justify-content: center;
}

.sv-view .story-overlay-sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sv-view .story-access-overlay {
  position: absolute;
  inset: 0;
  z-index: 11;
  background: rgba(4, 6, 12, 0.54);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.sv-view .story-access-overlay.is-visible {
  display: flex;
}

.sv-view .story-access-content {
  width: min(100%, 320px);
  padding: 20px;
  border-radius: 22px;
  background: rgba(8, 13, 22, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.sv-view .story-access-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.sv-view .story-access-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.sv-view .story-access-btn {
  flex: 1 1 0;
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.sv-view .story-access-btn.is-hidden {
  display: none;
}

.sv-view .hereText {
  position: absolute;
  top: auto !important;
  left: 16px;
  right: auto;
  bottom: 132px !important;
  width: auto;
  max-width: calc(100% - 32px);
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  overflow: visible !important;
  text-overflow: clip;
  align-items: flex-start;
  z-index: 10;
  max-height: min(230px, 34vh);
  word-break: break-word;
  overflow-wrap: anywhere;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.sv-view .hereText.is-hidden {
  display: none;
}

.sv-view .hereText.is-visible {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}

.sv-view .hereText .hereTextContent,
.sv-view .hereText p {
  width: 100%;
  margin: 0;
}

.sv-view .hereText .hereTextToggle {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0;
  cursor: pointer;
}

.sv-view .hereText .hereTextFade,
.sv-view .gradient {
  display: none;
}

.sv-view .hereTextClicked {
  max-height: min(250px, 42vh);
  overflow-y: auto !important;
}

.sv-view .hereTextStyle_one {
  top: auto !important;
  left: 24px;
  right: 24px;
  bottom: 158px !important;
  width: auto;
  max-width: none;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  line-height: 1.18;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.sv-view .sv-bottom-dock {
  left: 16px;
  right: 16px;
  width: auto;
  transform: none;
  bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 11;
}

.sv-view .story-reactions,
.sv-view .story-quick-replies,
.sv-view .story-reply {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  transform: none;
}

.sv-view .story-reactions,
.sv-view .story-quick-replies {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
}

.sv-view .story-reactions {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s ease;
}

.sv-view .story-reactions.is-visible {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sv-view .story-reactions.is-hidden,
.sv-view .story-quick-replies:not(.is-visible) {
  display: none;
}

.sv-view .story-reaction-btn,
.sv-view .story-quick-replies > .story-quick-reply-btn {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 12, 20, 0.6);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.sv-view .story-reaction-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
}

.sv-view .story-quick-replies > .story-quick-reply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sv-view .story-reaction-btn:hover,
.sv-view .story-quick-replies > .story-quick-reply-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
}

.sv-view .story-reaction-btn.is-selected {
  background: rgba(45, 105, 255, 0.24);
  border-color: rgba(93, 153, 255, 0.34);
}

.sv-view .story-reply {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sv-view .story-reply-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 8px 8px 14px;
  border-radius: 20px;
  background: rgba(7, 12, 20, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sv-view .story-reply.is-disabled .story-reply-inner {
  background: rgba(7, 12, 20, 0.42);
  border-color: rgba(255, 255, 255, 0.08);
}

.sv-view .story-reply-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  line-height: 1.4;
}

.sv-view .story-reply-input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.sv-view .story-reply-input:focus {
  outline: none;
}

.sv-view .story-reply-input:disabled {
  cursor: default;
  color: rgba(255, 255, 255, 0.88);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.88);
}

.sv-view .story-reply-send {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #121722;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.sv-view .story-reply-send:hover:not(:disabled) {
  transform: translateY(-1px);
}

.sv-view .story-reply-send svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sv-view .story-reply.is-disabled .story-reply-send,
.sv-view .story-reply-send:disabled {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
}

.sv-view .story-reply-status {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.3;
  padding-left: 4px;
}

.sv-view .story-reply-status.is-error {
  color: #ff8d8d;
}

@media screen and (max-width: 700px) {
  .sv-view.open {
    padding: 0;
  }

  .sv-view .sv-chrome,
  .sv-view .sv-bottom-dock {
    width: calc(100% - 0px);
  }

  .sv-view .sv-chrome {
    top: calc(env(safe-area-inset-top) + 0px);
    left: 0;
    right: 0;
    padding: 24px 12px 28px;
  }

  .sv-view .content {
    width: 100%;
    max-width: none;
    height: 100%;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .sv-view .media-bars {
    top: calc(env(safe-area-inset-top) + 2px);
    left: 0;
    right: 0;
    padding: 10px 12px 0;
  }

  .sv-view .profile {
    max-width: calc(100% - 132px);
  }

  .sv-view .profile .image {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .sv-view .profile .name {
    font-size: 13px;
  }

  .sv-view .profile .username,
  .sv-view .profile .time {
    font-size: 11px;
  }

  .sv-view .close {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .sv-view .story-audio-controls {
    gap: 6px;
    padding: 0;
  }

  .sv-view .story-audio-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .sv-view .hereText {
    top: auto !important;
    left: 12px;
    right: auto;
    bottom: calc(env(safe-area-inset-bottom) + 154px) !important;
    max-width: calc(100% - 24px);
    padding: 0;
    border-radius: 0;
    font-size: 13px;
    max-height: min(210px, 32vh);
    overflow: visible !important;
  }

  .sv-view .hereTextStyle_one {
    top: auto !important;
    left: 16px;
    right: 16px;
    bottom: calc(env(safe-area-inset-bottom) + 166px) !important;
    font-size: 22px;
    line-height: 1.22;
    max-height: min(220px, 34vh);
    overflow: visible !important;
  }

  .sv-view .story-overlays {
    inset: calc(env(safe-area-inset-top) + 96px) 12px
      calc(env(safe-area-inset-bottom) + 156px);
  }

  .sv-view .story-overlay {
    max-width: 82%;
    padding: 9px 12px;
    font-size: 12px;
  }

  .sv-view .story-overlay-sticker {
    width: 76px;
    height: 76px;
  }

  .sv-view .sv-bottom-dock {
    left: 0;
    right: 0;
    bottom: calc(env(safe-area-inset-bottom) + 0px);
    gap: 8px;
  }

  .sv-view .story-reactions,
  .sv-view .story-quick-replies {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .sv-view .story-reply-inner {
    min-height: 54px;
    padding: 6px 6px 6px 12px;
    border-radius: 18px;
  }

  .sv-view .story-reply-input {
    font-size: 13px;
  }

  .sv-view .story-reply-send {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
}

.sv-view .sv-chrome {
  top: 0;
}

.sv-view .sv-bottom-dock {
  bottom: 0;
}

.story-reply {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 0px calc(12px + env(safe-area-inset-bottom));
  z-index: 6;
  pointer-events: auto;
}
.composer_refined_soft {
  padding: 10px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  border: 1px solid #e7edf5;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.composer_refined_soft .i_postLiveStreaming {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}
.composer_refined_soft .i_postLiveStreaming .i_live_ {
  min-height: 50px;
  padding: 0 14px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  border: 1px solid #e5ebf4;
  background: #ffffff;
  gap: 8px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.composer_refined_soft .i_postLiveStreaming .i_live_:nth-child(3) {
  grid-column: 1/-1;
}
.composer_refined_soft .i_postLiveStreaming .i_live_ svg {
  width: 18px;
  height: 18px;
  fill: #ff5b73;
}
.composer_refined_soft .i_post_form {
  padding: 4px 6px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  border: 1px solid #e8edf5;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  box-shadow: none;
}
.composer_refined_soft .i_post_form_textarea textarea {
  min-height: 46px;
  max-height: min(42vh, 360px);
  height: 46px;
  overflow-y: auto !important;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.22;
}
.composer_refined_soft .i_post_form_textarea textarea::placeholder {
  color: #98a2b3;
}
.composer_refined_soft .ccounter {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff5a76 0%, #ff6b81 100%);
  box-shadow: 0 10px 20px rgba(255, 90, 118, 0.18);
}
.composer_refined_soft .i_form_buttons {
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 0 0;
}
.composer_refined_soft .i_create_new_toggle,
.composer_refined_soft .i_pb_emojis,
.composer_refined_soft .i_pb_premiumPost,
.composer_refined_soft .form_who_see {
  min-height: 44px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  border: 1px solid #e6ebf4;
  background: #ffffff;
}
.composer_refined_soft .i_create_new_toggle {
  flex: 1 1 auto;
  min-width: 200px;
  padding: 0 14px;
}
.composer_refined_soft .create_new_icon {
  font-size: 24px;
  line-height: 1;
  color: #4b5563;
}
.composer_refined_soft .create_new_label {
  font-size: 13px;
  font-weight: 700;
  color: #4b5563;
}
.composer_refined_soft .i_pb_emojis,
.composer_refined_soft .i_pb_premiumPost {
  width: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.composer_refined_soft .i_pb_emojisBox,
.composer_refined_soft .i_pb_premiumPostBox {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.composer_refined_soft .i_pb_emojis_Box,
.composer_refined_soft .i_pb_premium_box {
  padding: 0;
}
.composer_refined_soft .i_pb_emojis_Box svg,
.composer_refined_soft .i_pb_premium_box svg,
.composer_refined_soft .form_who_see .form_who_see_icon_set svg {
  fill: #ff5b73 !important;
}
.composer_refined_soft .form_who_see {
  min-height: 44px;
  margin-left: auto;
  padding: 0 14px 0 10px;
}
.composer_refined_soft .form_who_see .whoSeeBox {
  gap: 6px;
}
.composer_refined_soft .publish_btn {
  width: 100%;
  min-height: 46px;
  margin-left: 0;
  margin-top: 6px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #3090e4 0%, #2f7fd5 48%, #2c77cb 100%);
  box-shadow: 0 14px 26px rgba(47, 127, 213, 0.16);
}
.composer_refined_soft .publish_btn:hover {
  background: linear-gradient(135deg, #2588df 0%, #2d79cb 48%, #286ebc 100%);
}
@media screen and (max-width: 700px) {
  .composer_refined_soft {
    padding: 8px;
  }
  .composer_refined_soft .i_postLiveStreaming {
    grid-template-columns: 1fr;
  }
  .composer_refined_soft .i_postLiveStreaming .i_live_:nth-child(3) {
    grid-column: auto;
  }
  .composer_refined_soft .i_create_new_toggle {
    min-width: 0;
  }
  .composer_refined_soft .form_who_see {
    width: 100%;
    margin-left: 0;
  }
}
.composer_refined_soft.composer_folded {
  overflow: hidden;
}
.composer_refined_soft.composer_folded.composer_fold_open {
  overflow: visible;
}
.composer_refined_soft.composer_folded .composer_fold_section {
  overflow: hidden;
  transition:
    opacity 0.32s ease,
    max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    margin 0.32s ease,
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition:
    opacity 0.32s ease,
    max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    margin 0.32s ease,
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, max-height;
}
.composer_refined_soft.composer_folded .composer_fold_top {
  max-height: 160px;
}
.composer_refined_soft.composer_folded .composer_fold_bottom {
  max-height: 240px;
}
.composer_refined_soft.composer_folded.composer_fold_open .composer_fold_bottom,
.composer_refined_soft .i_form_buttons {
  overflow: visible;
}
.composer_refined_soft.composer_folded:not(.composer_fold_open)
  .composer_fold_top,
.composer_refined_soft.composer_folded:not(.composer_fold_open)
  .composer_fold_bottom {
  opacity: 0;
  max-height: 0;
  margin: 0;
  transform: translateY(4px);
  pointer-events: none;
}
.composer_refined_soft.composer_folded.composer_fold_open .composer_fold_top {
  animation: fadeInUp 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
  -webkit-animation: fadeInUp 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.composer_refined_soft.composer_folded.composer_fold_open
  .composer_fold_bottom {
  animation: fadeInDown 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
  -webkit-animation: fadeInDown 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.composer_refined_soft.composer_folded:not(.composer_fold_open) .i_post_form {
  margin: 0;
}
.composer_refined_soft.composer_folded:not(.composer_fold_open)
  .i_post_form_textarea
  textarea {
  cursor: text;
}
@media screen and (max-width: 700px) {
  .composer_refined_soft.composer_folded .composer_fold_top {
    max-height: 210px;
  }
  .composer_refined_soft.composer_folded .composer_fold_bottom {
    max-height: 280px;
  }
}
.composer_refined_soft .form_who_see .i_choose_ws_overlay {
  display: none;
}
.composer_refined_soft .form_who_see.ws_popup_open .i_choose_ws_overlay,
.composer_refined_soft .form_who_see .i_choose_ws_overlay.dblock {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1001;
}
.composer_refined_soft .form_who_see .i_choose_ws_wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  width: min(360px, calc(100vw - 32px));
  min-width: 280px;
  margin-top: 0;
  padding-bottom: 0;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  border: 1px solid #e5ebf4;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  z-index: 1002;
  transform: translate(-50%, -48%) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  -webkit-transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}
.composer_refined_soft .form_who_see .i_choose_ws_wrapper.dblock {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.composer_refined_soft .form_who_see .whctt {
  padding: 20px 24px 14px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  -webkit-border-top-left-radius: 20px;
  -webkit-border-top-right-radius: 20px;
  background-color: #f7f9fc;
}
.composer_refined_soft .form_who_see .i_whoseech_menu_item_out {
  padding: 18px 24px;
}
.i_choose_ws_modal {
  display: none;
}
.i_choose_ws_modal.dblock {
  display: block;
}
.i_choose_ws_modal .i_choose_ws_overlay {
  display: none;
}
.i_choose_ws_modal .i_choose_ws_overlay.dblock {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1001;
}
.i_choose_ws_modal .i_choose_ws_wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(360px, calc(100vw - 32px));
  min-width: 280px;
  border-radius: 20px;
  border: 1px solid #e5ebf4;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  z-index: 1002;
  transform: translate(-50%, -48%) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  -webkit-transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}
.i_choose_ws_modal .i_choose_ws_wrapper.dblock {
  display: flex;
  flex-direction: column;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.i_choose_ws_modal .whctt {
  padding: 20px 24px 14px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: #f7f9fc;
}
.composer_refined_soft .ws_selected_chip {
  display: none !important;
}
.live_setup_modal {
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.live_setup_modal .live_setup_shell {
  width: min(88vw, 700px);
  max-height: min(86vh, 780px);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.24);
}
.live_setup_modal .live_setup_content {
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  display: flex;
  flex-direction: column;
  max-height: min(86vh, 780px);
}
.live_setup_modal .live_setup_header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  border-bottom: 1px solid #e2e8f4;
  overflow: hidden;
}
.live_setup_modal .live_setup_header:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #38bdf8 100%);
}
.live_setup_modal--paid .live_setup_header:before {
  background: linear-gradient(90deg, #f97316 0%, #facc15 100%);
}
.live_setup_modal .live_setup_header:after {
  content: "";
  position: absolute;
  top: -90px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.18) 0%,
    rgba(59, 130, 246, 0) 72%
  );
  pointer-events: none;
}
.live_setup_modal--paid .live_setup_header:after {
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.18) 0%,
    rgba(249, 115, 22, 0) 72%
  );
}
.live_setup_modal .live_setup_header_main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.live_setup_modal .live_setup_header_badge {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
  box-shadow: 0 14px 24px rgba(59, 130, 246, 0.24);
}
.live_setup_modal--paid .live_setup_header_badge {
  background: linear-gradient(135deg, #f97316 0%, #facc15 100%);
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.24);
}
.live_setup_modal .live_setup_header_badge svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
.live_setup_modal .live_setup_header_copy {
  min-width: 0;
}
.live_setup_modal .live_setup_header_title {
  font-size: clamp(17px, 2.4vw, 24px);
  line-height: 1.12;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
}
.live_setup_modal .live_setup_close {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d9e3f2;
  box-shadow: none;
}
.live_setup_modal .live_setup_close:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: #c7d3e4;
}
.live_setup_modal .live_setup_close svg {
  width: 18px;
  height: 18px;
  fill: #52607c;
}
.live_setup_modal .live_setup_body {
  padding: 14px 22px 0;
  background: transparent;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.live_setup_modal .live_setup_sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 14px;
}
.live_setup_modal .live_setup_panel {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid #e3eaf5;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.live_setup_modal .live_setup_panel--hero {
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.live_setup_modal--paid .live_setup_panel--hero {
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}
.live_setup_modal .live_setup_panel_heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}
.live_setup_modal .live_setup_panel_kicker {
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #64748b;
}
.live_setup_modal .live_setup_label,
.live_setup_modal .give_a_name {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #334155;
}
.live_setup_modal .live_setup_input_wrap {
  width: 100%;
}
.live_setup_modal .live_setup_input_wrap .flnm,
.live_setup_modal .live_setup_input_wrap .live_notify_audience {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  border: 1px solid #d8e2ef;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  outline: none;
}
.live_setup_modal .live_setup_input_wrap .flnm:focus,
.live_setup_modal .live_setup_input_wrap .live_notify_audience:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}
.live_setup_modal .live_setup_notice {
  margin-top: 12px;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border: none;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  background: linear-gradient(135deg, #fff3d9 0%, #ffe5b4 100%);
  color: #8a4b07;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.live_setup_modal .live_setup_notice svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  fill: #f59e0b;
  margin-right: 0;
}
.live_setup_modal .live_setup_notice_text {
  min-width: 0;
}
.live_setup_modal .live_setup_toggle_row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 0 0 12px;
  border-bottom: 1px solid #edf2f8;
}
.live_setup_modal .live_setup_toggle_copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.live_setup_modal .live_setup_toggleTitle,
.live_setup_modal .live_setup_toggle_title {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
}
.live_setup_modal .live_setup_toggle_meta {
  font-size: 12px;
  line-height: 1.4;
  color: #64748b;
  font-weight: 600;
}
.live_setup_modal .live_setup_expand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
}
.live_setup_modal .live_setup_select_tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  background: #f8fbff;
  border: 1px dashed #d8e2ef;
}
.live_setup_modal .live_notify_select_btn {
  min-width: 148px;
  height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: none;
}
.live_setup_modal--paid .live_notify_select_btn {
  background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
}
.live_setup_modal .live_notify_select_btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: saturate(0.6);
}
.live_setup_modal .live_setup_selection_hint {
  flex: 1 1 220px;
  min-height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d8e2ef;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}
.live_setup_modal .live_setup_schedule_fields {
  margin-top: 0;
  padding: 12px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #e3eaf5;
}
.live_setup_modal .schedule_dt_inputs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 10px;
}
.live_setup_modal .schedule_dt_field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.live_setup_modal .schedule_dt_field > span {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}
.live_setup_modal .schedule_dt_group {
  display: flex;
  gap: 10px;
}
.live_setup_modal .schedule_dt_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.live_setup_modal .schedule_dt_label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.live_setup_modal .live_setup_scheduleFields select,
.live_setup_modal .live_setup_schedule_fields select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  border: 1px solid #d8e2ef;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}
.live_setup_modal .live_setup_schedule_fields select:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}
.live_setup_modal .schedule_time_note {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}
.live_setup_modal .schedule_info {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.45;
  color: #475569;
  font-weight: 600;
}
.live_setup_modal .schedule_tz {
  color: #0f172a;
}
.live_setup_modal .schedule_hint {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: #ffffff;
  border: 1px dashed #d8e2ef;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}
.live_setup_modal .live_setup_fee_shell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.live_setup_modal .live_setup_fee_input {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d8e2ef;
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.05);
}
.live_setup_modal .live_setup_fee_input .i_subs_currency {
  min-width: 56px;
  padding: 0 14px;
  border-radius: 0;
  -webkit-border-radius: 0;
  border-right: 1px solid #f8d7aa;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #b45309;
}
.live_setup_modal .live_setup_fee_input .i_subs_currency svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.live_setup_modal .live_setup_fee_input .i_subs_price {
  flex: 1;
  display: flex;
}
.live_setup_modal .live_setup_fee_input .i_subs_price input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  outline: none;
}
.live_setup_modal .live_setup_inline_note {
  display: block;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: #fffaf0;
  border: 1px dashed #f3d19c;
  color: #9a6700;
  font-size: 12px;
  font-weight: 700;
}
.live_setup_modal .live_setup_warning_stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 2px;
}
.live_setup_modal .live_setup_warning_stack .box_not {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
  font-size: 12px;
  font-weight: 700;
}
.live_setup_modal .live_setup_state_card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  border: 1px solid #e2e8f4;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}
.live_setup_modal .live_setup_state_card--warning {
  background: linear-gradient(180deg, #fffaf0 0%, #fff4de 100%);
  border-color: #f7d9a6;
  color: #8a4b07;
}
.live_setup_modal .live_setup_state_card--info {
  background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
  border-color: #cfe0ff;
  color: #1d4ed8;
}
.live_setup_modal .live_setup_state_icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 14px rgba(15, 23, 42, 0.07);
}
.live_setup_modal .live_setup_state_icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.live_setup_modal .live_setup_state_text {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  color: inherit;
}
.live_setup_modal .live_setup_footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 22px 18px;
  margin-top: 14px;
  background: linear-gradient(
    180deg,
    rgba(248, 251, 255, 0.1) 0%,
    #f8fbff 100%
  );
  border-top: 1px solid #e2e8f4;
  flex-wrap: wrap;
}
.live_setup_modal .live_setup_footer a {
  text-decoration: none;
}
.live_setup_modal .live_setup_footer .alertBtnLeft,
.live_setup_modal .live_setup_footer .alertBtnRightWithIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 138px;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}
.live_setup_modal .live_setup_footer .alertBtnLeft {
  order: 1;
  background: #e2e8f0;
  color: #334155;
  border: 1px solid #d2dbe8;
}
.live_setup_modal .live_setup_footer .alertBtnRightWithIcon {
  order: 2;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #ffffff;
  border: 1px solid #2563eb;
}
.live_setup_modal--paid .live_setup_footer .alertBtnRightWithIcon {
  background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  border-color: #ea580c;
}
.live_setup_modal .live_setup_footer .alertBtnRightWithIcon svg {
  width: 15px;
  height: 15px;
  fill: #ffffff;
  margin-right: 0;
}
.live_setup_modal .live_setup_footer--single .alertBtnLeft {
  order: 0;
}
@media (max-width: 700px) {
  .live_setup_modal .live_setup_shell {
    width: min(92vw, 700px);
    max-height: min(90vh, 760px);
    border-radius: 20px;
    -webkit-border-radius: 20px;
  }
  .live_setup_modal .live_setup_header {
    padding: 16px 16px 14px;
  }
  .live_setup_modal .live_setup_header_main {
    gap: 12px;
    align-items: flex-start;
  }
  .live_setup_modal .live_setup_header_badge {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
  }
  .live_setup_modal .live_setup_header_title {
    font-size: 18px;
  }
  .live_setup_modal .live_setup_close {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
  }
  .live_setup_modal .live_setup_body {
    padding: 12px 16px 0;
  }
  .live_setup_modal .live_setup_panel {
    padding: 14px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
  }
  .live_setup_modal .live_setup_toggle_row {
    flex-direction: column;
    align-items: stretch;
  }
  .live_setup_modal .live_setup_select_tools {
    padding: 10px;
  }
  .live_setup_modal .live_notify_select_btn,
  .live_setup_modal .live_setup_selection_hint {
    width: 100%;
    flex-basis: 100%;
  }
  .live_setup_modal .schedule_dt_inputs {
    grid-template-columns: 1fr;
  }
  .live_setup_modal .schedule_dt_group {
    flex-direction: column;
  }
  .live_setup_modal .live_setup_fee_input .i_subs_currency {
    min-width: 52px;
    padding: 0 12px;
  }
  .live_setup_modal .live_setup_fee_input .i_subs_price input {
    font-size: 17px;
  }
  .live_setup_modal .live_setup_footer {
    padding: 12px 16px 16px;
  }
  .live_setup_modal .live_setup_footer .alertBtnLeft,
  .live_setup_modal .live_setup_footer .alertBtnRightWithIcon {
    min-width: 0;
    width: 100%;
  }
}
.live_setup_modal .live_setup_shell {
  width: min(82vw, 620px);
  max-width: 620px;
  max-height: min(82vh, 700px);
  border-radius: 22px;
  -webkit-border-radius: 22px;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.22);
}
.live_setup_modal .live_setup_content {
  max-height: min(82vh, 700px);
}
.live_setup_modal .live_setup_header {
  gap: 12px;
  padding: 16px 18px 12px;
}
.live_setup_modal .live_setup_header:after {
  top: -76px;
  right: -52px;
  width: 188px;
  height: 188px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.16) 0%,
    rgba(59, 130, 246, 0) 72%
  );
}
.live_setup_modal .live_setup_header_main {
  gap: 10px;
}
.live_setup_modal .live_setup_header_badge {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 13px;
  -webkit-border-radius: 13px;
  box-shadow: 0 10px 18px rgba(59, 130, 246, 0.2);
}
.live_setup_modal--paid .live_setup_header_badge {
  box-shadow: 0 12px 22px rgba(249, 115, 22, 0.2);
}
.live_setup_modal .live_setup_header_badge svg {
  width: 18px;
  height: 18px;
}
.live_setup_modal .live_setup_header_title {
  font-size: clamp(16px, 1.95vw, 19px);
  line-height: 1.1;
  letter-spacing: -0.024em;
}
.live_setup_modal .live_setup_close {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 13px;
  -webkit-border-radius: 13px;
  background: rgba(255, 255, 255, 0.84);
}
.live_setup_modal .live_setup_close svg {
  width: 22px;
  height: 22px;
  display: block;
  transform: scale(1.28);
  transform-origin: center;
  overflow: visible;
}
.live_setup_modal .live_setup_body {
  padding: 10px 18px 0;
}
.live_setup_modal .live_setup_sections {
  gap: 10px;
  padding-bottom: 10px;
}
.live_setup_modal .live_setup_panel {
  padding: 13px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}
.live_setup_modal .live_setup_panel--hero {
  padding: 13px;
}
.live_setup_modal .live_setup_panel_heading {
  gap: 4px;
  margin-bottom: 8px;
}
.live_setup_modal .live_setup_label,
.live_setup_modal .give_a_name {
  margin-bottom: 6px;
  font-size: 11px;
}
.live_setup_modal .live_setup_input_wrap .flnm,
.live_setup_modal .live_setup_input_wrap .live_notify_audience {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  font-size: 14px;
}
.live_setup_modal .live_setup_notice {
  margin-top: 10px;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  font-size: 11px;
  line-height: 1.4;
}
.live_setup_modal .live_setup_notice svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
}
.live_setup_modal .live_setup_toggle_row {
  gap: 12px;
  padding: 0 0 10px;
}
.live_setup_modal .live_setup_toggle_copy {
  gap: 3px;
}
.live_setup_modal .live_setup_toggle_title {
  font-size: 14px;
  line-height: 1.18;
}
.live_setup_modal .live_setup_toggle_meta {
  font-size: 11px;
  line-height: 1.35;
}
.live_setup_modal .live_setup_expand {
  gap: 8px;
  padding-top: 10px;
}
.live_setup_modal .live_setup_select_tools {
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
}
.live_setup_modal .live_notify_select_btn {
  min-width: 132px;
  height: 38px;
  padding: 0 14px;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  font-size: 12px;
}
.live_setup_modal .live_setup_selection_hint {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  font-size: 12px;
}
.live_setup_modal .live_setup_schedule_fields {
  padding: 10px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
}
.live_setup_modal .schedule_dt_inputs {
  gap: 8px;
}
.live_setup_modal .schedule_dt_field {
  gap: 6px;
}
.live_setup_modal .schedule_dt_field > span {
  font-size: 11px;
}
.live_setup_modal .schedule_dt_group {
  gap: 8px;
}
.live_setup_modal .schedule_dt_item {
  gap: 5px;
}
.live_setup_modal .live_setup_schedule_fields select {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  font-size: 13px;
}
.live_setup_modal .schedule_time_note {
  font-size: 10px;
}
.live_setup_modal .schedule_info {
  gap: 8px;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.4;
}
.live_setup_modal .schedule_hint {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  font-size: 11px;
}
.live_setup_modal .live_setup_fee_shell {
  gap: 7px;
  margin-top: 12px;
}
.live_setup_modal .live_setup_fee_input {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
}
.live_setup_modal .live_setup_fee_input .i_subs_currency {
  min-width: 50px;
  padding: 0 12px;
}
.live_setup_modal .live_setup_fee_input .i_subs_currency svg {
  width: 16px;
  height: 16px;
}
.live_setup_modal .live_setup_fee_input .i_subs_price input {
  min-height: 42px;
  padding: 0 12px;
  font-size: 16px;
}
.live_setup_modal .live_setup_inline_note {
  padding: 9px 10px;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  font-size: 11px;
}
.live_setup_modal .live_setup_warning_stack {
  gap: 7px;
}
.live_setup_modal .live_setup_warning_stack .box_not {
  padding: 9px 10px;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  font-size: 11px;
}
.live_setup_modal .live_setup_state_card {
  gap: 10px;
  padding: 13px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
}
.live_setup_modal .live_setup_state_icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.06);
}
.live_setup_modal .live_setup_state_icon svg {
  width: 16px;
  height: 16px;
}
.live_setup_modal .live_setup_state_text {
  font-size: 12px;
  line-height: 1.45;
}
.live_setup_modal .live_setup_footer {
  gap: 8px;
  padding: 10px 18px 14px;
  margin-top: 10px;
}
.live_setup_modal .live_setup_footer .alertBtnLeft,
.live_setup_modal .live_setup_footer .alertBtnRightWithIcon {
  min-width: 126px;
  height: 40px;
  padding: 0 16px;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  font-size: 13px;
}
@media (max-width: 700px) {
  .live_setup_modal .live_setup_shell {
    width: min(92vw, 620px);
    max-height: min(88vh, 680px);
    border-radius: 18px;
    -webkit-border-radius: 18px;
  }
  .live_setup_modal .live_setup_header {
    padding: 14px 14px 12px;
  }
  .live_setup_modal .live_setup_header_main {
    gap: 10px;
  }
  .live_setup_modal .live_setup_header_badge {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 11px;
    -webkit-border-radius: 11px;
  }
  .live_setup_modal .live_setup_header_title {
    font-size: 17px;
  }
  .live_setup_modal .live_setup_close {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
  }
  .live_setup_modal .live_setup_close svg {
    width: 20px;
    height: 20px;
    transform: scale(1.2);
  }
  .live_setup_modal .live_setup_body {
    padding: 10px 14px 0;
  }
  .live_setup_modal .live_setup_panel {
    padding: 12px;
    border-radius: 14px;
    -webkit-border-radius: 14px;
  }
  .live_setup_modal .live_setup_select_tools {
    padding: 8px;
  }
  .live_setup_modal .live_setup_fee_input .i_subs_currency {
    min-width: 48px;
    padding: 0 10px;
  }
  .live_setup_modal .live_setup_fee_input .i_subs_price input {
    font-size: 15px;
  }
  .live_setup_modal .live_setup_footer {
    padding: 10px 14px 14px;
  }
}
.live_setup_modal {
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.live_setup_modal .live_setup_shell {
  width: min(82vw, 620px);
  max-width: 620px;
  max-height: min(calc(100vh - 32px), 700px);
  max-height: min(calc(100dvh - 32px), 700px);
  margin: 0 auto;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.22);
}
.live_setup_modal .live_setup_content {
  max-height: min(calc(100vh - 32px), 700px);
  max-height: min(calc(100dvh - 32px), 700px);
}
.live_setup_modal .live_setup_close {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
}
.live_setup_modal .live_setup_close svg {
  width: 16px;
  height: 16px;
  display: block;
  transform: none;
  transform-origin: center;
  overflow: visible;
}
@media (max-width: 700px) {
  .live_setup_modal {
    padding: 10px;
  }
  .live_setup_modal .live_setup_shell {
    width: min(94vw, 620px);
    max-height: min(calc(100vh - 20px), 680px);
    max-height: min(calc(100dvh - 20px), 680px);
    border-radius: 18px;
    -webkit-border-radius: 18px;
  }
  .live_setup_modal .live_setup_close {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 11px;
    -webkit-border-radius: 11px;
  }
  .live_setup_modal .live_setup_close svg {
    width: 15px;
    height: 15px;
    transform: none;
  }
}
.live_setup_modal {
  --live-setup-header-height: 72px;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.live_setup_modal .live_setup_header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 var(--live-setup-header-height);
  height: var(--live-setup-header-height);
  min-height: var(--live-setup-header-height);
  max-height: var(--live-setup-header-height);
  padding: 0 18px;
  box-sizing: border-box;
}
.live_setup_modal .live_setup_header_main {
  flex: 1 1 auto;
  height: 100%;
}
.live_setup_modal .live_setup_header_copy {
  min-width: 0;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  height: 100%;
}
.live_setup_modal .live_setup_header_title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live_setup_modal .live_setup_body {
  flex: 1 1 auto;
  min-height: 0;
}
.live_setup_modal .live_setup_footer {
  flex: 0 0 auto;
}
@media (max-width: 700px) {
  .live_setup_modal .live_setup_header {
    padding: 0 14px;
  }
}
@media (max-width: 700px) {
  .live_setup_modal {
    padding: 0;
  }
  .live_setup_modal .live_setup_shell {
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    -webkit-border-radius: 0;
  }
  .live_setup_modal .live_setup_content {
    height: 100%;
    max-height: none;
  }
  .live_setup_modal .live_setup_header {
    padding: 0 14px;
  }
  .live_setup_modal .live_setup_header_main {
    gap: 10px;
    align-items: center;
  }
  .live_setup_modal .live_setup_close {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 11px;
    -webkit-border-radius: 11px;
  }
  .live_setup_modal .live_setup_close svg {
    width: 15px;
    height: 15px;
    transform: none;
  }
  .live_setup_modal .live_setup_body {
    padding: 10px 14px 0;
  }
  .live_setup_modal .live_setup_panel {
    padding: 12px;
    border-radius: 14px;
    -webkit-border-radius: 14px;
  }
  .live_setup_modal .live_setup_toggle_row {
    flex-direction: column;
    align-items: stretch;
  }
  .live_setup_modal .live_setup_selectTools,
  .live_setup_modal .live_setup_select_tools {
    padding: 0;
    border: none;
    background: transparent;
    gap: 10px;
  }
  .live_setup_modal .live_notify_select_btn,
  .live_setup_modal .live_setup_selection_hint {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
    flex-basis: 100%;
    box-sizing: border-box;
  }
  .live_setup_modal .schedule_dt_inputs {
    grid-template-columns: 1fr;
  }
  .live_setup_modal .schedule_dt_group {
    flex-direction: column;
  }
  .live_setup_modal .live_setup_fee_input .i_subs_currency {
    min-width: 48px;
    padding: 0 10px;
  }
  .live_setup_modal .live_setup_fee_input .i_subs_price input {
    font-size: 15px;
  }
  .live_setup_modal .live_setup_footer {
    padding: 10px 14px calc(14px + env(safe-area-inset-bottom));
    margin-top: 8px;
    gap: 10px;
  }
  .live_setup_modal .live_setup_footer .alertBtnLeft,
  .live_setup_modal .live_setup_footer .alertBtnRightWithIcon {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}
.i_become_creator_wrapper {
  position: relative;
  display: block;
  width: 100%;
  margin: 15px 0;
  padding: 22px 24px;
  border: 1px solid #e3eaf5;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 52%, #fff6f7 100%);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}
.i_become_creator_wrapper:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #f95776 0%, #ff4f6f 100%);
}
.i_become_creator_wrapper a {
  display: inline-flex;
  display: -webkit-inline-flex;
}
.i_become_creator_content {
  position: relative;
  z-index: 2;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.i_become_creator_identity {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.i_become_creator_icon {
  position: relative;
  width: 64px;
  min-width: 64px;
  height: 64px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  background: linear-gradient(135deg, #f95776 0%, #ff4f6f 100%);
  box-shadow: 0 16px 32px rgba(249, 87, 118, 0.24);
  text-align: center;
}
.i_become_creator_copy {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.i_become_creator_title {
  display: block;
  width: 100%;
  text-align: left;
  font-weight: 800;
  font-size: clamp(26px, 2.1vw, 38px);
  font-family: "Noto Sans", sans-serif;
  color: #101828;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.i_become_title_mini {
  display: block;
  width: 100%;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Noto Sans", sans-serif;
  color: #7c88aa;
  max-width: 520px;
}
.i_become_creator_backdrop {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 158px;
  height: 158px;
  transform: translateY(-50%);
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.i_bicome {
  position: relative;
  width: 100%;
  max-width: 28px;
  height: 100%;
  display: flex;
  display: -webkit-flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.i_bicome svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  opacity: 1;
}
.i_become_creator_backdrop .i_bicome {
  max-width: 128px;
}
.i_become_creator_backdrop .i_bicome svg {
  fill: #f95776;
}
.i_become_ceator_link {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
  flex-shrink: 0;
}
.i_become_ceator_link a {
  display: inline-flex;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 52px;
  margin: 0;
  color: #fff;
  padding: 0 20px;
  font-weight: 700;
  font-size: 15px;
  font-family: "Noto Sans", sans-serif;
  text-decoration: none;
  text-align: center;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  background: linear-gradient(135deg, #f95776 0%, #ff4f6f 100%);
  box-shadow: 0 14px 28px rgba(249, 87, 118, 0.26);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  -webkit-transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.i_become_ceator_link a:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(249, 87, 118, 0.3);
}
@media screen and (max-width: 700px) {
  .i_become_creator_wrapper {
    padding: 18px;
    border-radius: 18px;
    -webkit-border-radius: 18px;
  }
  .i_become_creator_content {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .i_become_creator_identity {
    align-items: flex-start;
  }
  .i_become_creator_icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
    border-radius: 17px;
    -webkit-border-radius: 17px;
  }
  .i_become_creator_title {
    font-size: 20px;
  }
  .i_become_title_mini {
    font-size: 14px;
    max-width: none;
  }
  .i_become_creator_backdrop {
    right: -12px;
    top: 18px;
    transform: none;
    width: 120px;
    height: 120px;
  }
  .i_become_creator_backdrop .i_bicome {
    max-width: 96px;
  }
  .i_become_ceator_link {
    width: 100%;
  }
  .i_become_ceator_link a {
    width: 100%;
    min-width: 0;
    min-height: 48px;
  }
}
.i_become_creator_wrapper {
  position: relative;
  display: block;
  width: 100%;
  margin: 15px 0;
  padding: 20px 18px 18px;
  border: 1px solid #e3eaf5;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 58%, #fff5f7 100%);
  overflow: hidden;
  box-shadow: none;
}
.i_become_creator_content {
  position: relative;
  z-index: 2;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.i_become_creator_identity {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  width: 100%;
}
.i_become_creator_icon {
  position: relative;
  width: 54px;
  min-width: 54px;
  height: 54px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  -webkit-border-radius: 17px;
  background: linear-gradient(135deg, #f95776 0%, #ff4f6f 100%);
  box-shadow: 0 14px 24px rgba(249, 87, 118, 0.18);
  text-align: center;
}
.i_become_creator_copy {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  align-items: center;
  text-align: center;
}
.i_become_creator_title {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 800;
  font-size: clamp(18px, 1.2vw, 22px);
  font-family: "Noto Sans", sans-serif;
  color: #101828;
  line-height: 1.14;
  letter-spacing: -0.03em;
  max-width: 240px;
  margin: 0 auto;
}
.i_become_title_mini {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.45;
  font-family: "Noto Sans", sans-serif;
  color: #7c88aa;
  max-width: 250px;
  margin: 0 auto;
}
.i_become_creator_backdrop {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%);
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.07;
  z-index: 1;
}
.i_bicome {
  position: relative;
  width: 100%;
  max-width: 22px;
  height: 100%;
  display: flex;
  display: -webkit-flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.i_become_creator_backdrop .i_bicome {
  max-width: 82px;
}
.i_become_ceator_link {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-shrink: 0;
  width: 100%;
}
.i_become_ceator_link a {
  display: inline-flex;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  margin: 0;
  color: #fff;
  padding: 0 16px;
  font-weight: 700;
  font-size: 13px;
  font-family: "Noto Sans", sans-serif;
  text-decoration: none;
  text-align: center;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: linear-gradient(135deg, #f95776 0%, #ff4f6f 100%);
  box-shadow: 0 10px 20px rgba(249, 87, 118, 0.22);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  -webkit-transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.i_become_ceator_link a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(249, 87, 118, 0.26);
}
@media screen and (max-width: 700px) {
  .i_become_creator_wrapper {
    padding: 18px 16px 16px;
    border-radius: 18px;
    -webkit-border-radius: 18px;
  }
  .i_become_creator_content {
    align-items: center;
    gap: 14px;
  }
  .i_become_creator_identity {
    align-items: center;
  }
  .i_become_creator_icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
  }
  .i_become_creator_title {
    font-size: 19px;
    max-width: 220px;
  }
  .i_become_title_mini {
    font-size: 13px;
    max-width: 220px;
  }
  .i_become_creator_backdrop {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
  }
  .i_become_creator_backdrop .i_bicome {
    max-width: 70px;
  }
  .i_become_ceator_link a {
    min-height: 42px;
  }
}
.i_sponsored_card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  padding: 12px;
  border: 1px solid #e5ebf4;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  overflow: hidden;
}
.i_sponsored_media {
  position: relative;
  width: 92px;
  min-width: 92px;
  height: 92px;
  overflow: hidden;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  background: #eef2f7;
}
.i_sponsored_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.i_sponsored_body {
  min-width: 0;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.i_sponsored_disclosure {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.i_sponsored_badge {
  display: inline-flex;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: #fff1f4;
  border: 1px solid #ffd5de;
  color: #e11d48;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Noto Sans", sans-serif;
}
.i_sponsored_caption {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  font-family: "Noto Sans", sans-serif;
}
.i_sponsored_title {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.32;
  font-family: "Noto Sans", sans-serif;
  color: #0f172a;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.i_sponsored_desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.i_sponsored_ads_link {
  font-weight: 700;
  font-size: 13px;
  color: #475569;
  font-family: "Noto Sans", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.i_sponsored_action {
  display: inline-flex;
  display: -webkit-inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  min-height: 38px;
  margin-top: 2px;
  padding: 0 14px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: #f6f8fc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}
.i_sponsored_cta_label {
  font-size: 12px;
  font-weight: 800;
  font-family: "Noto Sans", sans-serif;
  color: inherit;
}
.i_sponsored_action svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.sp_wrp_inline_ads .i_inline_ads_grid {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.sp_wrp_inline_ads .i_inline_ads_grid a {
  text-decoration: none;
}
.sp_wrp_inline_ads .i_sponsored_card {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 12px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  border: 1px solid #dfe7f2;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}
.sp_wrp_inline_ads .i_sponsored_media {
  width: 100%;
  min-width: 100%;
  height: clamp(180px, 26vw, 240px);
  max-height: 240px;
  aspect-ratio: auto;
  border-radius: 16px;
  -webkit-border-radius: 16px;
}
.sp_wrp_inline_ads .i_sponsored_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sp_wrp_inline_ads .i_sponsored_body {
  padding: 14px 4px 0;
  gap: 10px;
}
.sp_wrp_inline_ads .i_sponsored_badge {
  background: #fff0f3;
  border-color: #ffc7d4;
}
.sp_wrp_inline_ads .i_sponsored_title {
  font-size: 22px;
  line-height: 1.25;
  -webkit-line-clamp: 2;
}
.sp_wrp_inline_ads .i_sponsored_desc {
  font-size: 15px;
  line-height: 1.55;
  -webkit-line-clamp: 3;
}
.sp_wrp_inline_ads .i_sponsored_ads_link {
  font-size: 14px;
  color: #334155;
}
.sp_wrp_inline_ads .i_sponsored_action {
  width: 100%;
  justify-content: center;
  align-self: stretch;
  min-height: 46px;
  margin-top: 2px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  background: linear-gradient(135deg, #f95776 0%, #ff4f6f 100%);
  border: none;
  color: #fff;
  box-shadow: 0 14px 26px rgba(249, 87, 118, 0.2);
}
.sp_wrp_inline_ads .i_sponsored_cta_label {
  font-size: 13px;
}
@media (max-width: 768px) {
  .i_sponsored_card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }
  .i_sponsored_media {
    width: 84px;
    min-width: 84px;
    height: 84px;
  }
  .sp_wrp_inline_ads .i_sponsored_card {
    padding: 10px;
  }
  .sp_wrp_inline_ads .i_sponsored_media {
    height: 170px;
    max-height: 170px;
  }
  .sp_wrp_inline_ads .i_sponsored_body {
    padding: 12px 2px 0;
  }
  .sp_wrp_inline_ads .i_sponsored_title {
    font-size: 18px;
  }
  .sp_wrp_inline_ads .i_sponsored_desc {
    font-size: 14px;
  }
}
.i_sponsored_card,
.sp_wrp_inline_ads .i_sponsored_card,
.sp_wrp:not(.sp_wrp_inline_ads) .i_sponsored_card,
.blog-detail-ads-wrap .i_sponsored_card {
  display: grid;
}
.i_sponsored_card,
.sp_wrp_inline_ads .i_sponsored_card {
  grid-template-areas: "media body" "media action";
  grid-template-columns: 96px minmax(0, 1fr);
}
.sp_wrp:not(.sp_wrp_inline_ads) .i_sponsored_card,
.blog-detail-ads-wrap .i_sponsored_card {
  grid-template-areas: "media" "body" "action";
  grid-template-columns: 1fr;
}
.i_sponsored_media {
  grid-area: media;
}
.i_sponsored_body {
  grid-area: body;
}
.i_sponsored_action {
  grid-area: action;
}
.sp_wrp_inline_ads .i_sponsored_media {
  display: block;
  width: 96px;
  min-width: 96px;
  height: 96px;
  min-height: 96px;
  max-height: 96px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
}
.sp_wrp_inline_ads .i_sponsored_body {
  padding: 0;
  gap: 6px;
}
.sp_wrp_inline_ads .i_sponsored_title {
  font-size: 16px;
  line-height: 1.3;
}
.sp_wrp_inline_ads .i_sponsored_desc {
  font-size: 13px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
}
.sp_wrp_inline_ads .i_sponsored_action {
  display: inline-flex;
  width: auto;
  justify-content: center;
  align-self: start;
  min-height: 34px;
  margin-top: 2px;
  padding: 0 12px;
}
.sp_wrp:not(.sp_wrp_inline_ads) .i_sponsored_media,
.blog-detail-ads-wrap .i_sponsored_media {
  width: 100%;
  min-width: 100%;
  height: 138px;
  min-height: 138px;
  max-height: 138px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
}
.sp_wrp:not(.sp_wrp_inline_ads) .i_sponsored_media img,
.blog-detail-ads-wrap .i_sponsored_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sp_wrp:not(.sp_wrp_inline_ads) .i_sponsored_body,
.blog-detail-ads-wrap .i_sponsored_body {
  padding: 12px 0 0;
  gap: 8px;
}
.sp_wrp:not(.sp_wrp_inline_ads) .i_sponsored_title,
.blog-detail-ads-wrap .i_sponsored_title {
  font-size: 16px;
  line-height: 1.3;
}
.sp_wrp:not(.sp_wrp_inline_ads) .i_sponsored_desc,
.blog-detail-ads-wrap .i_sponsored_desc {
  font-size: 13px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
}
.sp_wrp:not(.sp_wrp_inline_ads) .i_sponsored_action,
.blog-detail-ads-wrap .i_sponsored_action {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-self: stretch;
  min-height: 38px;
  margin-top: 8px;
  padding: 0 12px;
}
@media (max-width: 768px) {
  .i_sponsored_card,
  .sp_wrp_inline_ads .i_sponsored_card {
    grid-template-columns: 84px minmax(0, 1fr);
  }
  .sp_wrp_inline_ads .i_sponsored_media {
    width: 84px;
    min-width: 84px;
    height: 84px;
    min-height: 84px;
    max-height: 84px;
  }
}
.sp_wrp_inline_ads .i_inline_ads_grid > a {
  display: block;
  width: 100%;
  text-decoration: none;
}
.sp_wrp_inline_ads .i_inline_ads_grid > a > .i_sponsored_card {
  display: grid;
  grid-template-areas: "media body";
  grid-template-columns: 200px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  border: 1px solid #dfe7f2;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}
.sp_wrp_inline_ads
  .i_inline_ads_grid
  > a
  > .i_sponsored_card
  .i_sponsored_media {
  grid-area: media;
  width: 200px;
  min-width: 200px;
  height: 156px;
  min-height: 156px;
  max-height: 156px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  overflow: hidden;
  background: #eef2f7;
}
.sp_wrp_inline_ads
  .i_inline_ads_grid
  > a
  > .i_sponsored_card
  .i_sponsored_media
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sp_wrp_inline_ads
  .i_inline_ads_grid
  > a
  > .i_sponsored_card
  .i_sponsored_body {
  grid-area: body;
  min-width: 0;
  padding: 0;
  gap: 8px;
}
.sp_wrp_inline_ads
  .i_inline_ads_grid
  > a
  > .i_sponsored_card
  .i_sponsored_disclosure {
  gap: 10px;
}
.sp_wrp_inline_ads
  .i_inline_ads_grid
  > a
  > .i_sponsored_card
  .i_sponsored_badge {
  min-height: 22px;
  padding: 0 8px;
  font-size: 9px;
  letter-spacing: 0.05em;
  background: #fff3f6;
  border-color: #ffcddb;
}
.sp_wrp_inline_ads
  .i_inline_ads_grid
  > a
  > .i_sponsored_card
  .i_sponsored_caption {
  font-size: 10px;
  font-weight: 400;
  color: #64748b;
}
.sp_wrp_inline_ads
  .i_inline_ads_grid
  > a
  > .i_sponsored_card
  .i_sponsored_title {
  font-size: 18px;
  line-height: 1.28;
  font-weight: 800;
  color: #0f172a;
  -webkit-line-clamp: 2;
}
.sp_wrp_inline_ads
  .i_inline_ads_grid
  > a
  > .i_sponsored_card
  .i_sponsored_desc {
  font-size: 14px;
  line-height: 1.45;
  color: #5b677d;
  -webkit-line-clamp: 2;
}
.sp_wrp_inline_ads
  .i_inline_ads_grid
  > a
  > .i_sponsored_card
  .i_sponsored_ads_link {
  font-size: 13px;
  font-weight: 800;
  color: #334155;
}
.sp_wrp_inline_ads
  .i_inline_ads_grid
  > a
  > .i_sponsored_card
  .i_sponsored_action {
  display: none;
}
@media (max-width: 980px) {
  .sp_wrp_inline_ads .i_inline_ads_grid > a > .i_sponsored_card {
    grid-template-areas: "media body";
    grid-template-columns: 160px minmax(0, 1fr);
  }
  .sp_wrp_inline_ads
    .i_inline_ads_grid
    > a
    > .i_sponsored_card
    .i_sponsored_media {
    width: 160px;
    min-width: 160px;
    height: 136px;
    min-height: 136px;
    max-height: 136px;
  }
}
@media (max-width: 700px) {
  .sp_wrp_inline_ads .i_inline_ads_grid > a > .i_sponsored_card {
    grid-template-areas: "media" "body";
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }
  .sp_wrp_inline_ads
    .i_inline_ads_grid
    > a
    > .i_sponsored_card
    .i_sponsored_media {
    width: 100%;
    min-width: 100%;
    height: 150px;
    min-height: 150px;
    max-height: 150px;
  }
  .sp_wrp_inline_ads
    .i_inline_ads_grid
    > a
    > .i_sponsored_card
    .i_sponsored_body {
    gap: 7px;
  }
  .sp_wrp_inline_ads
    .i_inline_ads_grid
    > a
    > .i_sponsored_card
    .i_sponsored_title {
    font-size: 17px;
  }
  .sp_wrp_inline_ads
    .i_inline_ads_grid
    > a
    > .i_sponsored_card
    .i_sponsored_desc {
    font-size: 13px;
  }
}
.i_sponsored_card {
  border-color: #ead9e6;
  background: linear-gradient(135deg, #fff7fb 0%, #ffffff 42%, #f5faff 100%);
  box-shadow: 0 12px 30px rgba(249, 87, 118, 0.08);
}
.i_sponsored_badge {
  background: linear-gradient(135deg, #fff1f5 0%, #ffe2ea 100%);
  border-color: #ffc1d1;
  color: #d61f56;
}
.i_sponsored_action {
  background: linear-gradient(135deg, #ff5f7d 0%, #ff7d66 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(249, 87, 118, 0.18);
}
.sp_wrp_inline_ads .i_inline_ads_grid > a > .i_sponsored_card {
  border-color: #ecdde7;
  background: linear-gradient(135deg, #fff7fb 0%, #ffffff 38%, #f3f9ff 100%);
  box-shadow: 0 16px 34px rgba(249, 87, 118, 0.08);
}
.sp_wrp_inline_ads
  .i_inline_ads_grid
  > a
  > .i_sponsored_card
  .i_sponsored_badge {
  background: linear-gradient(135deg, #fff0f5 0%, #ffdfe8 100%);
  border-color: #ffbfd0;
}

/* Post card redesign */
.i_post_body {
  border: none;
  border-radius: 24px;
  box-shadow: none;
  overflow: visible;
}
.i_post_body .i_post_u_images .i_post_image_swip_wrapper[data-html],
.i_post_body .i_post_u_images .i_post_image_swip_wrapper[data-html] .i_p_image,
.i_post_body
  .i_post_u_images
  .i_post_image_swip_wrapper[data-html]
  .i_inline_video_player,
.i_post_body .i_post_u_images .i_post_image_swip_wrapper[data-html] video {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}
.i_post_body_header {
  position: relative;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px 14px;
}
.user_post_user_avatar_plus {
  flex: none;
  position: relative;
}
.i_post_user_avatar {
  width: 56px;
  height: 56px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  box-shadow: none;
}
.i_post_i {
  align-items: flex-start;
  min-width: 0;
  padding: 0;
}
.i_post_username {
  padding-right: 56px;
  font-size: 14px;
  line-height: 1.2;
}
.i_post_username a {
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  max-width: none;
}
.i_post_shared_time {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
  padding-right: 56px;
  font-size: 13px;
  line-height: 1.45;
}
.i_post_menu {
  top: -2px;
  right: -2px;
}
.i_post_menu_dot {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 14px;
  border: none;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  box-shadow: 0 8px 18px rgba(25, 42, 70, 0.05);
}
.i_post_menu_dot:hover {
  background: linear-gradient(180deg, #fff8fb 0%, #eef5ff 100%);
}
.i_post_menu_dot svg {
  width: 20px;
  height: 20px;
}
.i_post_container {
  padding: 0 18px 16px;
}
.i_post_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #1c2436;
}
.i_post_footer {
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  padding: 6px 18px 12px;
  border-top: 1px solid #edf1f7;
}
.i_post_footer_item {
  width: auto;
  flex: 1 1 0;
  min-width: 0;
}
.i_post_item_btn {
  width: auto;
  min-height: 0;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 10px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #53627c;
  box-shadow: none;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}
.i_post_item_btn:hover {
  transform: none;
}
.i_post_item_btn svg {
  width: 22px;
  height: 22px;
  flex: none;
}
.i_post_item_btn svg[stroke]:not([stroke="none"]),
.i_post_item_btn svg [stroke]:not([stroke="none"]) {
  stroke: currentColor;
}
.i_post_item_btn svg[fill]:not([fill="none"]),
.i_post_item_btn svg [fill]:not([fill="none"]) {
  fill: currentColor;
}
.i_post_action_label {
  display: none;
}
.i_post_footer_item_tip .i_post_item_btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  padding: 0;
}
.i_post_footer_item_tip .i_post_item_btn svg {
  margin-right: 0;
  display: block;
}
.i_post_footer_item_utility .i_post_item_btn {
  min-width: 0;
}
.i_post_footer_item_like .i_post_item_btn:hover {
  background: #ffe8f0;
  color: #ff4d79;
}
.i_post_footer_item_like .i_post_item_btn:hover svg {
  fill: #ff4d79;
}
.i_post_footer_item_tip .i_post_item_btn:hover {
  background: #e9f9ef;
  color: #16a34a;
}
.i_post_footer_item_tip .i_post_item_btn:hover svg {
  fill: #16a34a;
}
.i_post_footer_item_comment .i_post_item_btn:hover {
  background: #eaf3ff;
  color: #3b82f6;
}
.i_post_footer_item_comment .i_post_item_btn:hover svg {
  fill: #3b82f6;
}
.i_post_footer_item_share .i_post_item_btn:hover {
  background: #f0ebff;
  color: #7c5cff;
}
.i_post_footer_item_share .i_post_item_btn:hover svg {
  fill: #7c5cff;
}
.i_post_footer_item_social .i_post_item_btn:hover {
  background: #e8fbf8;
  color: #0ea5a4;
}
.i_post_footer_item_social .i_post_item_btn:hover svg {
  fill: #0ea5a4;
}
.i_post_footer_item_save .i_post_item_btn:hover {
  background: #fff3dd;
  color: #f59e0b;
}
.i_post_footer_item_save .i_post_item_btn.in_saved {
  color: #f59e0b;
}
.i_post_footer_item_save .i_post_item_btn:hover svg {
  fill: #f59e0b;
}
.i_post_action_count {
  min-width: 0;
  height: auto;
  padding: 0;
  margin-left: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: #66758e;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
}
.i_post_comments_wrapper {
  padding: 0 18px 18px;
}
.i_post_comments_box {
  border-top: 1px solid #edf1f7;
  padding: 16px 0 0;
}
.i_comment_reply_context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f7f7f7;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 6px 10px 10px;
  border-bottom: 1px dashed #d8e1ed;
  font-size: 12px;
  color: #555555;
}
.reply_context_text {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  color: #61708b;
}
.cancel_reply {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #eef3fa;
}
.cancel_reply svg {
  width: 14px;
  height: 14px;
  fill: #6c7a91;
}
@media only screen and (max-width: 768px) {
  .i_post_body {
    border-radius: 20px;
  }
  .i_post_body_header {
    gap: 12px;
    padding: 16px 14px 12px;
  }
  .i_post_user_avatar {
    width: 48px;
    height: 48px;
  }
  .i_post_username {
    padding-right: 46px;
    font-size: 14px;
  }
  .i_post_shared_time {
    margin-top: 5px;
    padding-right: 46px;
    font-size: 12px;
  }
  .i_post_container {
    padding: 0 14px 14px;
  }
  .i_post_text {
    font-size: 15px;
    line-height: 1.65;
  }
  .i_post_footer {
    gap: 0;
    padding: 6px 14px 12px;
  }
  .i_post_footer_item {
    width: auto;
    flex: 1 1 0;
  }
  .i_post_item_btn {
    padding: 9px;
  }
  .i_post_item_btn svg {
    width: 20px;
    height: 20px;
  }
  .i_post_footer_item_tip .i_post_item_btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
  .i_post_comments_wrapper {
    padding: 0 14px 14px;
  }
  .i_post_comments_box {
    padding-top: 14px;
  }
}
body.post_menu_modal_open {
  overflow: hidden;
}
.i_post_menu_modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  z-index: 1202;
}
.i_post_menu_modal.dblock {
  display: flex !important;
}
.i_post_menu_modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.i_post_menu_modal_dialog {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: auto;
}
.i_post_menu_modal_mount {
  width: 100%;
}
.i_post_menu_modal_cancel {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 18px;
  background: #ffffff;
  color: #111827;
  font-family: "Noto Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
  cursor: pointer;
}
.i_post_menu_modal_cancel:hover {
  background: #f8fafc;
}
.i_post_menu_container.in_post_menu_modal {
  position: static;
  top: auto;
  right: auto;
  width: 100%;
  min-width: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.i_post_menu_container.in_post_menu_modal .arrow {
  display: none;
}
.i_post_menu_container.in_post_menu_modal .i_post_menu_item_wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 28px 54px rgba(15, 23, 42, 0.18);
}
.i_post_menu_container.in_post_menu_modal .i_post_menu_item_out {
  min-height: 60px;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid #edf2f7;
}
.i_post_menu_container.in_post_menu_modal .i_post_menu_item_out:last-child {
  border-bottom: none;
}
.i_post_menu_container.in_post_menu_modal .i_opennewtab {
  text-decoration: none;
}
.i_post_menu_container.in_post_menu_modal .i_opennewtab .i_post_menu_item_out {
  color: #303030;
}
.i_post_menu_container.in_post_menu_modal .i_post_menu_item_out svg,
.i_post_menu_container.in_post_menu_modal .i_post_menu_item_out span svg {
  margin-right: 0;
}
.i_post_menu_container.in_post_menu_modal .edtp,
.i_post_menu_container.in_post_menu_modal .delp,
.i_post_menu_container.in_post_menu_modal .rpp {
  color: #ef4444;
}
.i_post_menu_container.in_post_menu_modal .edtp svg,
.i_post_menu_container.in_post_menu_modal .delp svg,
.i_post_menu_container.in_post_menu_modal .rpp svg {
  fill: #ef4444;
}
@media only screen and (max-width: 700px) {
  .i_post_menu_modal {
    padding: 20px 12px;
  }
  .i_post_menu_modal_dialog {
    width: min(100%, calc(100vw - 24px));
    gap: 8px;
  }
  .i_post_menu_modal_cancel {
    min-height: 50px;
    border-radius: 16px;
    font-size: 16px;
  }
  .i_post_menu_container.in_post_menu_modal .i_post_menu_item_wrapper {
    border-radius: 18px;
  }
  .i_post_menu_container.in_post_menu_modal .i_post_menu_item_out {
    min-height: 56px;
    padding: 14px 18px;
    font-size: 16px;
  }
}
/* Comment composer refresh */
.i_comment_form {
  align-items: flex-start;
  gap: 12px;
}
.i_post_user_comment_avatar {
  width: 44px;
  height: 44px;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
  align-self: flex-start;
}
.i_comment_form_textarea {
  position: relative;
  flex: 1 1 auto;
  min-height: 108px;
  padding: 14px 18px 54px 18px;
  border-radius: 28px;
  border: 1px solid #dfe7f2;
  background: linear-gradient(180deg, #f7f9fd 0%, #f2f5fa 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}
.i_comment_form_textarea:focus-within {
  border-color: #d1ddea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 0 0 4px rgba(226, 232, 240, 0.45);
}
.i_comment_t_body {
  padding-right: 0;
}
.comment {
  min-height: 34px;
  padding: 2px 0 0;
  font-size: 16px;
  line-height: 1.45;
  color: #334155;
}
.i_comment_footer {
  top: auto;
  left: 18px;
  right: 18px;
  bottom: 14px;
  padding: 0;
}
.i_comment_fast_answers {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.i_fa_body {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: transparent;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.i_fa_body:hover {
  transform: none;
  background: rgba(148, 163, 184, 0.14);
}
.i_fa_body svg {
  width: 18px;
  height: 18px;
  fill: #64748b;
}
.i_fa_body.sndcom {
  margin-left: auto;
  width: 36px;
  height: 36px;
}
.i_fa_body.sndcom:hover {
  background: rgba(99, 115, 150, 0.14);
}
@media only screen and (max-width: 768px) {
  .i_comment_form {
    gap: 10px;
  }
  .i_post_user_comment_avatar {
    width: 40px;
    height: 40px;
  }
  .i_comment_form_textarea {
    min-height: 96px;
    padding: 12px 14px 48px 14px;
    border-radius: 24px;
  }
  .i_comment_footer {
    left: 14px;
    right: 14px;
    bottom: 10px;
  }
  .i_comment_fast_answers {
    justify-content: space-between;
    gap: 6px;
  }
  .comment {
    font-size: 15px;
  }
  .i_fa_body {
    width: 32px;
    height: 32px;
  }
  .i_fa_body svg {
    width: 17px;
    height: 17px;
  }
  .i_fa_body.sndcom {
    width: 34px;
    height: 34px;
  }
}
/* Comment composer collapsed state */
.i_comment_form_textarea {
  box-sizing: border-box;
  min-height: 44px;
  height: 44px;
  padding: 10px 16px;
  padding-right: 56px;
  border-radius: 24px;
}
.i_comment_form_textarea .comment {
  min-height: 24px;
  padding: 0;
  line-height: 24px;
}
.i_comment_form_textarea .i_comment_footer {
  top: 50%;
  left: auto;
  right: 10px;
  bottom: auto;
  transform: translateY(-50%);
}
.i_comment_form_textarea .i_comment_fast_answers {
  width: auto;
  gap: 0;
}
.i_comment_form_textarea .i_fa_body:not(.sndcom) {
  display: none;
}
.i_comment_form_textarea .i_fa_body.sndcom {
  width: 32px;
  height: 32px;
  margin-left: 0;
}
.i_comment_form_textarea.comment-composer-expanded {
  height: auto;
  min-height: 108px;
  padding: 14px 18px 54px 18px;
  border-radius: 28px;
}
.i_comment_form_textarea.comment-composer-expanded .comment {
  min-height: 34px;
  max-height: 86px;
  overflow-y: auto;
  padding: 2px 0 0;
  line-height: 1.45;
}
.i_comment_form_textarea.comment-composer-expanded .i_comment_footer {
  top: auto;
  left: 18px;
  right: 18px;
  bottom: 14px;
  transform: none;
}
.i_comment_form_textarea.comment-composer-expanded .i_comment_fast_answers {
  width: 100%;
  gap: 8px;
  justify-content: flex-end;
}
.i_comment_form_textarea.comment-composer-expanded .i_fa_body:not(.sndcom) {
  display: flex;
}
.i_comment_form_textarea.comment-composer-expanded .i_fa_body.sndcom {
  width: 36px;
  height: 36px;
  margin-left: 0;
}
@media only screen and (max-width: 700px) {
  .i_comment_form_textarea {
    min-height: 40px;
    height: 40px;
    padding: 9px 14px;
    padding-right: 50px;
    border-radius: 22px;
  }
  .i_comment_form_textarea .comment {
    font-size: 15px;
    line-height: 22px;
  }
  .i_comment_form_textarea .i_comment_footer {
    right: 8px;
  }
  .i_comment_form_textarea .i_fa_body.sndcom {
    width: 30px;
    height: 30px;
  }
  .i_comment_form_textarea.comment-composer-expanded {
    height: auto;
    min-height: 96px;
    padding: 12px 14px 48px 14px;
    border-radius: 24px;
  }
  .i_comment_form_textarea.comment-composer-expanded .comment {
    max-height: 78px;
  }
  .i_comment_form_textarea.comment-composer-expanded .i_comment_footer {
    left: 14px;
    right: 14px;
    bottom: 10px;
  }
  .i_comment_form_textarea.comment-composer-expanded .i_comment_fast_answers {
    gap: 6px;
    justify-content: flex-end;
  }
  .i_comment_form_textarea.comment-composer-expanded .i_fa_body.sndcom {
    width: 34px;
    height: 34px;
    margin-left: 0;
  }
}
/* Comment tool popovers */
.comment_tool_popover.emojiBoxC,
.comment_tool_popover.stickersContainer {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: min(350px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  max-height: min(420px, calc(100vh - 24px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  z-index: 1204;
  border: 1px solid #e3eaf4;
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}
.comment_tool_popover[data-comment-popover-placement="top"] {
  transform-origin: bottom center;
}
.comment_tool_popover[data-comment-popover-placement="bottom"] {
  transform-origin: top center;
}
@media only screen and (max-width: 700px) {
  .comment_tool_popover.emojiBoxC,
  .comment_tool_popover.stickersContainer {
    width: min(360px, calc(100vw - 20px));
    max-width: calc(100vw - 20px);
    max-height: min(68vh, calc(100vh - 20px));
    border-radius: 18px;
  }
}
/* Reply density overrides */
.i_comment_replies {
  padding-left: 10px;
  width: calc(100% - 10px);
}
@media only screen and (max-width: 700px) {
  .i_comment_replies {
    padding-left: 8px;
    width: calc(100% - 8px);
  }
}
.i_u_comment_body_reply {
  gap: 4px;
  margin-bottom: 4px;
}
.i_u_comment_body_reply .i_post_user_commented_avatar_out {
  width: 28px;
  min-width: 28px;
  margin-top: 8px;
}
.i_u_comment_body_reply .i_post_user_commented_avatar {
  width: 24px;
  height: 24px;
}
.i_u_comment_body_reply .i_user_commented_body {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  max-width: none;
}
.i_u_comment_body_reply .i_user_comment_header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.i_u_comment_body_reply .i_user_commented_user_infos {
  margin-bottom: 0;
  font-size: 10px;
  line-height: 1.08;
}
.i_u_comment_body_reply .i_user_commented_user_infos a {
  align-items: center;
  line-height: 1.08;
}
.i_comment_replying_to {
  margin: 0 0 2px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.1;
  color: #7b8798;
}
.i_u_comment_body_reply .i_user_comment_text {
  display: block;
  width: 100%;
  max-width: none;
  min-width: 0;
  box-sizing: border-box;
  padding: 3px 10px 4px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  font-size: 13px;
  line-height: 1.14rem;
}
.i_u_comment_body_reply .i_comment_text_content {
  display: block;
  width: 100%;
  line-height: 1.14;
}
.i_u_comment_body_reply .i_comment_text_content p {
  margin: 0 0 1px;
}
.i_u_comment_body_reply .i_comment_text_content p:last-child {
  margin-bottom: 0;
}
.i_u_comment_body_reply .i_comment_text_content br {
  display: none;
}
.i_u_comment_body_reply .i_comment_like_time {
  align-items: center;
  padding-top: 0;
}
.i_u_comment_body_reply .i_comment_reply,
.i_u_comment_body_reply .i_comment_like_sum,
.i_u_comment_body_reply .i_comment_time {
  font-size: 11px;
}
.i_u_comment_body_reply .i_comment_item_btn,
.i_u_comment_body_reply .i_comment_call_popup {
  padding: 6px;
}
.i_u_comment_body_reply .i_comment_item_btn svg,
.i_u_comment_body_reply .i_comment_call_popup svg {
  width: 13px;
  height: 13px;
}
@media only screen and (max-width: 700px) {
  .i_u_comment_body_reply {
    gap: 4px;
    margin-bottom: 4px;
  }
  .i_u_comment_body_reply .i_post_user_commented_avatar_out {
    width: 26px;
    min-width: 26px;
    margin-top: 8px;
  }
  .i_u_comment_body_reply .i_post_user_commented_avatar {
    width: 24px;
    height: 24px;
  }
  .i_comment_replying_to {
    margin: 0 0 2px;
    font-size: 9px;
  }
  .i_u_comment_body_reply .i_user_commented_user_infos {
    margin-bottom: 0;
    font-size: 10px;
  }
  .i_u_comment_body_reply .i_user_comment_text {
    padding: 3px 8px 4px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    font-size: 12px;
    line-height: 1.06rem;
  }
  .i_u_comment_body_reply .i_comment_like_time {
    padding-top: 0;
  }
  .i_u_comment_body_reply .i_comment_reply,
  .i_u_comment_body_reply .i_comment_like_sum,
  .i_u_comment_body_reply .i_comment_time {
    font-size: 10px;
  }
  .i_u_comment_body_reply .i_comment_item_btn,
  .i_u_comment_body_reply .i_comment_call_popup {
    padding: 6px;
  }
}
/* Facebook-like comment density */
.i_u_comment_body .i_user_commented_user_infos {
  margin-bottom: 3px;
}
.i_u_comment_body .i_user_comment_text {
  width: 100%;
  max-width: none;
  padding: 8px 12px;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  line-height: 1.22rem;
}
.i_u_comment_body .i_comment_like_time {
  padding-top: 2px;
}
.i_comment_replies {
  padding-left: 0;
  width: 100%;
}
.i_comment_replies .i_u_comment_body_reply {
  gap: 0;
}
.i_comment_replies .i_u_comment_body_reply .i_post_user_commented_avatar_out {
  margin-left: -22px;
}
.i_u_comment_body_reply .i_user_commented_body {
  margin-left: 0;
  width: 100%;
}
.i_u_comment_body_reply .i_user_comment_header {
  gap: 1px;
  width: 100%;
}
.i_u_comment_body_reply .i_user_comment_text {
  display: block;
  width: 100%;
  max-width: none;
  padding: 4px 12px 5px;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  line-height: 1.1rem;
}
.i_u_comment_body_reply .i_comment_text_content {
  display: block;
  width: 100%;
}
.i_u_comment_body_reply .i_comment_like_time {
  padding-top: 0;
}
@media only screen and (max-width: 700px) {
  .i_u_comment_body .i_user_comment_text {
    width: 100%;
    max-width: none;
    padding: 7px 10px;
    line-height: 1.14rem;
  }
  .i_comment_replies {
    padding-left: 0;
    width: 100%;
  }
  .i_comment_replies .i_u_comment_body_reply .i_post_user_commented_avatar_out {
    margin-left: -14px;
  }
  .i_u_comment_body_reply .i_user_commented_body {
    margin-left: 0;
    width: 100%;
  }
  .i_u_comment_body_reply .i_user_comment_text {
    width: 100%;
    max-width: none;
    padding: 4px 10px 5px;
    line-height: 1.04rem;
  }
}
/* Edit comment modal */
.edit_comment_modal {
  padding: 24px 16px;
}
.edit_comment_modal .edit_comment_modal_shell {
  width: min(620px, calc(100vw - 32px));
  max-width: 620px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}
.edit_comment_modal .edit_comment_modal_content {
  padding: 0;
}
.edit_comment_modal .edit_comment_modal_header {
  position: relative;
  justify-content: flex-start;
  padding: 24px 28px 18px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  text-align: left;
}
.edit_comment_modal .edit_comment_modal_title_wrap {
  min-width: 0;
  padding-right: 72px;
}
.edit_comment_modal .edit_comment_modal_title {
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.edit_comment_modal .edit_comment_modal_close {
  right: 22px;
  top: 18px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid #dce5f0;
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.14);
}
.edit_comment_modal .edit_comment_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}
.edit_comment_modal .edit_comment_modal_close svg {
  width: 19px;
  height: 19px;
  fill: #5b6781;
}
.edit_comment_modal .edit_comment_modal_body {
  padding: 24px 28px 22px;
  background: linear-gradient(180deg, #fbfcff 0%, #f7faff 100%);
}
.edit_comment_modal .edit_comment_modal_label {
  display: block;
  margin-bottom: 12px;
  color: #53627c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.edit_comment_modal .edit_comment_modal_textarea_shell {
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  border: 1px solid #dde6f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}
.edit_comment_modal .edit_comment_modal_textarea_shell:focus-within {
  border-color: #cad8ea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 0 0 4px rgba(226, 232, 240, 0.55);
}
.edit_comment_modal .edit_comment_modal_textarea {
  min-height: 170px;
  padding: 18px 18px 20px;
  border: none;
  background: transparent;
  border-radius: 22px;
  font-size: 16px;
  line-height: 1.65;
  color: #1f2b45;
}
.edit_comment_modal .edit_comment_modal_textarea::placeholder {
  color: #9aa5b8;
}
.edit_comment_modal .edit_comment_modal_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 18px 28px 24px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-top: 1px solid #e8eef7;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
}
.edit_comment_modal .edit_comment_save_btn {
  float: none;
  min-width: 132px;
  padding: 13px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff587c 0%, #ff7b92 100%);
  box-shadow: 0 16px 32px rgba(255, 88, 124, 0.24);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}
.edit_comment_modal .edit_comment_save_btn:hover {
  background: linear-gradient(135deg, #ff4d73 0%, #ff7089 100%);
}
@media only screen and (max-width: 700px) {
  .edit_comment_modal {
    padding: 16px 12px;
  }
  .edit_comment_modal .edit_comment_modal_shell {
    width: min(100%, calc(100vw - 24px));
    border-radius: 22px;
  }
  .edit_comment_modal .edit_comment_modal_header {
    padding: 20px 20px 16px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }
  .edit_comment_modal .edit_comment_modal_title_wrap {
    padding-right: 60px;
  }
  .edit_comment_modal .edit_comment_modal_title {
    font-size: 17px;
  }
  .edit_comment_modal .edit_comment_modal_close {
    right: 16px;
    top: 14px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
  .edit_comment_modal .edit_comment_modal_body {
    padding: 18px 20px 18px;
    background: linear-gradient(180deg, #fbfcff 0%, #f7faff 100%);
  }
  .edit_comment_modal .edit_comment_modal_textarea {
    min-height: 150px;
    padding: 16px;
    font-size: 15px;
  }
  .edit_comment_modal .edit_comment_modal_footer {
    padding: 16px 20px 20px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }
  .edit_comment_modal .edit_comment_save_btn {
    width: 100%;
  }
}
/* Comment thread connectors */
.i_u_comment_body {
  position: relative;
  align-items: flex-start;
  gap: 10px;
}
.i_post_user_commented_avatar_out {
  position: relative;
  width: 38px;
  min-width: 38px;
  display: flex;
  justify-content: center;
  z-index: 4;
}
.i_u_comment_body .i_post_user_commented_avatar {
  margin: 0;
}
.i_u_comment_body_has_replies::before {
  content: none;
}
.i_comment_replies {
  position: relative;
  margin-top: 8px;
  margin-left: 0;
  padding-left: 22px;
  border-left: none;
  width: calc(100% - 22px);
  box-sizing: border-box;
}
.i_comment_replies::before {
  content: none;
}
.i_u_comment_body_reply {
  margin-bottom: 12px;
}
.i_u_comment_body_reply::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -67px;
  width: 72px;
  height: 21px;
  border-left: 2px solid #d9e1ec;
  border-bottom: 2px solid #d9e1ec;
  border-bottom-left-radius: 16px;
  z-index: 2;
}
.i_u_comment_body_reply::after {
  content: "";
  position: absolute;
  left: -67px;
  width: 2px;
  background: #d9e1ec;
  border-radius: 999px;
  z-index: 0;
}
.i_u_comment_body_reply:first-child::after {
  top: -121px;
  bottom: -7px;
}
.i_u_comment_body_reply:not(:first-child)::after {
  top: -12px;
  bottom: -12px;
}
.i_u_comment_body_reply:last-child::after {
  bottom: auto;
  height: 18px;
}
.i_u_comment_body_reply:only-child::before {
  top: -121px;
  height: 143px;
}
.i_u_comment_body_reply:only-child::after {
  content: none;
}
@media only screen and (max-width: 700px) {
  .i_post_user_commented_avatar_out {
    width: 34px;
    min-width: 34px;
  }
  .i_u_comment_body_reply::before {
    top: -5px;
    left: -65px;
    width: 69px;
    height: 20px;
    border-bottom-left-radius: 15px;
  }
  .i_u_comment_body_reply::after {
    left: -65px;
  }
  .i_u_comment_body_reply:first-child::after {
    top: -92px;
  }
  .i_u_comment_body_reply:last-child::after {
    height: 16px;
  }
  .i_u_comment_body_reply:only-child::before {
    top: -92px;
    height: 107px;
  }
  .i_u_comment_body_reply:only-child::after {
    content: none;
  }
}
.i_u_comment_body_reply {
  gap: 8px;
  margin-bottom: 6px;
}
.i_u_comment_body_reply .i_post_user_commented_avatar_out {
  width: 34px;
  min-width: 34px;
  margin-top: 8px;
}
.i_u_comment_body_reply .i_post_user_commented_avatar {
  width: 24px;
  height: 24px;
}
.i_u_comment_body_reply .i_user_commented_body {
  width: auto;
  min-width: 0;
  max-width: min(100%, 760px);
}
.i_u_comment_body_reply .i_user_comment_header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.i_u_comment_body_reply .i_user_commented_user_infos {
  margin-bottom: 2px;
  font-size: 12px;
  line-height: 1.15;
}
.i_u_comment_body_reply .i_user_commented_user_infos a {
  align-items: center;
  line-height: 1.15;
}
.i_comment_replying_to {
  margin: 1px 0 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #7b8798;
}
.i_u_comment_body_reply .i_user_comment_text {
  display: inline-block;
  width: auto;
  max-width: min(100%, 720px);
  padding: 6px 12px 7px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  font-size: 14px;
  line-height: 1.32rem;
}
.i_u_comment_body_reply .i_comment_text_content {
  display: inline;
  width: auto;
  line-height: 1.32;
}
.i_u_comment_body_reply .i_comment_like_time {
  align-items: center;
  padding-top: 2px;
}
.i_u_comment_body_reply .i_comment_reply,
.i_u_comment_body_reply .i_comment_like_sum,
.i_u_comment_body_reply .i_comment_time {
  font-size: 12px;
}
.i_u_comment_body_reply .i_comment_time::before,
.i_u_comment_body_reply .i_comment_reply::after {
  width: 0.2rem;
  height: 0.2rem;
}
.i_u_comment_body_reply .i_comment_item_btn,
.i_u_comment_body_reply .i_comment_call_popup {
  padding: 8px;
}
.i_u_comment_body_reply .i_comment_item_btn svg,
.i_u_comment_body_reply .i_comment_call_popup svg {
  width: 14px;
  height: 14px;
}
@media only screen and (max-width: 700px) {
  .i_u_comment_body_reply {
    margin-bottom: 6px;
  }
  .i_u_comment_body_reply .i_post_user_commented_avatar_out {
    width: 32px;
    min-width: 32px;
    margin-top: 8px;
  }
  .i_u_comment_body_reply .i_post_user_commented_avatar {
    width: 24px;
    height: 24px;
  }
  .i_comment_replying_to {
    margin: 0 0 5px;
    font-size: 11px;
  }
  .i_u_comment_body_reply .i_user_commented_user_infos {
    margin-bottom: 1px;
    font-size: 11px;
  }
  .i_u_comment_body_reply .i_user_comment_text {
    max-width: min(100%, 100%);
    padding: 5px 10px 6px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: 13px;
    line-height: 1.26rem;
  }
  .i_u_comment_body_reply .i_comment_like_time {
    padding-top: 2px;
  }
  .i_u_comment_body_reply .i_comment_reply,
  .i_u_comment_body_reply .i_comment_like_sum,
  .i_u_comment_body_reply .i_comment_time {
    font-size: 11px;
  }
  .i_u_comment_body_reply .i_comment_item_btn,
  .i_u_comment_body_reply .i_comment_call_popup {
    padding: 7px;
  }
}
.edit_post_modal .edit_post_modal_shell {
  width: min(700px, calc(100vw - 32px));
  max-width: 700px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}
.edit_post_modal .edit_post_modal_content {
  padding: 0;
}
.edit_post_modal .edit_post_modal_header {
  position: relative;
  justify-content: flex-start;
  background: linear-gradient(180deg, #f7faff 0%, #f2f6fc 100%);
  border-bottom: 1px solid #e5ecf6;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  text-align: left;
}
.edit_post_modal .edit_post_modal_title_wrap {
  min-width: 0;
}
.edit_post_modal .edit_post_modal_title {
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.edit_post_modal .edit_post_modal_close {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  box-shadow: none;
}
.edit_post_modal .edit_post_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}
.edit_post_modal .edit_post_modal_close svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}
.edit_post_modal .edit_post_modal_label {
  color: #53627c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.edit_post_modal .edit_post_modal_textarea_shell {
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  border: 1px solid #dde6f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}
.edit_post_modal .edit_post_modal_textarea_shell:focus-within {
  border-color: #cad8ea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 0 0 4px rgba(226, 232, 240, 0.55);
}
.edit_post_modal .edit_post_modal_textarea {
  border: none;
  background: transparent;
  border-radius: 24px;
  font-size: 16px;
  line-height: 1.65;
  color: #1f2b45;
}
.edit_post_modal .edit_post_modal_textarea::placeholder {
  color: #9aa5b8;
}
.edit_post_modal .edit_post_poll_warning {
  margin: 0;
  border-radius: 16px;
  border: 1px solid #ffd6db;
  background: linear-gradient(180deg, #fff4f6 0%, #ffedf1 100%);
  color: #c53c58;
  font-size: 13px;
  font-weight: 600;
}
.edit_post_modal .edit_post_modal_footer {
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-top: 1px solid #e8eef7;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}
.edit_post_modal .edit_post_save_btn {
  border-radius: 16px;
  background: linear-gradient(135deg, #ff587c 0%, #ff7b92 100%);
  box-shadow: 0 16px 32px rgba(255, 88, 124, 0.24);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}
.edit_post_modal .edit_post_save_btn:hover {
  background: linear-gradient(135deg, #ff4d73 0%, #ff7089 100%);
}
@media only screen and (max-width: 700px) {
  .edit_post_modal .edit_post_modal_shell {
    width: min(100%, calc(100vw - 24px));
    border-radius: 22px;
  }
  .edit_post_modal .edit_post_modal_header {
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }
  .edit_post_modal .edit_post_modal_title {
    font-size: 17px;
  }
  .edit_post_modal .edit_post_modal_close {
    border-radius: 14px;
  }
  .edit_post_modal .edit_post_modal_textarea {
    font-size: 15px;
  }
  .edit_post_modal .edit_post_poll_warning {
    font-size: 12px;
  }
  .edit_post_modal .edit_post_modal_footer {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }
  .edit_post_modal .edit_post_save_btn {
    width: 100%;
  }
}
.edit_post_modal {
  padding: 14px 12px;
}
.edit_post_modal .edit_post_modal_header {
  padding: 18px 20px 12px;
}
.edit_post_modal .edit_post_modal_title_wrap {
  padding-right: 64px;
}
.edit_post_modal .edit_post_modal_close {
  right: 18px;
  top: 50%;
  padding: 10px;
  transform: translateY(-50%);
}
.edit_post_modal .edit_post_modal_body {
  gap: 12px;
  padding: 0;
  background: linear-gradient(180deg, #fbfcff 0%, #f7faff 100%);
}
.edit_post_modal .edit_post_modal_label {
  margin-bottom: 8px;
}
.edit_post_modal .edit_post_modal_textarea {
  min-height: 148px;
  padding: 12px 14px 14px;
}
.edit_post_modal .edit_post_modal_poll_section {
  gap: 10px;
}
.edit_post_modal .edit_post_poll_warning {
  padding: 9px 11px;
}
.edit_post_modal .edit_post_modal_footer {
  padding: 12px 20px 14px;
}
.edit_post_modal .edit_post_save_btn {
  min-width: 122px;
  padding: 11px 18px;
}
@media only screen and (max-width: 700px) {
  .edit_post_modal {
    padding: 12px 10px;
  }
  .edit_post_modal .edit_post_modal_header {
    padding: 16px 16px 11px;
  }
  .edit_post_modal .edit_post_modal_title_wrap {
    padding-right: 56px;
  }
  .edit_post_modal .edit_post_modal_close {
    right: 12px;
    padding: 9px;
  }
  .edit_post_modal .edit_post_modal_body {
    gap: 10px;
  }
  .edit_post_modal .edit_post_modal_textarea {
    min-height: 132px;
    padding: 12px 13px;
  }
  .edit_post_modal .edit_post_poll_warning {
    padding: 8px 10px;
  }
  .edit_post_modal .edit_post_modal_footer {
    padding: 12px 16px 16px;
  }
}
.edit_post_modal .edit_post_modal_poll_section {
  gap: 12px;
  padding: 18px 20px 0;
}
.edit_post_modal .edit_post_poll_builder {
  margin: 0;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid #e5ebf4;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f8fd 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transform: none;
}
.edit_post_modal .edit_post_poll_builder::before {
  content: none;
}
.edit_post_modal .edit_post_poll_builder.active {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border-color: #e5ebf4;
  transform: none;
}
.edit_post_modal .edit_post_poll_builder .poll_builder_head {
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e8eef7;
}
.edit_post_modal .edit_post_poll_builder .poll_builder_head_copy {
  min-width: 0;
}
.edit_post_modal .edit_post_poll_builder .poll_builder_title {
  color: #172033;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.15;
}
.edit_post_modal .edit_post_poll_builder .poll_builder_subtitle {
  margin-top: 7px;
  color: #66758f;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}
.edit_post_modal .edit_post_poll_builder .poll_options_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: pollOption;
}
.edit_post_modal .edit_post_poll_builder .poll_option_input {
  position: relative;
  counter-increment: pollOption;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}
.edit_post_modal .edit_post_poll_builder .poll_option_input::before {
  content: counter(pollOption);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff1f5 0%, #ffe3eb 100%);
  border: 1px solid #ffd0dc;
  color: #ff5b73;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.edit_post_modal .edit_post_poll_builder .poll_option_field {
  width: 100%;
  min-height: 56px;
  padding: 0 48px 0 56px;
  border-radius: 18px;
  border: 1px solid #dde6f1;
  background: #ffffff;
  color: #172033;
  font-size: 15px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.edit_post_modal .edit_post_poll_builder .poll_option_field::placeholder {
  color: #9aa5b8;
  font-weight: 500;
}
.edit_post_modal .edit_post_poll_builder .poll_option_input:focus-within .poll_option_field {
  border-color: #cad8ea;
  box-shadow: 0 0 0 4px rgba(226, 232, 240, 0.55);
}
.edit_post_modal .edit_post_poll_builder .remove_poll_option {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #7b8799;
  font-size: 18px;
  line-height: 1;
}
.edit_post_modal .edit_post_poll_builder .remove_poll_option:hover {
  background: #fff1f5;
  border-color: #ffd1dc;
  color: #ff5b73;
}
.edit_post_modal .edit_post_poll_builder .poll_actions {
  margin-top: 14px;
  align-items: center;
  gap: 12px;
}
.edit_post_modal .edit_post_poll_builder .add_poll_option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff5a76 0%, #ff7b92 100%);
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255, 90, 118, 0.18);
}
.edit_post_modal .edit_post_poll_builder .add_poll_option:hover {
  background: linear-gradient(135deg, #ff4f6e 0%, #ff7089 100%);
  border-color: transparent;
}
.edit_post_modal .edit_post_poll_builder .add_poll_option svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.edit_post_modal .edit_post_poll_builder .poll_limit_notice {
  margin-left: auto;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px dashed #d7dfeb;
  background: rgba(255, 255, 255, 0.72);
  color: #6c7a92;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (max-width: 700px) {
  .edit_post_modal .edit_post_modal_poll_section {
    gap: 10px;
    padding: 16px 16px 0;
  }
  .edit_post_modal .edit_post_poll_builder {
    padding: 16px;
    border-radius: 22px;
  }
  .edit_post_modal .edit_post_poll_builder .poll_builder_title {
    font-size: 19px;
  }
  .edit_post_modal .edit_post_poll_builder .poll_builder_subtitle {
    font-size: 12px;
  }
  .edit_post_modal .edit_post_poll_builder .poll_option_input::before {
    left: 12px;
    width: 26px;
    height: 26px;
    border-radius: 9px;
    font-size: 11px;
  }
  .edit_post_modal .edit_post_poll_builder .poll_option_field {
    min-height: 52px;
    padding: 0 44px 0 50px;
    border-radius: 16px;
    font-size: 14px;
  }
  .edit_post_modal .edit_post_poll_builder .remove_poll_option {
    width: 28px;
    height: 28px;
    right: 10px;
  }
  .edit_post_modal .edit_post_poll_builder .poll_actions {
    flex-direction: column;
    align-items: stretch;
  }
  .edit_post_modal .edit_post_poll_builder .add_poll_option {
    width: 100%;
    justify-content: center;
  }
  .edit_post_modal .edit_post_poll_builder .poll_limit_notice {
    width: 100%;
    margin-left: 0;
  }
}
.boost_post_modal {
  padding: 24px 16px;
}
.boost_post_modal .boost_post_modal_shell {
  width: min(680px, calc(100vw - 32px));
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}
.boost_post_modal .boost_post_modal_header {
  position: relative;
  padding: 22px 24px 18px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
}
.boost_post_modal .boost_post_modal_title_wrap {
  min-width: 0;
  padding-right: 64px;
}
.boost_post_modal .boost_post_modal_eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff0f4 0%, #ffe5eb 100%);
  border: 1px solid #ffd1dc;
  color: #d14a6b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.boost_post_modal .boost_post_modal_title {
  margin-top: 12px;
  color: #18233d;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}
.boost_post_modal .boost_post_modal_subtitle {
  margin-top: 8px;
  max-width: 480px;
  color: #66758f;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}
.boost_post_modal .boost_post_modal_close {
  right: 18px;
  top: 50%;
  padding: 10px;
  transform: translateY(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  box-shadow: none;
}
.boost_post_modal .boost_post_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}
.boost_post_modal .boost_post_modal_close svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: #5b6781;
}
.boost_post_modal .boost_post_modal_body {
  padding: 18px 24px 22px;
  background: linear-gradient(180deg, #f5f8fd 0%, #eef3fa 100%);
}
.boost_post_modal .boostListContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.boost_post_modal .boost_plan_item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid #dde6f1;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  box-shadow: none;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease;
}
.boost_post_modal .boost_plan_item:hover {
  background: linear-gradient(180deg, #fbfcff 0%, #f5f8fc 100%);
  border-color: #ccd9ea;
  transform: translateY(-1px);
}
.boost_post_modal .boost_plan_item_name_boost_plan_description {
  min-width: 0;
}
.boost_post_modal .boost_plan_item_icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  padding: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef5ff 0%, #e4ecf8 100%);
  border: 1px solid #dbe5f1;
  box-shadow: none;
}
.boost_post_modal .boost_plan_item:hover .boost_plan_item_icon,
.boost_post_modal .boost_plan_item:hover .boost_amount_item_icon {
  transform: none;
}
.boost_post_modal .boost_plan_item_icon svg {
  width: 34px;
  height: 34px;
}
.boost_post_modal .boost_plan_tier_star .boost_plan_item_icon {
  background: linear-gradient(135deg, #fff5db 0%, #ffe6a7 100%);
  border-color: #f5d48a;
}
.boost_post_modal .boost_plan_tier_hot .boost_plan_item_icon {
  background: linear-gradient(135deg, #ffe9dd 0%, #ffd0b0 100%);
  border-color: #f4b88a;
}
.boost_post_modal .boost_plan_tier_vip .boost_plan_item_icon {
  background: linear-gradient(135deg, #fff1d9 0%, #ffd89a 100%);
  border-color: #f1c676;
}
.boost_post_modal .boost_plan_tier_royal .boost_plan_item_icon {
  background: linear-gradient(135deg, #ffe8ee 0%, #ffd7e3 100%);
  border-color: #f2bfd1;
}
.boost_post_modal .boost_plan_item_name {
  margin: 0 0 6px;
  color: #18233d;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.boost_post_modal .boost_plan_description {
  color: #66758f;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}
.boost_post_modal .boost_plan_description b,
.boost_post_modal .boost_plan_description strong {
  color: #1f2b45;
  font-weight: 800;
}
.boost_post_modal .boost_amount_item_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 90px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #dde6f1;
  color: #ff5b73;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}
.boost_post_modal .boost_amount_item_icon svg {
  width: 18px;
  height: 18px;
  margin-left: 0;
}
.boost_post_modal .arrow {
  display: none;
}
.boost_post_modal .boost_post_is {
  margin-top: 4px;
  padding: 15px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  color: #9a5b13;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}
.boost_post_modal .warning_boost_post {
  margin: 0;
  border-radius: 18px;
  color: #be123c;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.55;
  padding: 12px 14px;
  background: linear-gradient(180deg, #fff1f2 0%, #ffe4e8 100%);
  border: 1px solid #fecdd3;
  display: none;
}
.boost_post_modal .warning_boost_post a {
  color: #c2410c;
  display: inline;
  text-decoration: none;
  font-weight: 800;
}
@media only screen and (max-width: 700px) {
  .boost_post_modal {
    padding: 16px 12px;
  }
  .boost_post_modal .boost_post_modal_shell {
    width: min(100%, calc(100vw - 24px));
    border-radius: 22px;
  }
  .boost_post_modal .boost_post_modal_header {
    padding: 18px 18px 16px;
  }
  .boost_post_modal .boost_post_modal_title_wrap {
    padding-right: 54px;
  }
  .boost_post_modal .boost_post_modal_title {
    margin-top: 10px;
    font-size: 19px;
  }
  .boost_post_modal .boost_post_modal_subtitle {
    font-size: 13px;
  }
  .boost_post_modal .boost_post_modal_close {
    right: 12px;
    padding: 9px;
    border-radius: 14px;
  }
  .boost_post_modal .boost_post_modal_body {
    padding: 16px 16px 18px;
  }
  .boost_post_modal .boost_plan_item {
    gap: 12px;
    padding: 12px;
    border-radius: 20px;
  }
  .boost_post_modal .boost_plan_item_icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
  }
  .boost_post_modal .boost_plan_item_icon svg {
    width: 30px;
    height: 30px;
  }
  .boost_post_modal .boost_plan_item_name {
    font-size: 15px;
  }
  .boost_post_modal .boost_plan_description {
    font-size: 12px;
  }
  .boost_post_modal .boost_amount_item_icon {
    min-width: 78px;
    min-height: 44px;
    padding: 0 12px;
    font-size: 18px;
  }
  .boost_post_modal .boost_amount_item_icon svg {
    width: 16px;
    height: 16px;
  }
  .boost_post_modal .boost_post_is {
    border-radius: 18px;
  }
}
.reshare_modal {
  padding: 24px 16px;
}
.reshare_modal .reshare_modal_shell {
  width: min(680px, calc(100vw - 32px));
  max-width: 680px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}
.reshare_modal .reshare_modal_content {
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: min(860px, calc(100vh - 48px));
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcff 0%, #f7faff 100%);
}
.reshare_modal .reshare_modal_header {
  flex: 0 0 auto;
  position: relative;
  justify-content: flex-start;
  padding: 20px 20px 14px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  text-align: left;
}
.reshare_modal .reshare_modal_title_wrap {
  min-width: 0;
  padding-right: 64px;
}
.reshare_modal .reshare_modal_title {
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.reshare_modal .reshare_modal_close {
  right: 18px;
  top: 50%;
  padding: 10px;
  transform: translateY(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  box-shadow: none;
}
.reshare_modal .reshare_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}
.reshare_modal .reshare_modal_close svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}
.reshare_modal .reshare_modal_body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  padding: 0 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f7faff 100%);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.reshare_modal .reshare_modal_comment {
  padding: 18px 0 0;
}
.reshare_modal .reshare_modal_label {
  display: block;
  margin-bottom: 8px;
  color: #53627c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.reshare_modal .reshare_modal_textarea_shell {
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  border: 1px solid #dde6f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}
.reshare_modal .reshare_modal_textarea_shell:focus-within {
  border-color: #cad8ea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 0 0 4px rgba(226, 232, 240, 0.55);
}
.reshare_modal .reshare_modal_textarea {
  min-height: 122px;
  padding: 14px 16px 16px;
  border: none;
  background: transparent;
  border-radius: 24px;
  font-size: 16px;
  line-height: 1.65;
  color: #1f2b45;
}
.reshare_modal .reshare_modal_textarea::placeholder {
  color: #9aa5b8;
}
.reshare_modal .reshare_modal_preview_section {
  padding: 0 0 14px;
}
.reshare_modal .reshare_modal_preview_shell {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  border: 1px solid #dde6f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.reshare_modal .reshare_modal_preview_shell .i_post_body_header {
  border-bottom: 1px solid #e7edf6;
}
.reshare_modal .reshare_modal_preview_shell .i_post_shared_time {
  color: #7b88a1;
}
.reshare_modal .reshare_modal_preview_shell .i_post_u_images {
  border-top: 1px solid #e7edf6;
}
.reshare_modal .reshare_modal_preview_shell .campaign_card.shared_campaign,
.reshare_modal .reshare_modal_preview_shell .poll_wrapper {
  margin: 18px;
}
.reshare_modal .reshare_modal_footer {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  align-items: center;
  padding: 14px 20px 18px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-top: 1px solid #e8eef7;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}
.reshare_modal .reshare_modal_submit {
  min-width: 122px;
  padding: 11px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff587c 0%, #ff7b92 100%);
  box-shadow: 0 16px 32px rgba(255, 88, 124, 0.22);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}
.reshare_modal .reshare_modal_submit:hover {
  background: linear-gradient(135deg, #ff4d73 0%, #ff7089 100%);
}
@media only screen and (max-width: 700px) {
  .reshare_modal {
    padding: 12px 10px;
  }
  .reshare_modal .reshare_modal_shell {
    width: min(100%, calc(100vw - 24px));
    border-radius: 22px;
  }
  .reshare_modal .reshare_modal_content {
    max-height: calc(100vh - 24px);
  }
  .reshare_modal .reshare_modal_header {
    padding: 16px 16px 11px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }
  .reshare_modal .reshare_modal_title_wrap {
    padding-right: 56px;
  }
  .reshare_modal .reshare_modal_title {
    font-size: 17px;
  }
  .reshare_modal .reshare_modal_close {
    right: 12px;
    padding: 9px;
    border-radius: 14px;
  }
  .reshare_modal .reshare_modal_body {
    gap: 10px;
  }
  .reshare_modal .reshare_modal_comment {
    padding: 16px 0 0;
  }
  .reshare_modal .reshare_modal_textarea {
    min-height: 108px;
    padding: 12px 13px;
    font-size: 15px;
  }
  .reshare_modal .reshare_modal_preview_section {
    padding: 0 0 12px;
  }
  .reshare_modal .reshare_modal_preview_shell {
    border-radius: 20px;
  }
  .reshare_modal .reshare_modal_preview_shell .campaign_card.shared_campaign,
  .reshare_modal .reshare_modal_preview_shell .poll_wrapper {
    margin: 14px;
  }
  .reshare_modal .reshare_modal_footer {
    padding: 12px 16px 16px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }
  .reshare_modal .reshare_modal_submit {
    width: 100%;
  }
}
.community_unsub_modal {
  padding: 24px 16px;
}
.community_unsub_modal .community_unsub_modal_shell {
  width: min(520px, calc(100vw - 32px));
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.2);
  overflow: hidden;
}
.community_unsub_modal .community_unsub_modal_content {
  display: flex;
  flex-direction: column;
}
.community_unsub_modal .community_unsub_modal_header {
  position: relative;
  justify-content: flex-start;
  padding: 20px 20px 14px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  text-align: left;
}
.community_unsub_modal .community_unsub_modal_title_wrap {
  min-width: 0;
  padding-right: 60px;
}
.community_unsub_modal .community_unsub_modal_title {
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.community_unsub_modal .community_unsub_modal_close {
  right: 18px;
  top: 50%;
  padding: 10px;
  transform: translateY(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  box-shadow: none;
}
.community_unsub_modal .community_unsub_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}
.community_unsub_modal .community_unsub_modal_close svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: #5b6781;
}
.community_unsub_modal .community_unsub_modal_body {
  padding: 24px 20px 10px;
  background: linear-gradient(180deg, #fbfcff 0%, #f7f9fd 100%);
}
.community_unsub_modal .community_unsub_modal_message {
  width: 100%;
  padding: 0;
  color: #44536b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}
.community_unsub_modal .community_unsub_modal_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-top: 1px solid #e8eef7;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
}
.community_unsub_modal .community_unsub_modal_footer .alertBtnLeft,
.community_unsub_modal .community_unsub_modal_footer .alertBtnRight {
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
}
.community_unsub_modal .community_unsub_modal_cancel {
  background: #eef3fb;
  border: 1px solid #d8e2ef;
  color: #52627e;
}
.community_unsub_modal .community_unsub_modal_cancel:hover {
  background: #f5f8fd;
  border-color: #ccd8e7;
  color: #30405d;
}
.community_unsub_modal .community_unsub_modal_submit {
  background: linear-gradient(135deg, #ff587c 0%, #ff7690 100%);
  border: 1px solid transparent;
  color: #ffffff;
}
.community_unsub_modal .community_unsub_modal_submit:hover {
  background: linear-gradient(135deg, #f74c73 0%, #ff6c87 100%);
}
@media only screen and (max-width: 700px) {
  .community_unsub_modal {
    padding: 12px 10px;
  }
  .community_unsub_modal .community_unsub_modal_shell {
    width: min(100%, calc(100vw - 24px));
    border-radius: 22px;
  }
  .community_unsub_modal .community_unsub_modal_header {
    padding: 16px 16px 12px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }
  .community_unsub_modal .community_unsub_modal_title_wrap {
    padding-right: 54px;
  }
  .community_unsub_modal .community_unsub_modal_title {
    font-size: 17px;
  }
  .community_unsub_modal .community_unsub_modal_close {
    right: 12px;
    padding: 9px;
    border-radius: 14px;
  }
  .community_unsub_modal .community_unsub_modal_body {
    padding: 20px 16px 8px;
    background: linear-gradient(180deg, #fbfcff 0%, #f7f9fd 100%);
  }
  .community_unsub_modal .community_unsub_modal_message {
    font-size: 14px;
  }
  .community_unsub_modal .community_unsub_modal_footer {
    gap: 10px;
    padding: 12px 16px 16px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }
  .community_unsub_modal .community_unsub_modal_footer .alertBtnLeft,
  .community_unsub_modal .community_unsub_modal_footer .alertBtnRight {
    flex: 1 1 0;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 14px;
  }
}
.subscription_unsub_modal {
  padding: 24px 16px;
}
.subscription_unsub_modal .subscription_unsub_modal_shell {
  width: min(540px, calc(100vw - 32px));
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.2);
  overflow: hidden;
}
.subscription_unsub_modal .subscription_unsub_modal_content {
  display: flex;
  flex-direction: column;
}
.subscription_unsub_modal .subscription_unsub_modal_header {
  position: relative;
  justify-content: flex-start;
  padding: 20px 20px 14px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  text-align: left;
}
.subscription_unsub_modal .subscription_unsub_modal_title_wrap {
  min-width: 0;
  padding-right: 60px;
}
.subscription_unsub_modal .subscription_unsub_modal_title {
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.subscription_unsub_modal .subscription_unsub_modal_close {
  right: 18px;
  top: 50%;
  padding: 10px;
  transform: translateY(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  box-shadow: none;
}
.subscription_unsub_modal .subscription_unsub_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}
.subscription_unsub_modal .subscription_unsub_modal_close svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}
.subscription_unsub_modal .subscription_unsub_modal_body {
  display: grid;
  gap: 14px;
  padding: 24px 20px 10px;
  background: linear-gradient(180deg, #fbfcff 0%, #f7f9fd 100%);
}
.subscription_unsub_modal .subscription_unsub_modal_profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid #e2e9f3;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}
.subscription_unsub_modal .subscription_unsub_modal_profile_avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef3fb;
}
.subscription_unsub_modal .subscription_unsub_modal_profile_avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subscription_unsub_modal .subscription_unsub_modal_profile_meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.subscription_unsub_modal .subscription_unsub_modal_profile_name {
  overflow: hidden;
  color: #18233d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.subscription_unsub_modal .subscription_unsub_modal_profile_username {
  overflow: hidden;
  color: #7b88a0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.subscription_unsub_modal .subscription_unsub_modal_message {
  margin: 0 !important;
  padding: 0 !important;
  color: #44536b !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  text-align: left !important;
}
.subscription_unsub_modal .subscription_unsub_modal_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-top: 1px solid #e8eef7;
}
.subscription_unsub_modal .subscription_unsub_modal_footer .alertBtnLeft,
.subscription_unsub_modal .subscription_unsub_modal_footer .alertBtnRight {
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
}
.subscription_unsub_modal .subscription_unsub_modal_cancel {
  background: #eef3fb;
  border: 1px solid #d8e2ef;
  color: #52627e;
}
.subscription_unsub_modal .subscription_unsub_modal_cancel:hover {
  background: #f5f8fd;
  border-color: #ccd8e7;
  color: #30405d;
}
.subscription_unsub_modal .subscription_unsub_modal_submit {
  background: linear-gradient(135deg, #ff587c 0%, #ff7690 100%);
  border: 1px solid transparent;
  color: #ffffff;
}
.subscription_unsub_modal .subscription_unsub_modal_submit:hover {
  background: linear-gradient(135deg, #f74c73 0%, #ff6c87 100%);
}
@media only screen and (max-width: 700px) {
  .subscription_unsub_modal {
    padding: 12px 10px;
  }
  .subscription_unsub_modal .subscription_unsub_modal_shell {
    width: min(100%, calc(100vw - 24px));
    border-radius: 22px;
  }
  .subscription_unsub_modal .subscription_unsub_modal_header {
    padding: 16px 16px 12px;
  }
  .subscription_unsub_modal .subscription_unsub_modal_title_wrap {
    padding-right: 54px;
  }
  .subscription_unsub_modal .subscription_unsub_modal_title {
    font-size: 17px;
  }
  .subscription_unsub_modal .subscription_unsub_modal_close {
    right: 12px;
    padding: 9px;
    border-radius: 14px;
  }
  .subscription_unsub_modal .subscription_unsub_modal_body {
    gap: 12px;
    padding: 20px 16px 8px;
  }
  .subscription_unsub_modal .subscription_unsub_modal_profile {
    padding: 12px;
    border-radius: 18px;
    gap: 12px;
  }
  .subscription_unsub_modal .subscription_unsub_modal_profile_avatar {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
  .subscription_unsub_modal .subscription_unsub_modal_profile_name {
    font-size: 14px;
  }
  .subscription_unsub_modal .subscription_unsub_modal_profile_username,
  .subscription_unsub_modal .subscription_unsub_modal_message {
    font-size: 13px !important;
  }
  .subscription_unsub_modal .subscription_unsub_modal_footer {
    gap: 10px;
    padding: 12px 16px 16px;
  }
  .subscription_unsub_modal .subscription_unsub_modal_footer .alertBtnLeft,
  .subscription_unsub_modal .subscription_unsub_modal_footer .alertBtnRight {
    flex: 1 1 0;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 14px;
  }
}
.boost_post_modal .boost_plan_item {
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas: "icon title" "desc desc" "price price";
  align-items: start;
}
.boost_post_modal .boost_plan_item_name_boost_plan_description {
  display: contents;
}
.boost_post_modal .boost_plan_item_icon {
  grid-area: icon;
  align-self: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
}
.boost_post_modal .boost_plan_item_icon svg {
  width: 24px;
  height: 24px;
}
.boost_post_modal .boost_plan_item_name {
  grid-area: title;
  align-self: center;
}
.boost_post_modal .boost_plan_description {
  grid-area: desc;
}
.boost_post_modal .boost_amount_item_icon {
  grid-area: price;
  width: 100%;
  justify-self: stretch;
}
@media only screen and (max-width: 700px) {
  .boost_post_modal .boost_plan_item {
    grid-template-columns: 42px minmax(0, 1fr);
  }
  .boost_post_modal .boost_plan_item_icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
  }
  .boost_post_modal .boost_plan_item_icon svg {
    width: 22px;
    height: 22px;
  }
}
/* Who can see modal redesign */
.i_choose_ws_modal .i_choose_ws_overlay.dblock {
  background: rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.i_choose_ws_modal .i_choose_ws_wrapper {
  width: min(520px, calc(100vw - 32px));
  min-width: 320px;
  border-radius: 28px;
  border: 1px solid #e4ebf5;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}
.i_choose_ws_modal .i_choose_ws_wrapper.dblock {
  flex-direction: column;
}
.i_choose_ws_modal .i_choose_ws_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid #e8eef7;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fc 100%);
}
.i_choose_ws_modal .whctt {
  padding: 0;
  border-radius: 0;
  color: #172033;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.12;
}
.i_choose_ws_modal .i_choose_ws_subtitle {
  margin-top: 8px;
  color: #66758f;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}
.i_choose_ws_modal .i_choose_ws_close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: auto;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid #dbe4f0;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}
.i_choose_ws_modal .i_choose_ws_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}
.i_choose_ws_modal .i_choose_ws_close svg {
  width: 15px;
  height: 15px;
  fill: #617089;
}
.i_choose_ws_modal .i_choose_ws_options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px 20px;
}
.i_choose_ws_modal .i_whoseech_menu_item_out {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid #e3eaf4;
  background: linear-gradient(180deg, #fbfcff 0%, #f6f9fd 100%);
  color: #1f2937;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.i_choose_ws_modal .i_whoseech_menu_item_out:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-color: #d2ddec;
  color: #172033;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}
.i_choose_ws_modal .i_whoseech_menu_item_out:hover svg {
  fill: inherit;
}
.i_choose_ws_modal .i_whoseech_menu_item_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff1f5 0%, #ffe5ec 100%);
  border: 1px solid #ffd3de;
}
.i_choose_ws_modal .i_whoseech_menu_item_icon svg {
  width: 22px !important;
  height: 22px !important;
  margin: 0;
  fill: #ff5b73;
}
.i_choose_ws_modal .i_whoseech_menu_item_title {
  color: #172033;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}
.i_choose_ws_modal .i_whoseech_menu_item_desc {
  margin-top: 5px;
  color: #6a7891;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}
.i_choose_ws_modal .i_whoseech_menu_item_check {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #d7deea;
  background: #ffffff;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}
.i_choose_ws_modal .i_whoseech_menu_item_check::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #ff5b73;
  transform: scale(0);
  transition: transform 0.18s ease;
}
.i_choose_ws_modal .i_whoseech_menu_item_out.wselected {
  color: #172033;
  border-color: #ffc6d4;
  background: linear-gradient(180deg, #fff8fb 0%, #fff1f5 100%);
  box-shadow: 0 16px 32px rgba(255, 91, 115, 0.1);
}
.i_choose_ws_modal
  .i_whoseech_menu_item_out.wselected
  .i_whoseech_menu_item_icon {
  background: linear-gradient(135deg, #ffeff4 0%, #ffe1ea 100%);
  border-color: #ffbfce;
}
.i_choose_ws_modal
  .i_whoseech_menu_item_out.wselected
  .i_whoseech_menu_item_title {
  color: #101827;
}
.i_choose_ws_modal
  .i_whoseech_menu_item_out.wselected
  .i_whoseech_menu_item_desc {
  color: #5f6f88;
}
.i_choose_ws_modal
  .i_whoseech_menu_item_out.wselected
  .i_whoseech_menu_item_check {
  border-color: #ff5b73;
  box-shadow: 0 0 0 4px rgba(255, 91, 115, 0.12);
}
.i_choose_ws_modal
  .i_whoseech_menu_item_out.wselected
  .i_whoseech_menu_item_check::after {
  transform: scale(1);
}
@media screen and (max-width: 700px) {
  .i_choose_ws_modal .i_choose_ws_wrapper {
    width: min(100%, calc(100vw - 20px));
    min-width: 0;
    border-radius: 24px;
  }
  .i_choose_ws_modal .i_choose_ws_head {
    padding: 18px 18px 16px;
    gap: 12px;
  }
  .i_choose_ws_modal .whctt {
    font-size: 20px;
  }
  .i_choose_ws_modal .i_choose_ws_subtitle {
    font-size: 13px;
  }
  .i_choose_ws_modal .i_choose_ws_close {
    padding: 9px;
    border-radius: 14px;
  }
  .i_choose_ws_modal .i_choose_ws_options {
    gap: 10px;
    padding: 16px;
  }
  .i_choose_ws_modal .i_whoseech_menu_item_out {
    grid-template-columns: 50px minmax(0, 1fr) 22px;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
  }
  .i_choose_ws_modal .i_whoseech_menu_item_icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
  .i_choose_ws_modal .i_whoseech_menu_item_icon svg {
    width: 20px !important;
    height: 20px !important;
  }
  .i_choose_ws_modal .i_whoseech_menu_item_title {
    font-size: 16px;
  }
  .i_choose_ws_modal .i_whoseech_menu_item_desc {
    font-size: 12px;
  }
}
/* Profile relation stats */
.i_profile_avatar_wrp {
  justify-content: flex-start;
  padding-left: 36px;
}
.i_profile_avatar {
  margin: 0;
}
.profile_relation_stats {
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 0;
  flex-wrap: wrap;
}
.i_u_profile_info > .profile_relation_stats {
  position: absolute;
  top: 5px;
  right: 36px;
  width: auto;
  max-width: calc(100% - 620px);
  margin-top: 0;
  justify-content: flex-end;
  z-index: 1;
}
.profile_relation_stats .i_p_ffs {
  width: auto;
  min-width: 0;
  padding: 0;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: rgba(248, 250, 252, 0.7);
}
.profile_relation_stats .i_p_ffs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  text-decoration: none;
  color: #162033;
  white-space: nowrap;
}
.profile_relation_stats .profile_relation_icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  background: rgba(15, 23, 42, 0.04);
}
.profile_relation_stats .profile_relation_icon svg {
  width: 14px;
  height: 14px;
  fill: #0f172a;
  margin: 0;
}
.profile_relation_stats .profile_relation_copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.profile_relation_stats .profile_relation_label {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  color: #4b5563;
}
.profile_relation_stats .profile_relation_value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: #111827;
}
.profile_relation_stats .i_p_ffs:hover {
  background: rgba(243, 246, 251, 0.92);
}
.profile_relation_stats .i_p_ffs:hover .profile_relation_label,
.profile_relation_stats .i_p_ffs:hover .profile_relation_value,
.profile_relation_stats .i_p_ffs:hover .profile_relation_icon svg {
  color: #f65169;
  fill: #f65169;
}
.profile_relation_stats .i_p_ffs.active_page_menu {
  background: rgba(246, 81, 105, 0.08) !important;
  color: inherit !important;
}
.profile_relation_stats .i_p_ffs.active_page_menu .profile_relation_label {
  color: #f65169;
}
.profile_relation_stats .i_p_ffs.active_page_menu .profile_relation_value,
.profile_relation_stats .i_p_ffs.active_page_menu .profile_relation_icon svg {
  color: #f65169;
  fill: #f65169;
}
.profile_relation_stats .i_p_ffs.active_page_menu .profile_relation_icon,
.profile_relation_stats .i_p_ffs.active_page_menu .profile_relation_value {
  background: rgba(246, 81, 105, 0.12);
}
/* Profile content menu */
.profile_content_menu {
  margin-top: 16px;
  padding: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.profile_content_menu_shell {
  width: 100%;
  margin-top: 24px;
  padding: 13px 18px 14px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.profile_content_menu_shell .profile_content_menu {
  margin-top: 0;
}
.profile_content_menu_shell.i_profile_i_container {
  max-width: 1240px;
  padding-top: 13px;
}
.profile_content_menu .i_profile_menu_middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  padding: 2px 0 0;
}
.profile_content_menu .i_profile_menu_item {
  width: auto;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  border: none;
  background: transparent;
}
.profile_content_menu .i_profile_menu_item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px;
  white-space: nowrap;
}
.profile_content_menu .i_p_sum {
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 22px;
  margin-bottom: 0;
  padding: 0 8px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: #111827;
}
.profile_content_menu .i_profile_menu_item_con {
  order: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
}
.profile_content_menu .i_profile_menu_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  background: transparent;
  flex: 0 0 auto;
}
.profile_content_menu .i_profile_menu_icon svg {
  width: 15px;
  height: 15px;
}
.profile_content_menu .i_profile_menu_item_name {
  font-size: 13px;
  font-weight: 600;
  color: #202938;
}
.profile_content_menu .i_profile_menu_item:hover {
  background: rgba(15, 23, 42, 0.045);
  transform: none;
}
.profile_content_menu .i_profile_menu_item:hover .i_p_sum,
.profile_content_menu .i_profile_menu_item:hover .i_profile_menu_item_name,
.profile_content_menu .i_profile_menu_item:hover svg {
  color: #f65169;
  fill: #f65169;
}
.profile_content_menu .i_profile_menu_item.active_page_menu {
  background: rgba(246, 81, 105, 0.08) !important;
}
.profile_content_menu .i_profile_menu_item.active_page_menu .i_p_sum {
  background: rgba(246, 81, 105, 0.16);
}
.profile_content_menu .i_profile_menu_item.active_page_menu .i_p_sum,
.profile_content_menu
  .i_profile_menu_item.active_page_menu
  .i_profile_menu_item_name,
.profile_content_menu .i_profile_menu_item.active_page_menu svg {
  color: #f65169 !important;
  fill: #f65169 !important;
}
.profile_content_menu
  .i_profile_menu_item.active_page_menu
  .i_profile_menu_icon {
  background: transparent;
}
@media screen and (max-width: 740px) {
  .i_profile_avatar_wrp {
    justify-content: center;
    padding-left: 0;
  }
  .i_profile_avatar {
    margin: 0 auto;
  }
  .i_u_profile_info > .profile_relation_stats {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 12px;
    max-width: none;
    justify-content: center;
  }
  .profile_relation_stats {
    position: static;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    max-width: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .profile_relation_stats::-webkit-scrollbar {
    display: none;
  }
  .profile_relation_stats .i_p_ffs {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .profile_relation_stats .i_p_ffs a {
    gap: 7px;
    min-height: 38px;
    padding: 0 10px;
  }
  .profile_relation_stats .profile_relation_icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
  }
  .profile_relation_stats .profile_relation_icon svg {
    width: 13px;
    height: 13px;
  }
  .profile_relation_stats .profile_relation_label {
    font-size: 11px;
  }
  .profile_relation_stats .profile_relation_value {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 10px;
  }
  .profile_content_menu {
    margin-top: 14px;
  }
  .profile_content_menu_shell {
    margin-top: 12px;
    padding: 12px 12px 8px;
    border-radius: 14px;
    -webkit-border-radius: 14px;
  }
  .profile_content_menu .i_profile_menu_middle {
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .profile_content_menu .i_profile_menu_middle::-webkit-scrollbar {
    display: none;
  }
  .profile_content_menu .i_profile_menu_item {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .profile_content_menu .i_profile_menu_item a {
    gap: 8px;
    min-height: 40px;
    padding: 7px 12px;
  }
  .profile_content_menu .i_p_sum {
    min-width: 22px;
    height: 20px;
    padding: 0 7px;
    font-size: 11px;
  }
  .profile_content_menu .i_profile_menu_icon {
    width: 14px;
    height: 14px;
  }
  .profile_content_menu .i_profile_menu_icon svg {
    width: 14px;
    height: 14px;
  }
  .profile_content_menu .i_profile_menu_item_name {
    font-size: 12px;
  }
}
/* Profile content menu */
.profile_content_menu {
  margin-top: 16px;
  padding: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.profile_content_menu_shell {
  width: 100%;
  margin-top: 24px;
  padding: 13px 18px 14px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.profile_content_menu_shell .profile_content_menu {
  margin-top: 0;
}
.profile_content_menu_shell.i_profile_i_container {
  max-width: 1240px;
  padding-top: 13px;
}
.profile_content_menu .i_profile_menu_middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  padding: 2px 0 0;
}
.profile_content_menu .i_profile_menu_item {
  width: auto;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  border: none;
  background: transparent;
}
.profile_content_menu .i_profile_menu_item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px;
  white-space: nowrap;
}
.profile_content_menu .i_p_sum {
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 22px;
  margin-bottom: 0;
  padding: 0 8px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: #111827;
}
.profile_content_menu .i_profile_menu_item_con {
  order: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
}
.profile_content_menu .i_profile_menu_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  background: transparent;
  flex: 0 0 auto;
}
.profile_content_menu .i_profile_menu_icon svg {
  width: 15px;
  height: 15px;
}
.profile_content_menu .i_profile_menu_item_name {
  font-size: 13px;
  font-weight: 600;
  color: #202938;
}
.profile_content_menu .i_profile_menu_item:hover {
  background: rgba(15, 23, 42, 0.045);
  transform: none;
}
.profile_content_menu .i_profile_menu_item:hover .i_p_sum,
.profile_content_menu .i_profile_menu_item:hover .i_profile_menu_item_name,
.profile_content_menu .i_profile_menu_item:hover svg {
  color: #f65169;
  fill: #f65169;
}
.profile_content_menu .i_profile_menu_item.active_page_menu {
  background: rgba(246, 81, 105, 0.08) !important;
}
.profile_content_menu .i_profile_menu_item.active_page_menu .i_p_sum {
  background: rgba(246, 81, 105, 0.16);
}
.profile_content_menu .i_profile_menu_item.active_page_menu .i_p_sum,
.profile_content_menu
  .i_profile_menu_item.active_page_menu
  .i_profile_menu_item_name,
.profile_content_menu .i_profile_menu_item.active_page_menu svg {
  color: #f65169 !important;
  fill: #f65169 !important;
}
.profile_content_menu
  .i_profile_menu_item.active_page_menu
  .i_profile_menu_icon {
  background: transparent;
}
@media (max-width: 1024px) {
  .profile_wrapper .pageMiddleRow {
    gap: 12px;
  }
  .profile_wrapper .pageMiddleRow .pageMiddleInfo {
    position: static;
    top: auto;
    align-self: auto;
  }
  .profile_wrapper .pageMiddleRow .pageMiddleInfo.profile_info_stuck_bottom {
    bottom: auto;
  }
}
@media screen and (max-width: 1180px) and (min-width: 741px) {
  .i_u_profile_info > .profile_relation_stats {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    max-width: none;
    margin-top: 18px;
    justify-content: center;
  }
  .profile_relation_stats {
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .profile_relation_stats::-webkit-scrollbar {
    display: none;
  }
  .profile_relation_stats .i_p_ffs {
    flex: 0 0 auto;
  }
  .profile_content_menu .i_profile_menu_middle {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .profile_content_menu .i_profile_menu_middle::-webkit-scrollbar {
    display: none;
  }
  .profile_content_menu .i_profile_menu_item {
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 740px) {
  .i_profile_avatar_wrp {
    justify-content: center;
    padding-left: 0;
  }
  .i_profile_avatar {
    margin: 0 auto;
  }
  .i_u_profile_info > .profile_relation_stats {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 12px;
    max-width: none;
    justify-content: center;
  }
  .profile_relation_stats {
    position: static;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    max-width: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .profile_relation_stats::-webkit-scrollbar {
    display: none;
  }
  .profile_relation_stats .i_p_ffs {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .profile_relation_stats .i_p_ffs a {
    gap: 7px;
    min-height: 38px;
    padding: 0 10px;
  }
  .profile_relation_stats .profile_relation_icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
  }
  .profile_relation_stats .profile_relation_icon svg {
    width: 13px;
    height: 13px;
  }
  .profile_relation_stats .profile_relation_label {
    font-size: 11px;
  }
  .profile_relation_stats .profile_relation_value {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 10px;
  }
  .profile_content_menu {
    margin-top: 14px;
  }
  .profile_content_menu_shell {
    margin-top: 12px;
    padding: 12px 12px 8px;
    border-radius: 14px;
    -webkit-border-radius: 14px;
  }
  .profile_content_menu .i_profile_menu_middle {
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .profile_content_menu .i_profile_menu_middle::-webkit-scrollbar {
    display: none;
  }
  .profile_content_menu .i_profile_menu_item {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .profile_content_menu .i_profile_menu_item a {
    gap: 8px;
    min-height: 40px;
    padding: 7px 12px;
  }
  .profile_content_menu .i_p_sum {
    min-width: 22px;
    height: 20px;
    padding: 0 7px;
    font-size: 11px;
  }
  .profile_content_menu .i_profile_menu_icon {
    width: 14px;
    height: 14px;
  }
  .profile_content_menu .i_profile_menu_icon svg {
    width: 14px;
    height: 14px;
  }
  .profile_content_menu .i_profile_menu_item_name {
    font-size: 12px;
  }
}

.highlight-modal_refined {
  justify-content: center;
  padding: 24px 16px;
  overflow: hidden;
}
.highlight-modal_refined .highlight_modal_shell {
  width: min(680px, calc(100vw - 32px));
  margin: 0 auto;
}
.highlight-modal_refined .highlight_modal_content {
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: min(860px, calc(100vh - 48px));
  border: none;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}
.highlight-modal_refined .highlight_modal_header {
  position: relative;
  justify-content: flex-start;
  padding: 20px 20px 14px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  text-align: left;
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
}
.highlight-modal_refined .highlight_modal_close {
  right: 18px;
  top: 50%;
  padding: 8px;
  transform: translateY(-50%);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  box-shadow: none;
}
.highlight-modal_refined .highlight_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}
.highlight-modal_refined .highlight_modal_close svg {
  width: 15px;
  height: 15px;
  fill: #5b6781;
}
.highlight-modal_refined .highlight_modal_body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px;
  overflow: auto;
}
.highlight-modal_refined .highlight_modal_field_title {
  padding: 16px 0 0;
}
.highlight-modal_refined .highlight_modal_field_panel {
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  border: 1px solid #dde6f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.highlight-modal_refined .highlight-label {
  margin-bottom: 8px;
  color: #53627c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.highlight-modal_refined .highlight-title-input {
  height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid #dde6f1;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  font-size: 14px;
  font-weight: 600;
  color: #1f2b45;
}
.highlight-modal_refined .highlight-title-input:focus {
  border-color: #cad8ea;
  box-shadow: 0 0 0 4px rgba(226, 232, 240, 0.55);
}
.highlight-modal_refined .highlight-cover-uploader {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}
.highlight-modal_refined .highlight-cover-preview {
  width: 112px;
  height: 112px;
  border-radius: 16px;
  background: #eef3f9;
  border: 1px dashed #d4dcea;
}
.highlight-modal_refined .highlight-cover-button {
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid #dce5f0;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  color: #1f2b45;
}
.highlight-modal_refined .highlight-cover-button:hover {
  transform: none;
  box-shadow: none;
  background: #ffffff;
  border-color: #ccd8e7;
}
.highlight-modal_refined .highlight-cover-hint {
  grid-column: 1 / -1;
  color: #66758f;
  font-size: 12px;
}
.highlight-modal_refined .highlight-story-grid {
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 12px;
  padding-top: 4px;
}
.highlight-modal_refined .highlight-story-thumb {
  border-radius: 16px;
  border: 1px solid #dde6f1;
}
.highlight-modal_refined
  .highlight-story-checkbox:checked
  + .highlight-story-thumb {
  box-shadow: 0 0 0 3px rgba(246, 81, 105, 0.14);
}
.highlight-modal_refined .highlight_modal_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 18px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-top: 1px solid #e8eef7;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.highlight-modal_refined .highlight_modal_footer .alertBtnLeft,
.highlight-modal_refined .highlight_modal_footer .alertBtnRight {
  min-width: 114px;
  height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}
.highlight-modal_refined .highlight_modal_footer .highlight-delete {
  margin-right: auto;
  color: #52607a;
  background: #ffffff;
  border: 1px solid #dce5f0;
}
.highlight-modal_refined .highlight_modal_footer .highlight-save {
  color: #ffffff;
  background: linear-gradient(135deg, #ff587c 0%, #ff7b92 100%);
  box-shadow: 0 10px 24px rgba(255, 88, 124, 0.18);
}
.highlight-modal_refined .highlight_modal_footer .highlight-save:hover {
  background: linear-gradient(135deg, #ff4d73 0%, #ff7089 100%);
}
.highlight-modal_refined .highlight_modal_footer .no-del {
  color: #52607a;
  background: #ffffff;
  border: 1px solid #dce5f0;
}
@media only screen and (max-width: 700px) {
  .highlight-modal_refined {
    padding: 12px 10px;
  }
  .highlight-modal_refined .highlight_modal_shell {
    width: min(100%, calc(100vw - 24px));
  }
  .highlight-modal_refined .highlight_modal_content {
    max-height: calc(100vh - 24px);
    border-radius: 20px;
  }
  .highlight-modal_refined .highlight_modal_header {
    padding: 16px 16px 11px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-size: 17px;
  }
  .highlight-modal_refined .highlight_modal_close {
    right: 12px;
    padding: 8px;
    border-radius: 12px;
  }
  .highlight-modal_refined .highlight_modal_body {
    gap: 10px;
    padding: 0 16px;
  }
  .highlight-modal_refined .highlight_modal_field_title {
    padding: 16px 0 0;
  }
  .highlight-modal_refined .highlight_modal_field_panel {
    padding: 14px;
    border-radius: 18px;
  }
  .highlight-modal_refined .highlight-label {
    font-size: 10px;
  }
  .highlight-modal_refined .highlight-title-input {
    height: 48px;
    padding: 0 13px;
    border-radius: 16px;
    font-size: 14px;
  }
  .highlight-modal_refined .highlight-cover-uploader {
    grid-template-columns: 1fr;
  }
  .highlight-modal_refined .highlight-cover-preview {
    width: 96px;
    height: 96px;
    border-radius: 14px;
  }
  .highlight-modal_refined .highlight-story-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }
  .highlight-modal_refined .highlight-story-thumb {
    border-radius: 12px;
  }
  .highlight-modal_refined .highlight_modal_footer {
    padding: 12px 16px 16px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    flex-wrap: wrap;
  }
  .highlight-modal_refined .highlight_modal_footer .alertBtnLeft,
  .highlight-modal_refined .highlight_modal_footer .alertBtnRight {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    height: 42px;
    padding: 0 14px;
    border-radius: 11px;
    font-size: 13px;
  }
  .highlight-modal_refined .highlight_modal_footer .highlight-delete {
    order: 3;
    flex-basis: 100%;
    margin-right: 0;
  }
}

.highlight-modal_refined .highlight_modal_footer .alertBtnLeft,
.highlight-modal_refined .highlight_modal_footer .alertBtnRight {
  display: inline-flex !important;
  margin: 0 !important;
  align-items: center;
  justify-content: center;
  align-self: center;
  box-sizing: border-box;
  line-height: 1;
  text-align: center;
  min-width: 132px;
  height: 42px;
  padding: 0 20px;
  border-radius: 12px !important;
  font-size: 14px;
  font-weight: 700;
}

.highlight-modal_refined .highlight_modal_footer .highlight-save {
  min-width: 148px;
  border-radius: 12px !important;
}

.highlight-modal_refined .highlight_modal_footer .no-del,
.highlight-modal_refined .highlight_modal_footer .highlight-delete {
  border-radius: 12px !important;
}

@media only screen and (max-width: 700px) {
  .highlight-modal_refined .highlight_modal_footer .alertBtnLeft,
  .highlight-modal_refined .highlight_modal_footer .alertBtnRight {
    min-width: 0;
    height: 40px;
    padding: 0 16px;
    border-radius: 10px !important;
  }

  .highlight-modal_refined .highlight_modal_footer .highlight-save,
  .highlight-modal_refined .highlight_modal_footer .no-del,
  .highlight-modal_refined .highlight_modal_footer .highlight-delete {
    border-radius: 10px !important;
  }
}

.i_modal_in_in {
  background: transparent !important;
}

.i_modal_bg_in .i_modal_in_in {
  box-shadow: none !important;
}

.profile_wrapper .profile_media_section {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #e7edf6;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: none;
}

.profile_wrapper .profile_media_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.profile_wrapper .profile_media_title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  color: #162033;
  letter-spacing: -0.02em;
}

.profile_wrapper .profile_media_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  background: #f5f8fc;
  color: #50607d;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.profile_wrapper .profile_media_link:hover {
  background: #eef3fa;
  color: #23314d;
  text-decoration: none;
}

.profile_wrapper .profile_media_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.profile_wrapper .profile_media_item {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #eef3f9;
  isolation: isolate;
}

.profile_wrapper .profile_media_item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 15px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 24%
    ),
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0) 42%,
      rgba(15, 23, 42, 0.18) 100%
    ),
    radial-gradient(
      circle at center,
      rgba(15, 23, 42, 0) 54%,
      rgba(15, 23, 42, 0.1) 100%
    );
  opacity: 0.92;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.profile_wrapper .profile_media_item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 15px;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 55%,
    rgba(15, 23, 42, 0.12) 100%
  );
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.profile_wrapper .profile_media_item:hover::after {
  opacity: 1;
}

.profile_wrapper .profile_media_thumb {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: #dfe7f1;
  background-size: cover;
  background-position: center;
  transform: scale(1.035);
  filter: saturate(1.14) contrast(1.1) brightness(1.02);
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}

.profile_wrapper .profile_media_item:hover::before {
  opacity: 0.82;
}

.profile_wrapper .profile_media_item:hover .profile_media_thumb {
  transform: scale(1.06);
  filter: saturate(1.18) contrast(1.12) brightness(1.05);
}

.profile_wrapper .profile_media_section_reels .profile_media_grid {
  gap: 10px;
}

.profile_wrapper .profile_media_item_reel {
  padding-top: 165%;
}

.profile_wrapper .profile_media_section_reels .profile_media_item {
  border-radius: 18px;
}

@media (min-width: 721px) {
  .profile_wrapper .profile_media_item {
    border-radius: 16px;
  }

  .profile_wrapper .profile_media_item:nth-child(1) {
    border-radius: 24px 16px 16px 16px;
  }

  .profile_wrapper .profile_media_item:nth-child(3) {
    border-radius: 16px 24px 16px 16px;
  }

  .profile_wrapper .profile_media_item:nth-child(4) {
    border-radius: 16px 16px 16px 24px;
  }

  .profile_wrapper .profile_media_item:nth-child(6) {
    border-radius: 16px 16px 24px 16px;
  }

  .profile_wrapper .profile_media_section_reels .profile_media_item {
    border-radius: 18px;
  }

  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(1) {
    border-radius: 24px 16px 16px 16px;
  }

  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(2) {
    border-radius: 16px 24px 16px 16px;
  }

  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(5) {
    border-radius: 16px 16px 16px 24px;
  }

  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(6) {
    border-radius: 16px 16px 24px 16px;
  }
}

.profile_wrapper .profile_media_badge {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
}

.profile_wrapper .profile_media_badge svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

@media (max-width: 720px) {
  .profile_wrapper .profile_media_section {
    padding: 14px;
    border-radius: 18px;
  }

  .profile_wrapper .profile_media_header {
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .profile_wrapper .profile_media_title {
    font-size: 16px;
  }

  .profile_wrapper .profile_media_link {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .profile_wrapper .profile_media_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .profile_wrapper .profile_media_item,
  .profile_wrapper .profile_media_section_reels .profile_media_item {
    border-radius: 14px;
  }

  .profile_wrapper .profile_media_item:nth-child(1) {
    border-radius: 20px 14px 14px 14px;
  }

  .profile_wrapper .profile_media_item:nth-child(2) {
    border-radius: 14px 20px 14px 14px;
  }

  .profile_wrapper .profile_media_item:nth-child(5) {
    border-radius: 14px 14px 14px 20px;
  }

  .profile_wrapper .profile_media_item:nth-child(6) {
    border-radius: 14px 14px 20px 14px;
  }

  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(1) {
    border-radius: 20px 14px 14px 14px;
  }

  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(2) {
    border-radius: 14px 20px 14px 14px;
  }

  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(5) {
    border-radius: 14px 14px 14px 20px;
  }

  .profile_wrapper
    .profile_media_section_reels
    .profile_media_item:nth-child(6) {
    border-radius: 14px 14px 20px 14px;
  }

  .profile_wrapper .profile_media_item_reel {
    padding-top: 160%;
  }

  .profile_wrapper .profile_media_badge {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .profile_wrapper .profile_media_badge svg {
    width: 14px;
    height: 14px;
  }
}

/* Who can see modal shell final override */
.who_can_see_modal .i_modal_in_in.who_can_see_modal_shell {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%) !important;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16) !important;
  border-radius: 28px !important;
  -webkit-border-radius: 28px !important;
  overflow: hidden;
}

.who_can_see_modal .who_can_see_modal_body {
  background: transparent;
}
/* Profile connection cards EOF final override */
:is(
  #moreType[data-po="following"],
  #moreType[data-po="followers"],
  #moreType[data-po="subscribers"]
) {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: start !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_card {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
  display: block !important;
  background: transparent !important;
  box-shadow: none !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  > .profile_connection_card {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  float: none !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_card
  .profile_connection_shell {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  min-height: 100% !important;
  padding: 0 18px 18px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%) !important;
  border-radius: 26px !important;
  overflow: hidden !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_card
  .i_sub_box_wrp_prof::before {
  display: none !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_cover {
  position: relative !important;
  display: block !important;
  width: calc(100% + 36px) !important;
  height: 126px !important;
  margin: 0 -18px !important;
  overflow: hidden !important;
  background: linear-gradient(
    135deg,
    #3b2ea6 0%,
    #7d3cf8 35%,
    #ff4f86 72%,
    #ffbf47 100%
  ) !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_cover::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.1) 0%,
    rgba(15, 23, 42, 0.26) 100%
  ) !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_cover_image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_avatar {
  position: relative !important;
  z-index: 2 !important;
  width: 92px !important;
  height: 92px !important;
  margin: -46px 0 14px !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_avatar
  .isubavatar {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 4px solid #ffffff !important;
  background: #ffffff !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 0 16px !important;
  text-align: center !important;
  align-items: center !important;
  gap: 6px !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .i_sub_box_name {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: 100% !important;
  margin: 0 !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #18233f !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .i_sub_box_name
  a {
  max-width: calc(100% - 48px) !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  color: inherit !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .i_sub_box_unm {
  width: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #7a859f !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_verified
  svg,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .i_plus_s
  svg,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_identity
  .publisherGender
  svg {
  width: 18px !important;
  height: 18px !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action {
  width: 100% !important;
  margin-top: auto !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_follow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  min-height: 46px !important;
  padding: 0 16px !important;
  border-radius: 15px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_follow
  svg {
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  fill: currentColor !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .free_follow {
  background: #0f2442 !important;
  color: #ffffff !important;
}

:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_btn_like_item_flw,
:is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  )
  .profile_connection_action
  .i_btn_unsubscribe {
  background: #eef3ff !important;
  color: #223a67 !important;
}

@media (max-width: 740px) {
  :is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  ) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_card
    .profile_connection_shell {
    padding: 0 12px 14px !important;
    border-radius: 20px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_cover {
    width: calc(100% + 24px) !important;
    height: 98px !important;
    margin: 0 -12px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_avatar {
    width: 72px !important;
    height: 72px !important;
    margin-top: -36px !important;
    margin-bottom: 10px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_avatar
    .isubavatar {
    border-width: 3px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_identity
    .i_sub_box_name {
    font-size: 15px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_identity
    .i_sub_box_unm {
    font-size: 12px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_action
    .i_follow {
    min-height: 40px !important;
    padding: 0 12px !important;
    border-radius: 13px !important;
    font-size: 14px !important;
    gap: 6px !important;
  }

  :is(
      #moreType[data-po="following"],
      #moreType[data-po="followers"],
      #moreType[data-po="subscribers"]
    )
    .profile_connection_action
    .i_follow
    svg {
    width: 14px !important;
    height: 14px !important;
  }
}

@media (max-width: 1180px) {
  :is(
    #moreType[data-po="following"],
    #moreType[data-po="followers"],
    #moreType[data-po="subscribers"]
  ) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Profile visitor action cluster */
.profile_action_cluster {
  align-self: flex-start;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 12px;
  width: 100%;
  max-width: 100%;
  margin-top: 22px;
  margin-left: 0;
  padding: 0 36px;
  box-sizing: border-box;
}

.profile_action_group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: auto;
  padding-top: 0;
}

.profile_action_group_utilities {
  gap: 6px;
  padding: 3px;
  border: 1px solid #e2e9f3;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
}

.profile_action_group_utilities .profile_action_icon {
  display: flex;
  align-items: center;
}

.profile_action_group_utilities .i_btn_item {
  width: 36px;
  height: 36px;
  min-width: 36px;
  margin-right: 0;
  padding: 0;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  background: transparent;
}

.profile_action_group_utilities .i_btn_item:hover {
  background: #f3f6fb;
}

.profile_action_group_utilities .i_btn_item > a,
.profile_action_group_utilities .i_btn_item > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.profile_action_group_utilities .i_btn_item svg {
  width: 17px;
  height: 17px;
  fill: #263244;
}

.profile_action_group_utilities .ownTooltip {
  position: relative;
}

.profile_action_group_utilities .ownTooltip .ownTooltipWrapper {
  display: block;
  width: auto;
  height: auto;
  left: 50%;
  right: auto;
  top: calc(100% + 8px);
  padding: 8px 12px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  white-space: nowrap;
  line-height: 1.35;
}

.profile_action_group_follow {
  padding: 0;
}

.profile_action_follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  margin-right: 0;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 13px;
  -webkit-border-radius: 13px;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  box-shadow: none;
}

.profile_action_follow svg {
  width: 15px;
  height: 15px;
  margin: 0;
  fill: currentColor;
}

.profile_action_follow.free_follow {
  background: linear-gradient(90deg, #f65169 0%, #fab429 100%);
  color: #ffffff;
}

.profile_action_follow.i_btn_like_item_flw,
.profile_action_follow.unSubU,
.profile_action_follow.unSubUP {
  border-color: #ffd8df;
  background: #fff2f4;
  color: #df4a64;
}

.profile_action_follow:not(.free_follow):not(.i_btn_like_item_flw):not(
    .unSubU
  ):not(.unSubUP) {
  border-color: #182235;
  background: #182235;
  color: #ffffff;
}

.profile_action_follow:hover {
  transform: translateY(-1px);
}

.profile_action_group_monetization {
  flex: 1 1 320px;
  min-width: 0;
  padding: 0;
  gap: 8px;
  flex-wrap: wrap;
}

.profile_action_monetize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 13px;
  -webkit-border-radius: 13px;
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  box-shadow: none;
}

.profile_action_monetize svg {
  width: 15px;
  height: 15px;
  margin: 0;
  fill: currentColor;
}

.profile_action_subscribe {
  border-color: #ffdcb4;
  background: #fff7ee;
  color: #bc6c17;
}

.i_btn_unsubscribe.profile_action_subscribe {
  border-color: #ffd8df;
  background: #fff2f4;
  color: #df4a64;
}

.profile_action_tip {
  border-color: #162233;
  background: #162233;
  color: #ffffff;
}

.profile_action_frame {
  border-color: #d5e8d6;
  background: #f2f8f1;
  color: #377d45;
}

.profile_action_monetize:hover {
  transform: translateY(-1px);
}

@media screen and (max-width: 1180px) and (min-width: 741px) {
  .profile_action_cluster {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: 0 24px;
    gap: 8px 10px;
  }

  .profile_action_group_monetization {
    flex-basis: 100%;
  }
}

@media screen and (max-width: 740px) {
  .profile_action_cluster {
    align-self: stretch;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    margin-left: 0;
    padding: 0 14px;
    gap: 8px;
  }

  .profile_action_group_utilities {
    width: auto;
    margin: 0 auto;
  }

  .profile_action_group_follow {
    width: 100%;
  }

  .profile_action_follow {
    width: 100%;
    min-height: 42px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    font-size: 13px;
  }

  .profile_action_group_monetization {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .profile_action_group_monetization > :first-child {
    grid-column: 1 / -1;
  }

  .profile_action_monetize {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
}
.i_modal_bg_in.subscription_offer_modal
  .i_modal_in_in.subscription_offer_modal_shell {
  border-radius: 30px !important;
  -webkit-border-radius: 30px !important;
  overflow: hidden;
}

.i_modal_bg_in.subscription_offer_modal
  .i_modal_content.subscription_offer_modal_content {
  border-radius: inherit;
}

.subscription_offer_modal .subscription_offer_modal_name {
  margin-top: 0;
}

.subscription_offer_modal .subscription_offer_modal_name a {
  gap: 8px;
  flex-wrap: wrap;
  line-height: 1.15;
}

.subscription_offer_modal .subscription_offer_modal_handle {
  padding-top: 10px;
}

.subscription_offer_modal .subscription_offer_modal_support {
  padding-top: 18px;
}

.subscription_offer_modal .subscription_offer_modal_offers {
  width: 100%;
}

.subscription_offer_modal .subscription_offer_modal_advantage {
  border-radius: 20px;
}

.subscription_offer_modal .subscribe_price_btn {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
}

@media only screen and (max-width: 700px) {
  .i_modal_bg_in.subscription_offer_modal
    .i_modal_in_in.subscription_offer_modal_shell {
    border-radius: 24px !important;
    -webkit-border-radius: 24px !important;
  }

  .subscription_offer_modal .subscription_offer_modal_body {
    padding-top: 112px !important;
  }

  .subscription_offer_modal .subscription_offer_modal_name {
    margin-top: 0;
  }

  .subscription_offer_modal .subscription_offer_modal_advantage {
    border-radius: 18px;
  }

  .subscription_offer_modal .subscribe_price_btn {
    min-height: 46px;
    padding: 0 12px;
    border-radius: 16px;
  }
}

.i_modal_bg_in.frame_gift_modal .i_modal_in_in.frame_gift_modal_shell {
  overflow: hidden !important;
}

.frame_gift_modal .i_more_frames_wrapper.frame_gift_modal_body {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  justify-content: initial !important;
  align-items: stretch !important;
  padding: 18px !important;
}

.frame_gift_modal .credit_plan_box.frame_gift_modal_card {
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  flex: initial !important;
}

.frame_gift_modal .plan_box_frame.frame_gift_modal_card_inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 12px !important;
  padding: 12px !important;
  border-radius: 22px !important;
}

.frame_gift_modal .a_image_area_live_gift.theaImage {
  min-height: 168px !important;
  padding: 12px !important;
  border-radius: 18px !important;
}

.frame_gift_modal .plan_value {
  text-align: left !important;
}

.frame_gift_modal .plan_price {
  font-size: 28px !important;
  text-align: left !important;
}

.frame_gift_modal .plan_price .ib {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.frame_gift_modal .plan_point {
  padding-top: 4px !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

.frame_gift_modal .purchaseButton.frame_gift_modal_purchase {
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  margin: auto 0 0 !important;
  padding: 10px 14px !important;
  border-radius: 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.frame_gift_modal .purchaseButton.frame_gift_modal_purchase strong {
  display: block !important;
  margin-top: 6px !important;
  font-size: 13px !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
}

.frame_gift_modal .purchaseButton.frame_gift_modal_purchase .foramount {
  display: block !important;
  padding-top: 6px !important;
  font-size: 11px !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
}

@media only screen and (max-width: 900px) {
  .frame_gift_modal .i_more_frames_wrapper.frame_gift_modal_body {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media only screen and (max-width: 700px) {
  .frame_gift_modal .i_more_frames_wrapper.frame_gift_modal_body {
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 16px !important;
  }

  .frame_gift_modal .plan_box_frame.frame_gift_modal_card_inner {
    padding: 12px !important;
    border-radius: 20px !important;
  }

  .frame_gift_modal .a_image_area_live_gift.theaImage {
    min-height: 156px !important;
  }

  .frame_gift_modal .plan_price {
    font-size: 26px !important;
  }

  .frame_gift_modal .purchaseButton.frame_gift_modal_purchase {
    padding: 10px 13px !important;
    border-radius: 18px !important;
  }
}

.frame_gift_modal .purchaseButton.frame_gift_modal_purchase {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 48px !important;
  padding: 0 14px !important;
  border-radius: 18px !important;
}

.frame_gift_modal .frame_gift_modal_purchase_label {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 0 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 13px !important;
  color: #ffffff !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.frame_gift_modal .frame_gift_modal_purchase_points {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin: 0 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 13px !important;
  color: #ffffff !important;
  white-space: nowrap !important;
  position: relative !important;
  top: -2px !important;
}

.frame_gift_modal .frame_gift_modal_purchase_points .prcsic {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.frame_gift_modal .frame_gift_modal_purchase_points .prcsic svg {
  display: block !important;
  width: 14px !important;
  height: 14px !important;
  fill: #ffffff !important;
  transform: translateY(1px) !important;
}

.frame_gift_modal .foramount.frame_gift_modal_purchase_note {
  display: block !important;
  margin: 8px 2px 0 !important;
  padding: 0 !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  color: #7b88a1 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

@media only screen and (max-width: 700px) {
  .frame_gift_modal .purchaseButton.frame_gift_modal_purchase {
    min-height: 46px !important;
    padding: 0 13px !important;
  }

  .frame_gift_modal .frame_gift_modal_purchase_label,
  .frame_gift_modal .frame_gift_modal_purchase_points {
    font-size: 12px !important;
  }

  .frame_gift_modal .foramount.frame_gift_modal_purchase_note {
    font-size: 11px !important;
  }
}

.i_profile_avatar_wrp {
  position: relative;
}

.i_profile_avatar_wrp > .i_profile_avatar_stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
}

.i_profile_avatar_wrp > .i_profile_avatar_stack > .i_profile_gift_frame {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  pointer-events: none;
  z-index: 5;
}

.i_profile_avatar_wrp > .i_profile_avatar_stack > .i_profile_gift_frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.i_profile_avatar_wrp > .i_profile_avatar_stack > .i_profile_avatar {
  position: relative;
  z-index: 2;
  margin: 0;
}

@media screen and (max-width: 740px) {
  .i_profile_avatar_wrp > .i_profile_avatar_stack {
    flex-basis: 120px;
    width: 120px;
    height: 120px;
  }
}

.user_post_user_avatar_plus,
.i_post_user_commented_avatar_out {
  position: relative;
}

.user_post_user_avatar_plus > .frame_out_container,
.i_post_user_commented_avatar_out > .frame_out_container_comment {
  position: absolute;
  inset: 0;
  left: auto;
  top: auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
  z-index: 3;
}

.user_post_user_avatar_plus > .frame_out_container {
  width: 100%;
  height: 100%;
  z-index: 3;
}

.user_post_user_avatar_plus > .frame_out_container > .frame_container,
.i_post_user_commented_avatar_out
  > .frame_out_container_comment
  > .frame_container_comment {
  position: relative;
  width: 68px;
  height: 68px;
}

.user_post_user_avatar_plus > .frame_out_container > .frame_container img,
.i_post_user_commented_avatar_out
  > .frame_out_container_comment
  > .frame_container_comment
  img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.user_post_user_avatar_plus > .i_post_user_avatar,
.i_post_user_commented_avatar_out > .i_post_user_commented_avatar {
  position: relative;
  z-index: 2;
  margin: 0;
}

.i_u_comment_body_reply
  .i_post_user_commented_avatar_out
  > .frame_out_container_comment {
  inset: auto !important;
  top: calc(50% - 3px) !important;
  left: 50% !important;
  width: 30px !important;
  height: 30px !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3 !important;
}

.i_u_comment_body_reply
  .i_post_user_commented_avatar_out
  > .frame_out_container_comment
  > .frame_container_comment,
.i_u_comment_body_reply
  .i_post_user_commented_avatar_out
  > .frame_out_container_comment
  > .frame_container_comment
  img {
  width: 30px !important;
  height: 30px !important;
}

.user_post_user_avatar_plus > .frame_out_container {
  inset: auto !important;
  top: calc(50% + 4px) !important;
  left: calc(50% + 4px) !important;
  width: calc(100% + 10px) !important;
  height: calc(100% + 10px) !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3 !important;
}

.user_post_user_avatar_plus > .frame_out_container > .frame_container {
  width: 100% !important;
  height: 100% !important;
}

.user_post_user_avatar_plus > .frame_out_container > .frame_container img {
  width: 100% !important;
  height: 100% !important;
}

@media only screen and (max-width: 768px) {
  .i_u_comment_body_reply
    .i_post_user_commented_avatar_out
    > .frame_out_container_comment {
    top: calc(50% - 3px) !important;
    width: 28px !important;
    height: 28px !important;
  }

  .i_u_comment_body_reply
    .i_post_user_commented_avatar_out
    > .frame_out_container_comment
    > .frame_container_comment,
  .i_u_comment_body_reply
    .i_post_user_commented_avatar_out
    > .frame_out_container_comment
    > .frame_container_comment
    img {
    width: 28px !important;
    height: 28px !important;
  }

  .user_post_user_avatar_plus > .frame_out_container > .frame_container {
    width: 100% !important;
    height: 100% !important;
  }

  .user_post_user_avatar_plus > .frame_out_container {
    top: 50% !important;
    left: 50% !important;
    width: calc(100% + 8px) !important;
    height: calc(100% + 8px) !important;
  }

  .user_post_user_avatar_plus > .frame_out_container > .frame_container,
  .user_post_user_avatar_plus > .frame_out_container > .frame_container img {
    width: 100% !important;
    height: 100% !important;
  }
}

.i_post_body_header > .premiumIcon {
  top: -17px !important;
  right: 8px !important;
  z-index: 1 !important;
}

/* Delete confirm modal final override */
.delete_confirm_modal {
  padding: 24px 16px;
}

.delete_confirm_modal .i_modal_in_in.delete_confirm_modal_shell {
  width: min(560px, calc(100vw - 32px)) !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%) !important;
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22) !important;
  overflow: hidden !important;
}

.delete_confirm_modal .delete_confirm_modal_content {
  display: flex;
  flex-direction: column;
}

.delete_confirm_modal .delete_confirm_modal_header {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-height: 88px;
  padding: 22px 24px 18px !important;
  padding-right: 82px !important;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%) !important;
  border-bottom: 1px solid #e7edf6 !important;
  color: #18233d !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

.delete_confirm_modal .delete_confirm_modal_close {
  position: absolute !important;
  right: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  padding: 10px !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid #dce5f0 !important;
  box-shadow: none !important;
}

.delete_confirm_modal .delete_confirm_modal_close:hover {
  background: #ffffff !important;
  border-color: #ccd8e7 !important;
}

.delete_confirm_modal .delete_confirm_modal_close svg {
  width: 15px !important;
  height: 15px !important;
  fill: #5b6781 !important;
}

.delete_confirm_modal .delete_confirm_modal_body {
  position: relative;
  margin: 0 !important;
  padding: 28px 28px 10px !important;
  text-align: center !important;
  color: #4f5f7d !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
}

.delete_confirm_modal .delete_confirm_modal_footer {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 18px 24px 24px !important;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%) !important;
  border-top: 1px solid #e8eef7 !important;
}

.delete_confirm_modal .delete_confirm_modal_footer .alertBtnLeft,
.delete_confirm_modal .delete_confirm_modal_footer .alertBtnRight {
  float: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 118px !important;
  min-height: 46px !important;
  padding: 0 20px !important;
  border-radius: 16px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.delete_confirm_modal .delete_confirm_modal_cancel {
  background: #eef3fb !important;
  color: #4e5f7e !important;
  border: 1px solid #d8e2ef !important;
}

.delete_confirm_modal .delete_confirm_modal_cancel:hover {
  background: #f5f8fd !important;
  color: #30405d !important;
  border-color: #ccd8e7 !important;
}

.delete_confirm_modal .delete_confirm_modal_submit {
  background: linear-gradient(135deg, #ff587c 0%, #ff7690 100%) !important;
  color: #ffffff !important;
  border: 1px solid transparent !important;
}

.delete_confirm_modal .delete_confirm_modal_submit:hover {
  background: linear-gradient(135deg, #f74c73 0%, #ff6c87 100%) !important;
}

.close_live_stream_modal {
  padding: 18px 12px;
}

.close_live_stream_modal .i_modal_in_in.close_live_stream_modal_shell {
  width: min(560px, calc(100vw - 24px)) !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%) !important;
  box-shadow: 0 26px 72px rgba(15, 23, 42, 0.18) !important;
  overflow: hidden !important;
}

.close_live_stream_modal .close_live_stream_modal_content {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: transparent;
}

.close_live_stream_modal .close_live_stream_modal_header {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-height: 84px;
  padding: 20px 24px 16px !important;
  padding-right: 78px !important;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%) !important;
  border-bottom: 1px solid #e7edf6 !important;
  color: #18233d !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

.close_live_stream_modal .close_live_stream_modal_title {
  color: #18233d;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.close_live_stream_modal .close_live_stream_modal_close {
  position: absolute !important;
  right: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  padding: 10px !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid #dce5f0 !important;
  box-shadow: none !important;
}

.close_live_stream_modal .close_live_stream_modal_close:hover {
  background: #ffffff !important;
  border-color: #ccd8e7 !important;
}

.close_live_stream_modal .close_live_stream_modal_close svg {
  width: 15px !important;
  height: 15px !important;
  fill: #5b6781 !important;
}

.close_live_stream_modal .close_live_stream_modal_body {
  margin: 0 !important;
  padding: 26px 28px 10px !important;
  text-align: center !important;
  color: #4f5f7d !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  background: #f8fafc !important;
}

.close_live_stream_modal .close_live_stream_modal_copy {
  max-width: 420px;
  margin: 0 auto;
}

.close_live_stream_modal .close_live_stream_modal_footer {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 18px 24px 24px !important;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%) !important;
  border-top: 1px solid #e8eef7 !important;
}

.close_live_stream_modal .close_live_stream_modal_footer .alertBtnLeft,
.close_live_stream_modal .close_live_stream_modal_footer .alertBtnRight {
  float: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 118px !important;
  min-height: 46px !important;
  padding: 0 20px !important;
  border-radius: 16px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.close_live_stream_modal .close_live_stream_modal_cancel {
  background: #eef3fb !important;
  color: #4e5f7e !important;
  border: 1px solid #d8e2ef !important;
}

.close_live_stream_modal .close_live_stream_modal_cancel:hover {
  background: #f5f8fd !important;
  color: #30405d !important;
  border-color: #ccd8e7 !important;
}

.close_live_stream_modal .close_live_stream_modal_submit {
  background: linear-gradient(135deg, #ff587c 0%, #ff7690 100%) !important;
  color: #ffffff !important;
  border: 1px solid transparent !important;
}

.close_live_stream_modal .close_live_stream_modal_submit:hover {
  background: linear-gradient(135deg, #f74c73 0%, #ff6c87 100%) !important;
}

@media (max-width: 640px) {
  .live_pin_modal {
    align-items: flex-start;
    padding: 12px 10px;
  }

  .live_pin_modal .live_pin_modal_shell {
    width: min(100%, calc(100vw - 20px));
    border-radius: 24px;
  }

  .live_pin_modal .live_pin_modal_header {
    min-height: 74px;
    padding: 18px 18px 14px !important;
    padding-right: 68px !important;
  }

  .live_pin_modal .live_pin_modal_title {
    font-size: 18px;
  }

  .live_pin_modal .live_pin_modal_close {
    right: 14px !important;
    padding: 8px !important;
    border-radius: 14px !important;
  }

  .live_pin_modal .live_pin_modal_body {
    padding: 16px 16px 0;
  }

  .live_pin_modal .live_pin_product_item {
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .live_pin_modal .live_pin_product_media {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 16px;
  }

  .live_pin_modal .live_pin_product_name {
    font-size: 16px;
  }

  .live_pin_modal .live_pin_product_price {
    font-size: 14px;
  }

  .live_pin_modal .live_pin_product_actions button {
    min-width: 76px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 13px;
  }

  .live_pin_modal .live_pin_modal_footer {
    padding: 14px 16px 16px;
  }

  .live_pin_modal .live_pin_modal_cancel {
    width: 100%;
    min-height: 44px;
    border-radius: 14px;
  }

  .delete_confirm_modal {
    padding: 16px 10px;
  }
  .delete_confirm_modal .i_modal_in_in.delete_confirm_modal_shell {
    width: min(100%, calc(100vw - 20px)) !important;
    border-radius: 24px !important;
  }
  .delete_confirm_modal .delete_confirm_modal_header {
    min-height: 78px;
    padding: 18px 18px 16px !important;
    padding-right: 68px !important;
    font-size: 18px !important;
  }
  .delete_confirm_modal .delete_confirm_modal_close {
    right: 14px !important;
    padding: 8px !important;
    border-radius: 14px !important;
  }
  .delete_confirm_modal .delete_confirm_modal_body {
    padding: 22px 18px 8px !important;
    font-size: 15px !important;
  }
  .delete_confirm_modal .delete_confirm_modal_footer {
    gap: 10px !important;
    padding: 16px 18px 18px !important;
  }
  .delete_confirm_modal .delete_confirm_modal_footer .alertBtnLeft,
  .delete_confirm_modal .delete_confirm_modal_footer .alertBtnRight {
    flex: 1 1 0 !important;
    min-height: 42px !important;
    padding: 0 14px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
  }

  .close_live_stream_modal {
    padding: 16px 10px;
  }

  .close_live_stream_modal .i_modal_in_in.close_live_stream_modal_shell {
    width: min(100%, calc(100vw - 20px)) !important;
    border-radius: 24px !important;
  }

  .close_live_stream_modal .close_live_stream_modal_header {
    min-height: 76px;
    padding: 18px 18px 15px !important;
    padding-right: 68px !important;
    font-size: 18px !important;
  }

  .close_live_stream_modal .close_live_stream_modal_close {
    right: 14px !important;
    padding: 8px !important;
    border-radius: 14px !important;
  }

  .close_live_stream_modal .close_live_stream_modal_body {
    padding: 22px 18px 8px !important;
    font-size: 15px !important;
  }

  .close_live_stream_modal .close_live_stream_modal_footer {
    gap: 10px !important;
    padding: 16px 18px 18px !important;
  }

  .close_live_stream_modal .close_live_stream_modal_footer .alertBtnLeft,
  .close_live_stream_modal .close_live_stream_modal_footer .alertBtnRight {
    flex: 1 1 0 !important;
    min-height: 42px !important;
    padding: 0 14px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
  }
}
.paid_live_page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.paid_live_header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.paid_live_page_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.paid_live_page_actions .new_s_one {
  display: inline-flex;
  margin: 0;
  padding: 0;
  min-height: 56px;
  border-radius: 16px;
  box-shadow: 0 14px 26px rgba(246, 81, 105, 0.16);
  overflow: hidden;
}
.paid_live_page_actions .new_s_one > div {
  gap: 12px;
  min-height: 56px;
  padding: 0 20px;
}
.paid_live_page_actions .new_s_one svg {
  width: 22px;
  height: 22px;
  margin-right: 0;
  flex: 0 0 auto;
}
.paid_live_title_card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.paid_live_title_card .live_title_page {
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0.1px;
  font-size: 17px;
  font-weight: 800;
  color: #1f2937;
}
.paid_live_title_card .live_title_page svg {
  width: 28px;
  height: 28px;
  margin-right: 0;
}
.paid_live_page .paid_live_streamings_list_container {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.paid_live_page .live_list_box_wrapper {
  width: auto;
  float: none;
  padding: 0;
}
.paid_live_page .live_list_box_wrapper_in {
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid #e6eaf2;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.paid_live_page .live_creator_cover {
  height: 180px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.paid_live_page .live_creator_cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.34) 100%);
}
.paid_live_page .live_s,
.paid_live_page .count_time {
  z-index: 2;
}
.paid_live_page .live_s {
  left: 14px;
  top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35px;
}
.paid_live_page .count_time {
  right: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
}
.paid_live_page .count_time svg {
  width: 13px;
  height: 13px;
  margin-right: 5px;
}
.paid_live_page .live_creator_avatar {
  margin-top: -38px;
  z-index: 2;
}
.paid_live_page .live_creator_avatar_middle,
.paid_live_page .i_live_profile_avatar {
  width: 76px;
  height: 76px;
}
.paid_live_page .i_live_profile_avatar {
  border-width: 3px;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}
.paid_live_page .live_creator_avatar + .live_stream_creator_name {
  padding: 10px 18px 0;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}
.paid_live_page .live_creator_avatar + .live_stream_creator_name a {
  color: #475569;
}
.paid_live_page .live_creator_avatar + .live_stream_creator_name + .live_stream_creator_name {
  padding: 4px 18px 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  color: #0f172a;
}
.paid_live_page .pr_liv {
  padding: 16px 18px 18px;
}
.paid_live_page .pr_liv:hover {
  transform: none;
}
.paid_live_page .purchaseLiveButton,
.paid_live_page .purchasedLiveButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  margin-bottom: 0;
  border-radius: 14px;
  border: 1px solid #111827;
  background: #111827;
  color: #ffffff;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: none;
  box-shadow: none;
}

.paid_live_gate {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.paid_live_gate .paid_live_gate_shell {
  width: min(680px, calc(100vw - 48px));
}

.paid_live_gate .paid_live_gate_content {
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.24);
}

.paid_live_gate .paid_live_gate_header {
  justify-content: center !important;
  min-height: 74px;
  padding: 18px 24px 16px !important;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%) !important;
  border-bottom: 1px solid #e4ebf5 !important;
}

.paid_live_gate .paid_live_gate_title {
  color: #22304d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.paid_live_gate .paid_live_gate_body {
  padding: 20px !important;
  background: #f8fafc !important;
}

.paid_live_gate .paid_live_gate_summary {
  flex-direction: column;
  align-items: center !important;
  gap: 16px !important;
  padding: 16px !important;
  border-radius: 24px !important;
  border: 1px solid #dce6f3 !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
}

.paid_live_gate .paid_live_gate_avatar {
  width: 78px;
  min-width: 78px;
  height: 78px;
  border-radius: 22px;
  align-self: center;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.paid_live_gate .paid_live_gate_copy {
  flex: 0 0 auto;
  padding-left: 0;
  color: #3d4b67;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  max-width: 320px;
}

.paid_live_gate .paid_live_gate_points {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff5c7a 0%, #f5b93a 100%);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 16px 30px rgba(255, 92, 122, 0.22);
  align-self: stretch;
}

.paid_live_gate .paid_live_gate_points div {
  width: 100%;
  max-width: none;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.paid_live_gate .paid_live_gate_points span {
  display: block;
  margin-top: 5px;
  padding-top: 0;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.94;
}

.paid_live_gate .paid_live_gate_footer {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  padding: 0 20px 20px !important;
  background: #f8fafc !important;
  border-top: 0 !important;
}

.paid_live_gate .paid_live_gate_submit,
.paid_live_gate .paid_live_gate_cancel {
  float: none !important;
  min-width: 138px !important;
  min-height: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 0 !important;
  border-radius: 16px !important;
  padding: 0 22px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.paid_live_gate .paid_live_gate_submit {
  background: linear-gradient(135deg, #ff5c7a 0%, #f5b93a 100%) !important;
  box-shadow: 0 16px 30px rgba(255, 92, 122, 0.22) !important;
}

.paid_live_gate .paid_live_gate_cancel {
  background: #98a2c3 !important;
  color: #ffffff !important;
}

@media (max-width: 700px) {
  .paid_live_gate {
    padding: 16px;
  }

  .paid_live_gate .paid_live_gate_shell {
    width: min(100vw - 16px, 680px);
  }

  .paid_live_gate .paid_live_gate_header {
    min-height: 68px;
    padding: 16px 18px 14px !important;
  }

  .paid_live_gate .paid_live_gate_title {
    font-size: 17px;
  }

  .paid_live_gate .paid_live_gate_body {
    padding: 16px !important;
  }

  .paid_live_gate .paid_live_gate_summary {
    align-items: center !important;
    gap: 12px !important;
    padding: 16px !important;
  }

  .paid_live_gate .paid_live_gate_avatar {
    width: 68px;
    min-width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .paid_live_gate .paid_live_gate_copy {
    font-size: 14px;
    max-width: none;
  }

  .paid_live_gate .paid_live_gate_points {
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
  }

  .paid_live_gate .paid_live_gate_footer {
    flex-direction: column-reverse !important;
    padding: 0 16px 16px !important;
  }

  .paid_live_gate .paid_live_gate_submit,
  .paid_live_gate .paid_live_gate_cancel {
    width: 100%;
    min-width: 0 !important;
  }
}
.paid_live_page .purchaseLiveButton strong,
.paid_live_page .purchasedLiveButton strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}
.paid_live_page .purchaseLiveButton strong span svg,
.paid_live_page .purchasedLiveButton strong span svg {
  width: 13px;
  height: 13px;
  fill: #ffffff;
}
.paid_live_page .pr_liv:hover .purchaseLiveButton,
.paid_live_page .pr_liv:hover .purchasedLiveButton {
  background: #1f2937;
  border-color: #1f2937;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}
.paid_live_page .pr_liv:hover .purchaseLiveButton strong span svg,
.paid_live_page .pr_liv:hover .purchasedLiveButton strong span svg {
  fill: #ffffff;
}
.paid_live_page .noPost {
  width: 100%;
  min-height: 320px;
  margin: 0;
  padding: 30px 24px;
  border: 1px dashed #dbe3ef;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.paid_live_page .noPostIcon {
  width: 84px;
  height: 84px;
  margin: 0;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff2f4;
}
.paid_live_page .noPostIcon svg {
  width: 44px;
  height: 44px;
  fill: #f65169;
}
.paid_live_page .noPostNote {
  max-width: 320px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #64748b;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 900px) {
  .paid_live_page .paid_live_streamings_list_container {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 640px) {
  .paid_live_page {
    gap: 14px;
  }
  .paid_live_page_actions .new_s_one {
    width: 100%;
  }
  .paid_live_page_actions .new_s_one > div {
    width: 100%;
    justify-content: center;
    padding: 0 16px;
  }
  .paid_live_title_card {
    padding: 14px 16px;
    border-radius: 16px;
  }
  .paid_live_title_card .live_title_page {
    font-size: 15px;
  }
  .paid_live_title_card .live_title_page svg {
    width: 24px;
    height: 24px;
  }
  .paid_live_page .live_creator_cover {
    height: 170px;
  }
  .paid_live_page .live_creator_avatar {
    margin-top: -34px;
  }
  .paid_live_page .live_creator_avatar_middle,
  .paid_live_page .i_live_profile_avatar {
    width: 68px;
    height: 68px;
  }
  .paid_live_page .live_creator_avatar + .live_stream_creator_name {
    padding: 10px 14px 0;
    font-size: 12px;
  }
  .paid_live_page .live_creator_avatar + .live_stream_creator_name + .live_stream_creator_name {
    padding: 4px 14px 0;
    font-size: 15px;
  }
  .paid_live_page .pr_liv {
    padding: 14px 14px 16px;
  }
  .paid_live_page .purchaseLiveButton,
  .paid_live_page .purchasedLiveButton {
    min-height: 44px;
    padding: 0 14px;
  }
  .paid_live_page .noPost {
    min-height: 260px;
    padding: 24px 18px;
    border-radius: 18px;
  }
  .paid_live_page .noPostIcon {
    width: 74px;
    height: 74px;
    border-radius: 20px;
  }
  .paid_live_page .noPostIcon svg {
    width: 38px;
    height: 38px;
  }
  .paid_live_page .noPostNote {
    font-size: 14px;
  }
}
.free_live_page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.free_live_header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.free_live_page_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.free_live_page_actions .new_s_one {
  display: inline-flex;
  margin: 0;
  padding: 0;
  min-height: 56px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.14);
  overflow: hidden;
}
.free_live_page_actions .new_s_one > div {
  gap: 12px;
  min-height: 56px;
  padding: 0 20px;
}
.free_live_page_actions .new_s_one svg {
  width: 22px;
  height: 22px;
  margin-right: 0;
  flex: 0 0 auto;
}
.free_live_title_card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #e1eaf5;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.free_live_title_card .live_title_page {
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0.1px;
  font-size: 17px;
  font-weight: 800;
  color: #12314d;
}
.free_live_title_card .live_title_page svg {
  width: 28px;
  height: 28px;
  margin-right: 0;
}
.free_live_page .free_live_streamings_list_container {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.free_live_page .live_list_box_wrapper {
  width: auto;
  float: none;
  padding: 0;
}
.free_live_page .live_list_box_wrapper_in {
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e1eaf5;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}
.free_live_page .live_creator_cover {
  height: 180px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.free_live_page .live_creator_cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.28) 100%);
}
.free_live_page .live_s,
.free_live_page .count_time {
  z-index: 2;
}
.free_live_page .live_s {
  left: 14px;
  top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35px;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
}
.free_live_page .count_time {
  right: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.86);
  color: #12314d;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}
.free_live_page .count_time svg {
  width: 13px;
  height: 13px;
  margin-right: 5px;
  fill: #2563eb;
}
.free_live_page .live_creator_avatar {
  margin-top: -38px;
  z-index: 2;
}
.free_live_page .live_creator_avatar_middle,
.free_live_page .i_live_profile_avatar {
  width: 76px;
  height: 76px;
}
.free_live_page .i_live_profile_avatar {
  border-width: 3px;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.1);
}
.free_live_page .live_creator_avatar + .live_stream_creator_name {
  padding: 10px 18px 0;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}
.free_live_page .live_creator_avatar + .live_stream_creator_name a {
  color: #475569;
}
.free_live_page .live_creator_avatar + .live_stream_creator_name + .live_stream_creator_name {
  padding: 4px 18px 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  color: #0f172a;
}
.free_live_page .pr_liv {
  padding: 16px 18px 18px;
}
.free_live_page .pr_liv:hover {
  transform: none;
}
.free_live_page .purchaseLiveButton,
.free_live_page .purchasedLiveButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  margin-bottom: 0;
  border-radius: 14px;
  border: 1px solid #2563eb;
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
  color: #ffffff;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: none;
  box-shadow: none;
}
.free_live_page .purchaseLiveButton strong,
.free_live_page .purchasedLiveButton strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}
.free_live_page .purchaseLiveButton strong span svg,
.free_live_page .purchasedLiveButton strong span svg {
  width: 13px;
  height: 13px;
  fill: #ffffff;
}
.free_live_page .pr_liv:hover .purchaseLiveButton,
.free_live_page .pr_liv:hover .purchasedLiveButton {
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
  border-color: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(37, 99, 235, 0.18);
}
.free_live_page .pr_liv:hover .purchaseLiveButton strong span svg,
.free_live_page .pr_liv:hover .purchasedLiveButton strong span svg {
  fill: #ffffff;
}
.free_live_page .noPost {
  width: 100%;
  min-height: 320px;
  margin: 0;
  padding: 30px 24px;
  border: 1px dashed #d9e5f3;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.free_live_page .noPostIcon {
  width: 84px;
  height: 84px;
  margin: 0;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef6ff;
}
.free_live_page .noPostIcon svg {
  width: 44px;
  height: 44px;
  fill: #38bdf8;
}
.free_live_page .noPostNote {
  max-width: 320px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #64748b;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 900px) {
  .free_live_page .free_live_streamings_list_container {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 640px) {
  .free_live_page {
    gap: 14px;
  }
  .free_live_page_actions .new_s_one {
    width: 100%;
  }
  .free_live_page_actions .new_s_one > div {
    width: 100%;
    justify-content: center;
    padding: 0 16px;
  }
  .free_live_title_card {
    padding: 14px 16px;
    border-radius: 16px;
  }
  .free_live_title_card .live_title_page {
    font-size: 15px;
  }
  .free_live_title_card .live_title_page svg {
    width: 24px;
    height: 24px;
  }
  .free_live_page .live_creator_cover {
    height: 170px;
  }
  .free_live_page .live_creator_avatar {
    margin-top: -34px;
  }
  .free_live_page .live_creator_avatar_middle,
  .free_live_page .i_live_profile_avatar {
    width: 68px;
    height: 68px;
  }
  .free_live_page .live_creator_avatar + .live_stream_creator_name {
    padding: 10px 14px 0;
    font-size: 12px;
  }
  .free_live_page .live_creator_avatar + .live_stream_creator_name + .live_stream_creator_name {
    padding: 4px 14px 0;
    font-size: 15px;
  }
  .free_live_page .pr_liv {
    padding: 14px 14px 16px;
  }
  .free_live_page .purchaseLiveButton,
  .free_live_page .purchasedLiveButton {
    min-height: 44px;
    padding: 0 14px;
  }
  .free_live_page .noPost {
    min-height: 260px;
    padding: 24px 18px;
    border-radius: 18px;
  }
  .free_live_page .noPostIcon {
    width: 74px;
    height: 74px;
    border-radius: 20px;
  }
  .free_live_page .noPostIcon svg {
    width: 38px;
    height: 38px;
  }
  .free_live_page .noPostNote {
    font-size: 14px;
  }
}
.scheduled_live_page {
  gap: 18px;
}
.scheduled_live_header {
  gap: 16px;
}
.scheduled_live_page_actions {
  gap: 14px;
}
.scheduled_live_page_actions .new_s_one {
  display: inline-flex;
  margin: 0;
  min-height: 56px;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: none;
  background: #ffffff;
  border: 1px solid #e3e8f2;
  color: #162033;
  flex: 1 1 280px;
}
.scheduled_live_page_actions .new_s_one > div {
  gap: 12px;
  min-height: 56px;
  padding: 0 20px;
  color: inherit;
}
.scheduled_live_page_actions .new_s_one svg {
  width: 18px;
  height: 18px;
  margin-right: 0;
  padding: 9px;
  box-sizing: content-box;
  border-radius: 999px;
  background: #fff2f4;
  fill: #f65169;
  flex: 0 0 auto;
}
.scheduled_live_page_actions .new_s_one:hover {
  background: #f8fafc;
  border-color: #d7deea;
  transform: none;
}
.scheduled_live_title_card {
  position: relative;
  border-radius: 20px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid #e3e8f2;
  box-shadow: none;
  overflow: hidden;
}
.scheduled_live_title_card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(180deg, #f65169 0%, #f59e0b 100%);
}
.scheduled_live_title_card .live_title_page {
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}
.scheduled_live_title_card .live_title_page svg {
  width: 18px;
  height: 18px;
  margin-right: 0;
  padding: 8px;
  box-sizing: content-box;
  border-radius: 999px;
  background: #fff2f4;
  fill: #f65169;
}
.scheduled_live_streamings_list_container {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.scheduled_live_page .scheduled_live_streamings_list_container {
  margin-top: 0;
}
.scheduled_live_page .scheduled_live_empty {
  min-height: 260px;
  border-radius: 22px;
  padding: 32px 24px;
  border-style: solid;
  border-color: #e3e8f2;
  background: #ffffff;
  box-shadow: none;
  gap: 14px;
}
.scheduled_live_page .scheduled_live_empty .noPostIcon {
  width: 72px;
  height: 72px;
  margin: 0;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff5f5;
  border: 1px solid #ffe2e8;
}
.scheduled_live_page .scheduled_live_empty .noPostIcon svg {
  width: 34px;
  height: 34px;
  fill: #f65169;
}
.scheduled_live_page .scheduled_live_empty .noPostNote {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #6b7280;
}
.scheduled_live_card {
  border-radius: 20px;
  border-color: #e3e8f2;
  background: #ffffff;
  box-shadow: none;
}
.scheduled_live_cover {
  height: 172px;
}
.scheduled_live_cover:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.34) 100%);
}
.scheduled_live_badge {
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.35px;
  background: rgba(15, 23, 42, 0.74);
  backdrop-filter: blur(8px);
}
.scheduled_live_avatar {
  left: 18px;
  bottom: -22px;
  width: 52px;
  height: 52px;
  border-width: 3px;
  box-shadow: none;
}
.scheduled_live_body {
  padding: 36px 18px 16px;
  gap: 8px;
}
.scheduled_live_creator {
  font-size: 11px;
  letter-spacing: 0.45px;
  color: #64748b;
}
.scheduled_live_title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}
.scheduled_live_time,
.scheduled_live_price {
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: #475569;
}
.scheduled_live_time .label,
.scheduled_live_price .label {
  color: #94a3b8;
}
.scheduled_live_time .value,
.scheduled_live_price .value {
  font-weight: 700;
  color: #0f172a;
}
.scheduled_live_countdown {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.scheduled_live_countdown_value {
  min-width: 78px;
  font-size: 13px;
}
.scheduled_live_countdown_label {
  font-size: 12px;
}
.scheduled_live_actions {
  padding: 0 18px 18px;
  gap: 12px;
}
.scheduled_live_view_btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  background: #ffffff;
  border-color: #d7deea;
  color: #1f2937;
  font-size: 12px;
  letter-spacing: 0.2px;
}
.scheduled_live_view_btn:hover {
  background: #f8fafc;
  border-color: #cfd8e4;
}
.scheduled_live_delete_btn {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 12px;
  background: #ffffff;
  border: 1px solid #f3d1d8;
  color: #c2415d;
}
.scheduled_live_delete_btn:hover {
  background: #fff7f8;
  border-color: #ebc0c9;
}
@media (max-width: 640px) {
  .scheduled_live_page {
    gap: 14px;
  }
  .scheduled_live_page_actions {
    gap: 10px;
  }
  .scheduled_live_page_actions .new_s_one {
    width: 100%;
    flex: 1 1 100%;
  }
  .scheduled_live_page_actions .new_s_one > div {
    width: 100%;
    justify-content: center;
    padding: 0 16px;
  }
  .scheduled_live_title_card {
    border-radius: 16px;
    padding: 16px 18px;
  }
  .scheduled_live_title_card .live_title_page {
    font-size: 15px;
  }
  .scheduled_live_title_card .live_title_page svg {
    width: 16px;
    height: 16px;
    padding: 7px;
  }
  .scheduled_live_streamings_list_container {
    gap: 14px;
  }
  .scheduled_live_cover {
    height: 164px;
  }
  .scheduled_live_avatar {
    left: 16px;
    width: 48px;
    height: 48px;
  }
  .scheduled_live_body {
    padding: 34px 16px 14px;
  }
  .scheduled_live_title {
    font-size: 16px;
  }
  .scheduled_live_actions {
    padding: 0 16px 16px;
  }
  .scheduled_live_page .scheduled_live_empty {
    min-height: 220px;
    padding: 26px 18px;
    border-radius: 18px;
  }
  .scheduled_live_page .scheduled_live_empty .noPostIcon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }
  .scheduled_live_page .scheduled_live_empty .noPostIcon svg {
    width: 30px;
    height: 30px;
  }
  .scheduled_live_page .scheduled_live_empty .noPostNote {
    font-size: 14px;
  }
}
.free_live_page {
  gap: 16px;
}
.free_live_header {
  gap: 14px;
}
.free_live_page_actions .new_s_one {
  display: inline-flex;
  margin: 0;
  min-height: 54px;
  padding: 0;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e3e8f2;
  box-shadow: none;
  color: #162033;
}
.free_live_page_actions .new_s_one > div {
  gap: 12px;
  min-height: 54px;
  padding: 0 18px;
  color: inherit;
}
.free_live_page_actions .new_s_one svg {
  width: 18px;
  height: 18px;
  margin-right: 0;
  padding: 9px;
  box-sizing: content-box;
  border-radius: 999px;
  background: #eef6ff;
  fill: #2563eb;
  flex: 0 0 auto;
}
.free_live_page_actions .new_s_one:hover {
  background: #f8fafc;
  border-color: #d5dde9;
  transform: none;
}
.free_live_title_card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e3e8f2;
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: none;
  overflow: hidden;
}
.free_live_title_card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #38bdf8 100%);
}
.free_live_title_card .live_title_page {
  margin: 0;
  padding: 0;
  gap: 10px;
  align-items: center;
  text-transform: none;
  letter-spacing: 0.1px;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}
.free_live_title_card .live_title_page svg {
  width: 18px;
  height: 18px;
  margin-right: 0;
  padding: 8px;
  box-sizing: content-box;
  border-radius: 999px;
  background: #eef6ff;
  fill: #2563eb;
}
.free_live_page .live_list_box_wrapper_in,
.free_live_page .noPost {
  background: #ffffff;
  border-color: #e3e8f2;
  box-shadow: none;
}
.free_live_page .live_creator_cover:after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.22) 100%);
}
.free_live_page .count_time {
  background: rgba(255, 255, 255, 0.9);
  color: #1e3a5f;
  border: 1px solid #d9e7f8;
}
.free_live_page .count_time svg {
  fill: #2563eb;
}
.free_live_page .i_live_profile_avatar {
  box-shadow: none;
}
.free_live_page .purchaseLiveButton,
.free_live_page .purchasedLiveButton {
  background: #ffffff;
  border-color: #d8e3f3;
  color: #1e3a5f;
  box-shadow: none;
}
.free_live_page .purchaseLiveButton strong,
.free_live_page .purchasedLiveButton strong {
  background: #eef6ff;
  color: #2563eb;
}
.free_live_page .purchaseLiveButton strong span svg,
.free_live_page .purchasedLiveButton strong span svg {
  fill: #2563eb;
}
.free_live_page .pr_liv:hover .purchaseLiveButton,
.free_live_page .pr_liv:hover .purchasedLiveButton {
  background: #f8fbff;
  border-color: #cfdcf0;
  color: #1e3a5f;
  box-shadow: none;
}
.free_live_page .pr_liv:hover .purchaseLiveButton strong span svg,
.free_live_page .pr_liv:hover .purchasedLiveButton strong span svg {
  fill: #2563eb;
}
.free_live_page .noPost {
  min-height: 280px;
  border-style: solid;
}
.free_live_page .noPostIcon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #eef6ff;
  border: 1px solid #dceafb;
}
.free_live_page .noPostIcon svg {
  width: 34px;
  height: 34px;
  fill: #38bdf8;
}
.free_live_page .noPostNote {
  font-size: 14px;
  color: #6b7280;
}
@media (max-width: 640px) {
  .free_live_page_actions .new_s_one {
    width: 100%;
  }
  .free_live_page_actions .new_s_one > div {
    width: 100%;
    justify-content: center;
    padding: 0 16px;
  }
  .free_live_title_card {
    border-radius: 16px;
    padding: 16px 18px;
  }
  .free_live_title_card .live_title_page {
    font-size: 15px;
  }
  .free_live_title_card .live_title_page svg {
    width: 16px;
    height: 16px;
    padding: 7px;
  }
  .free_live_page .noPost {
    min-height: 220px;
  }
  .free_live_page .noPostIcon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }
  .free_live_page .noPostIcon svg {
    width: 30px;
    height: 30px;
  }
}
.creator_bulk_page {
  --creator-bulk-surface: #ffffff;
  --creator-bulk-surface-muted: #f7f9fc;
  --creator-bulk-surface-soft: #fbfcfe;
  --creator-bulk-border: #e2e8f2;
  --creator-bulk-border-strong: #d6deea;
  --creator-bulk-text: #172033;
  --creator-bulk-text-muted: #66758d;
  --creator-bulk-text-soft: #8c98ac;
  --creator-bulk-accent: #f65169;
  --creator-bulk-accent-soft: rgba(246, 81, 105, 0.1);
  --creator-bulk-blue-soft: #eef6ff;
  --creator-bulk-blue-border: #d7e7f7;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}
.creator_bulk_page .creator_bulk_shell {
  box-shadow: none;
}
.creator_bulk_page .i_settings_wrapper_title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 28px 22px;
  border-bottom: 1px solid var(--creator-bulk-border);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}
.creator_bulk_page .creator_bulk_header_meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.creator_bulk_page .i_settings_wrapper_title_txt {
  gap: 12px;
  padding-bottom: 0;
  color: var(--creator-bulk-text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}
.creator_bulk_page .i_settings_wrapper_title_txt svg {
  width: 18px;
  height: 18px;
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--creator-bulk-accent-soft);
  fill: var(--creator-bulk-accent);
  flex: 0 0 auto;
}
.creator_bulk_page .creator_bulk_header_note {
  max-width: 720px;
  color: var(--creator-bulk-text-muted);
  font-size: 13px;
  line-height: 1.55;
}
.creator_bulk_page .creator_bulk_header_stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 10px;
  width: min(100%, 520px);
}
.creator_bulk_page .creator_bulk_header_stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid var(--creator-bulk-border);
  border-radius: 18px;
  background: var(--creator-bulk-surface-muted);
}
.creator_bulk_page .creator_bulk_header_stat_label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--creator-bulk-text-soft);
}
.creator_bulk_page .creator_bulk_header_stat_value {
  font-size: 22px;
  line-height: 1;
  color: var(--creator-bulk-text);
}
.creator_bulk_page .creator_bulk_page_body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}
.creator_bulk_page .creator_bulk_compose_section,
.creator_bulk_page .creator_bulk_history_section {
  border: 1px solid var(--creator-bulk-border);
  border-radius: 26px;
  background: var(--creator-bulk-surface-soft);
  min-width: 0;
  overflow: hidden;
}
.creator_bulk_page .creator_bulk_compose_section {
  overflow: hidden;
}
.creator_bulk_page .creator_bulk_history_section {
  overflow: hidden;
}
.creator_bulk_page .creator_bulk_section_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 0;
}
.creator_bulk_page .creator_bulk_section_copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.creator_bulk_page .creator_bulk_section_eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--creator-bulk-accent);
}
.creator_bulk_page .creator_bulk_section_title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--creator-bulk-text);
}
.creator_bulk_page .creator_bulk_section_note {
  max-width: 760px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--creator-bulk-text-muted);
}
.creator_bulk_page .creator_bulk_compose_layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.7fr);
  gap: 18px;
  padding: 20px 24px 24px;
}
.creator_bulk_page .creator_bulk_compose_form,
.creator_bulk_page .creator_bulk_helper_panel {
  min-width: 0;
}
.creator_bulk_page .creator_bulk_compose_form {
  padding: 18px;
  border: 1px solid var(--creator-bulk-border);
  border-radius: 22px;
  background: var(--creator-bulk-surface);
}
.creator_bulk_page .creator_bulk_form_notice {
  margin-bottom: 14px;
}
.creator_bulk_page .creator_bulk_form_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.creator_bulk_page .creator_bulk_field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid var(--creator-bulk-border);
  border-radius: 20px;
  background: var(--creator-bulk-surface-soft);
}
.creator_bulk_page .creator_bulk_field_full {
  grid-column: 1 / -1;
}
.creator_bulk_page .creator_bulk_private_price_field {
  margin-bottom: 6px;
}
.creator_bulk_page .creator_bulk_field .i_settings_item_title,
.creator_bulk_page .creator_bulk_field .i_settings_item_title_for {
  width: 100%;
  padding-left: 0;
}
.creator_bulk_page .creator_bulk_field .i_settings_item_title {
  margin: 0;
  color: var(--creator-bulk-text);
  font-size: 13px;
  font-weight: 700;
}
.creator_bulk_page .creator_bulk_field .i_settings_item_title_for {
  min-width: 0;
}
.creator_bulk_page .creator_bulk_field .flnm,
.creator_bulk_page .creator_bulk_field .creator_bulk_select,
.creator_bulk_page .creator_bulk_field .creator_bulk_price_input {
  min-width: 0;
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--creator-bulk-border);
  border-radius: 16px;
  background: var(--creator-bulk-surface);
  color: var(--creator-bulk-text);
  font-size: 14px;
  font-weight: 600;
}
.creator_bulk_page .creator_bulk_field .creator_bulk_select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
  cursor: pointer;
}
.creator_bulk_page .creator_bulk_field .description_ {
  width: 100%;
  min-height: 180px;
  padding: 16px 18px;
  border: 1px solid var(--creator-bulk-border);
  border-radius: 18px;
  background: var(--creator-bulk-surface);
  color: var(--creator-bulk-text);
  font-size: 14px;
  line-height: 1.65;
  resize: vertical;
  outline: none;
}
.creator_bulk_page .creator_bulk_field .creator_bulk_select:hover,
.creator_bulk_page .creator_bulk_field .creator_bulk_file_label:hover,
.creator_bulk_page .creator_bulk_field .flnm:hover,
.creator_bulk_page .creator_bulk_field .description_:hover {
  border-color: var(--creator-bulk-border-strong);
}
.creator_bulk_page .creator_bulk_field .creator_bulk_select:focus,
.creator_bulk_page .creator_bulk_field .flnm:focus,
.creator_bulk_page .creator_bulk_field .description_:focus {
  border-color: var(--creator-bulk-accent);
}
.creator_bulk_page .creator_bulk_field .creator_bulk_file_wrap {
  width: 100%;
  min-width: 0;
}
.creator_bulk_page .creator_bulk_field .creator_bulk_file_label {
  min-height: 50px;
  padding: 12px 16px;
  border: 1px dashed var(--creator-bulk-border-strong);
  border-radius: 16px;
  background: var(--creator-bulk-surface);
}
.creator_bulk_page .creator_bulk_field .box_not {
  margin-top: 8px;
  color: var(--creator-bulk-text-muted);
  font-size: 12px;
  line-height: 1.5;
}
.creator_bulk_page .creator_bulk_submit_row {
  display: flex;
  justify-content: flex-start;
  padding-top: 16px;
}
.creator_bulk_page .creator_bulk_submit_row .i_nex_btn_btn {
  min-width: 220px;
  min-height: 48px;
  border-radius: 16px;
}
.creator_bulk_page .creator_bulk_helper_panel {
  display: grid;
  gap: 14px;
}
.creator_bulk_page .creator_bulk_helper_card {
  padding: 18px;
  border: 1px solid var(--creator-bulk-blue-border);
  border-radius: 22px;
  background: var(--creator-bulk-blue-soft);
}
.creator_bulk_page .creator_bulk_helper_eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f6f95;
}
.creator_bulk_page .creator_bulk_helper_title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--creator-bulk-text);
}
.creator_bulk_page .creator_bulk_helper_body {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--creator-bulk-text-muted);
}
.creator_bulk_page .creator_bulk_history_header {
  align-items: center;
  padding-bottom: 18px;
}
.creator_bulk_page .creator_bulk_history_total {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  padding: 0 16px;
  border: 1px solid var(--creator-bulk-border);
  border-radius: 999px;
  background: var(--creator-bulk-surface);
  color: var(--creator-bulk-text);
  font-size: 20px;
  font-weight: 800;
}
.creator_bulk_page .creator_bulk_table_scroll,
.creator_bulk_page .i_overflow_x_auto {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.creator_bulk_page .creator_bulk_table_scroll {
  padding: 0 0 6px;
}
.creator_bulk_page .creator_bulk_table_frame {
  display: grid;
  min-width: 0;
  padding: 0 24px 24px;
  overflow: hidden;
}
.creator_bulk_page .creator_bulk_campaign_table {
  display: inline-block;
  width: max-content;
  min-width: 100%;
  max-width: none;
}
.creator_bulk_page .creator_bulk_campaign_table .i_tab_header,
.creator_bulk_page .creator_bulk_campaign_table .i_tab_list_item {
  display: grid;
  width: max-content;
  min-width: 100%;
  grid-template-columns: 52px 110px 150px 124px 96px 104px max-content max-content;
  gap: 8px;
  align-items: stretch;
}
.creator_bulk_page .creator_bulk_campaign_table .i_tab_header {
  padding: 0 0 14px;
  border-bottom-color: var(--creator-bulk-border);
}
.creator_bulk_page .creator_bulk_campaign_table .i_tab_list_item_container {
  display: block;
  width: max-content;
  min-width: 100%;
}
.creator_bulk_page .creator_bulk_campaign_table .i_tab_list_item {
  padding: 14px 0;
  border-bottom-color: var(--creator-bulk-border);
}
.creator_bulk_page .creator_bulk_campaign_table .tab_detail_item {
  width: auto;
  min-width: 0;
  padding: 14px 12px;
  border: 1px solid var(--creator-bulk-border);
  border-radius: 16px;
  background: var(--creator-bulk-surface);
}
.creator_bulk_page .creator_bulk_campaign_table .tab_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-width: 0;
  padding: 11px 12px;
  border: 0;
  border-radius: 12px;
  background: var(--creator-bulk-surface-muted);
  color: var(--creator-bulk-text-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
}
.creator_bulk_page .creator_bulk_campaign_id {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--creator-bulk-surface-muted);
  color: var(--creator-bulk-text);
  font-size: 12px;
  font-weight: 800;
}
.creator_bulk_page .creator_bulk_target_badge,
.creator_bulk_page .creator_bulk_status_badge,
.creator_bulk_page .creator_bulk_queue_metric {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.creator_bulk_page .creator_bulk_target_badge {
  background: var(--creator-bulk-surface-muted);
  color: var(--creator-bulk-text);
}
.creator_bulk_page .creator_bulk_status_badge {
  background: #f3f6fb;
  color: #4b5565;
}
.creator_bulk_page .creator_bulk_status_badge_draft {
  background: #fff4e5;
  color: #945907;
}
.creator_bulk_page .creator_bulk_status_badge_queued,
.creator_bulk_page .creator_bulk_status_badge_sending {
  background: #e7f0ff;
  color: #3568b3;
}
.creator_bulk_page .creator_bulk_status_badge_paused {
  background: #fff7df;
  color: #9a6a00;
}
.creator_bulk_page .creator_bulk_status_badge_completed {
  background: #e9f9ef;
  color: #257a43;
}
.creator_bulk_page .creator_bulk_status_badge_canceled {
  background: #fff0f2;
  color: #b42318;
}
.creator_bulk_page .creator_bulk_message_preview,
.creator_bulk_page .creator_bulk_created_at {
  color: var(--creator-bulk-text-muted);
  font-size: 12px;
  line-height: 1.5;
}
.creator_bulk_page .creator_bulk_created_at {
  white-space: nowrap;
}
.creator_bulk_page .creator_bulk_message_preview {
  display: -webkit-box;
  overflow: hidden;
  text-align: left;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.creator_bulk_page .creator_bulk_message_preview {
  white-space: normal;
  text-align: left;
}
.creator_bulk_page .creator_bulk_queue_summary {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  width: max-content;
}
.creator_bulk_page .creator_bulk_queue_metric {
  background: var(--creator-bulk-surface-muted);
  color: var(--creator-bulk-text-muted);
  white-space: nowrap;
}
.creator_bulk_page .creator_bulk_actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 6px;
  width: max-content;
}
.creator_bulk_page .tab_detail_item .creatorBulkBuildQueue,
.creator_bulk_page .tab_detail_item .creatorBulkPause,
.creator_bulk_page .tab_detail_item .creatorBulkResume,
.creator_bulk_page .tab_detail_item .creatorBulkCancel {
  min-height: 34px;
  padding: 0 8px;
  border-radius: 10px;
  font-size: 11px;
  white-space: nowrap;
}
.creator_bulk_page .creator_bulk_attachment {
  padding: 0 12px;
  min-height: 32px;
}
.creator_bulk_page .creator_bulk_empty_state {
  flex-direction: column;
  gap: 12px;
  margin: 0 24px 24px;
  min-height: 240px;
  border: 1px dashed var(--creator-bulk-border-strong);
  border-radius: 24px;
  background: var(--creator-bulk-surface);
}
.creator_bulk_page .creator_bulk_empty_state .no_c_icon svg {
  width: 52px;
  height: 52px;
  fill: #c2ccda;
}
.creator_bulk_page .creator_bulk_empty_state .n_c_t {
  max-width: 320px;
  padding: 0;
  color: var(--creator-bulk-text-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-transform: none;
}
.creator_bulk_page .creator_bulk_pagination {
  padding: 0 22px 22px;
}
.creator_auto_message_page {
  --creator-auto-surface: #ffffff;
  --creator-auto-surface-muted: #f7f9fc;
  --creator-auto-surface-soft: #fbfcfe;
  --creator-auto-border: #e2e8f2;
  --creator-auto-border-strong: #d5ddea;
  --creator-auto-text: #172033;
  --creator-auto-text-muted: #66758d;
  --creator-auto-text-soft: #8b97ab;
  --creator-auto-accent: #f65169;
  --creator-auto-accent-soft: rgba(246, 81, 105, 0.1);
  --creator-auto-info-bg: #eef6ff;
  --creator-auto-info-border: #d7e7f7;
}
.creator_auto_message_page .creator_auto_message_shell {
  overflow: hidden;
}
.creator_auto_message_page .i_settings_wrapper_title {
  display: block;
  padding: 24px 28px 22px;
  border-bottom: 1px solid var(--creator-auto-border);
}
.creator_auto_message_page .creator_auto_message_header_meta {
  display: grid;
  gap: 10px;
  max-width: 920px;
}
.creator_auto_message_page .i_settings_wrapper_title_txt {
  color: var(--creator-auto-text);
}
.creator_auto_message_page .i_settings_wrapper_title_txt svg {
  padding: 10px;
  border-radius: 14px;
  background: var(--creator-auto-accent-soft);
  fill: var(--creator-auto-accent);
}
.creator_auto_message_page .creator_auto_message_header_note {
  color: var(--creator-auto-text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.creator_auto_message_page .creator_auto_message_header_stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(400px, 100%);
}
.creator_auto_message_page .creator_auto_message_header_stat {
  display: grid;
  gap: 6px;
  min-height: 74px;
  padding: 12px 16px;
  border: 1px solid var(--creator-auto-border);
  border-radius: 18px;
  background: var(--creator-auto-surface-muted);
}
.creator_auto_message_page .creator_auto_message_header_stat_label {
  color: var(--creator-auto-text-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}
.creator_auto_message_page .creator_auto_message_header_stat_value {
  color: var(--creator-auto-text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}
.creator_auto_message_page .creator_auto_message_body {
  padding: 0;
}
.creator_auto_message_page .creator_auto_message_section_header {
  padding: 22px 28px 18px;
}
.creator_auto_message_page .creator_auto_message_section_copy {
  display: grid;
  gap: 8px;
  max-width: 760px;
}
.creator_auto_message_page .creator_auto_message_section_eyebrow {
  color: var(--creator-auto-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.creator_auto_message_page .creator_auto_message_section_title {
  color: var(--creator-auto-text);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}
.creator_auto_message_page .creator_auto_message_section_note {
  color: var(--creator-auto-text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.creator_auto_message_page .creator_auto_message_layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  padding: 0 28px 28px;
}
.creator_auto_message_page .creator_auto_message_form {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--creator-auto-border);
  border-radius: 24px;
  background: var(--creator-auto-surface-soft);
}
.creator_auto_message_page .creator_auto_message_notice {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid #ffd1d7;
  border-radius: 14px;
  background: #fff1f3;
  color: #c81e38;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.creator_auto_message_page .creator_auto_message_form_grid {
  display: grid;
  gap: 16px;
}
.creator_auto_message_page .creator_auto_message_field {
  margin: 0;
  display: block;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--creator-auto-border);
  border-radius: 20px;
  background: var(--creator-auto-surface);
}
.creator_auto_message_page .creator_auto_message_field_compact {
  max-width: 420px;
}
.creator_auto_message_page .creator_auto_message_field .i_settings_item_title {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  color: var(--creator-auto-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}
.creator_auto_message_page .creator_auto_message_field_compact .i_settings_item_title {
  margin-bottom: 12px;
}
.creator_auto_message_page .creator_auto_message_field .i_settings_item_title_for {
  display: block;
  width: 100%;
  min-width: 0;
  padding-left: 0;
  overflow: hidden;
}
.creator_auto_message_page .creator_auto_message_field .flnm,
.creator_auto_message_page .creator_auto_message_field .creator_bulk_select {
  min-width: 0;
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--creator-auto-border);
  border-radius: 16px;
  background-color: var(--creator-auto-surface);
  color: var(--creator-auto-text);
  font-size: 14px;
  font-weight: 600;
}
.creator_auto_message_page .creator_auto_message_field .creator_bulk_select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
  cursor: pointer;
}
.creator_auto_message_page .creator_auto_message_field .description_ {
  width: 100%;
  min-height: 180px;
  padding: 16px 18px;
  border: 1px solid var(--creator-auto-border);
  border-radius: 18px;
  background: var(--creator-auto-surface);
  color: var(--creator-auto-text);
  font-size: 14px;
  line-height: 1.65;
  resize: vertical;
  outline: none;
}
.creator_auto_message_page .creator_auto_message_field .creator_bulk_select:hover,
.creator_auto_message_page .creator_auto_message_field .creator_bulk_file_label:hover,
.creator_auto_message_page .creator_auto_message_field .flnm:hover,
.creator_auto_message_page .creator_auto_message_field .description_:hover {
  border-color: var(--creator-auto-border-strong);
}
.creator_auto_message_page .creator_auto_message_field .creator_bulk_select:focus,
.creator_auto_message_page .creator_auto_message_field .flnm:focus,
.creator_auto_message_page .creator_auto_message_field .description_:focus {
  border-color: var(--creator-auto-accent);
}
.creator_auto_message_page .creator_auto_message_field .creator_bulk_file_wrap {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.creator_auto_message_page .creator_auto_message_field .creator_bulk_file_label {
  width: 100%;
  min-width: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow: hidden;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px dashed var(--creator-auto-border-strong);
  border-radius: 16px;
  background: var(--creator-auto-surface);
}
.creator_auto_message_page .creator_auto_message_field .creator_bulk_file_text {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--creator-auto-text);
  font-weight: 600;
}
.creator_auto_message_page .creator_auto_message_field .box_not {
  margin-top: 8px;
  color: var(--creator-auto-text-muted);
  font-size: 12px;
  line-height: 1.55;
}
.creator_auto_message_page .creator_auto_message_current {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--creator-auto-border);
  border-radius: 16px;
  background: var(--creator-auto-surface-muted);
}
.creator_auto_message_page .creator_auto_message_current_label {
  color: var(--creator-auto-text-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.creator_auto_message_page .creator_bulk_attachment {
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
}
.creator_auto_message_page .creator_auto_message_remove {
  color: var(--creator-auto-text-muted);
  font-size: 13px;
}
.creator_auto_message_page .creator_auto_message_helper_panel {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.creator_auto_message_page .creator_auto_message_helper_card {
  padding: 18px;
  border: 1px solid var(--creator-auto-info-border);
  border-radius: 22px;
  background: var(--creator-auto-info-bg);
}
.creator_auto_message_page .creator_auto_message_helper_eyebrow {
  margin-bottom: 8px;
  color: #4f6f95;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.creator_auto_message_page .creator_auto_message_helper_title {
  color: var(--creator-auto-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}
.creator_auto_message_page .creator_auto_message_helper_body {
  margin-top: 8px;
  color: var(--creator-auto-text-muted);
  font-size: 13px;
  line-height: 1.65;
}
.creator_auto_message_page .creator_auto_message_submit_row {
  display: flex;
  justify-content: flex-start;
  padding-top: 16px;
}
.creator_auto_message_page .creator_auto_message_submit_row .i_nex_btn_btn {
  min-width: 220px;
  min-height: 48px;
  border-radius: 16px;
}
@media (max-width: 1180px) {
  .creator_auto_message_page .creator_auto_message_header_stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .creator_auto_message_page .creator_auto_message_layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 768px) {
  .creator_auto_message_page .i_settings_wrapper_title {
    padding: 20px 18px 18px;
  }
  .creator_auto_message_page .creator_auto_message_body {
    padding: 16px;
  }
  .creator_auto_message_page .creator_auto_message_section_header,
  .creator_auto_message_page .creator_auto_message_layout {
    padding-left: 0;
    padding-right: 0;
  }
  .creator_auto_message_page .creator_auto_message_section_header {
    padding-top: 2px;
  }
  .creator_auto_message_page .creator_auto_message_layout {
    padding-bottom: 0;
  }
  .creator_auto_message_page .creator_auto_message_field_compact {
    max-width: none;
  }
}
@media (max-width: 640px) {
  .creator_auto_message_page .creator_auto_message_header_stats {
    grid-template-columns: minmax(0, 1fr);
  }
  .creator_auto_message_page .i_settings_wrapper_title_txt,
  .creator_auto_message_page .creator_auto_message_section_title {
    font-size: 18px;
  }
  .creator_auto_message_page .creator_auto_message_form {
    padding: 14px;
    border-radius: 18px;
  }
  .creator_auto_message_page .creator_auto_message_field {
    padding: 14px;
    border-radius: 16px;
  }
  .creator_auto_message_page .creator_auto_message_submit_row .i_nex_btn_btn {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 1180px) {
  .creator_bulk_page .creator_bulk_header_stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .creator_bulk_page .creator_bulk_compose_layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 768px) {
  .creator_bulk_page .i_settings_wrapper_title {
    padding: 20px 18px 18px;
  }
  .creator_bulk_page .creator_bulk_page_body {
    padding: 16px;
  }
  .creator_bulk_page .creator_bulk_section_header,
  .creator_bulk_page .creator_bulk_compose_layout,
  .creator_bulk_page .creator_bulk_table_frame {
    padding-left: 16px;
    padding-right: 16px;
  }
  .creator_bulk_page .creator_bulk_section_header {
    padding-top: 18px;
  }
  .creator_bulk_page .creator_bulk_compose_layout {
    padding-bottom: 16px;
  }
  .creator_bulk_page .creator_bulk_form_grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .creator_bulk_page .creator_bulk_submit_row .i_nex_btn_btn {
    width: 100%;
    min-width: 0;
  }
  .creator_bulk_page .creator_bulk_empty_state {
    margin-left: 16px;
    margin-right: 16px;
  }
}
@media (max-width: 640px) {
  .creator_bulk_page .creator_bulk_header_stats {
    grid-template-columns: minmax(0, 1fr);
  }
  .creator_bulk_page .i_settings_wrapper_title_txt,
  .creator_bulk_page .creator_bulk_section_title {
    font-size: 18px;
  }
  .creator_bulk_page .creator_bulk_compose_form {
    padding: 14px;
    border-radius: 18px;
  }
  .creator_bulk_page .creator_bulk_field {
    padding: 14px;
    border-radius: 16px;
  }
}
.settings_main_wrapper.my_profile_page {
  --my-profile-surface: #ffffff;
  --my-profile-surface-soft: #fbfcfe;
  --my-profile-surface-muted: #f6f9ff;
  --my-profile-border: #dfe7f2;
  --my-profile-border-strong: #cfd9e7;
  --my-profile-text: #1b2437;
  --my-profile-text-muted: #65758e;
  --my-profile-text-soft: #8795ab;
  --my-profile-accent: #f65169;
  --my-profile-accent-soft: rgba(246, 81, 105, 0.1);
  --my-profile-success-bg: #eef8f2;
  --my-profile-success-border: #d6ebdd;
  --my-profile-success-text: #286847;
  --my-profile-warning-bg: #fff1f3;
  --my-profile-warning-border: #ffd7dd;
  --my-profile-warning-text: #c6344b;
  width: 100%;
  justify-content: flex-start;
}
.settings_main_wrapper.my_profile_page .my_profile_shell {
  overflow: hidden;
}
.settings_main_wrapper.my_profile_page .i_settings_wrapper_title {
  display: block;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--my-profile-border);
  background: linear-gradient(
    180deg,
    rgba(246, 249, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
}
.settings_main_wrapper.my_profile_page .my_profile_header_meta {
  display: grid;
  gap: 10px;
  max-width: 920px;
}
.settings_main_wrapper.my_profile_page .i_settings_wrapper_title_txt {
  color: var(--my-profile-text);
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
}
.settings_main_wrapper.my_profile_page .i_settings_wrapper_title_txt svg {
  width: 24px;
  height: 24px;
  padding: 10px;
  margin-right: 0;
  border-radius: 14px;
  background: var(--my-profile-accent-soft);
  fill: var(--my-profile-accent);
  flex: 0 0 auto;
}
.settings_main_wrapper.my_profile_page .my_profile_header_note {
  color: var(--my-profile-text-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}
.settings_main_wrapper.my_profile_page .i_settings_wrapper_title_txt span {
  line-height: 1.1;
}
.settings_main_wrapper.my_profile_page .my_profile_form_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  max-width: none;
  justify-content: stretch;
  justify-items: stretch;
  padding: 22px 20px 20px;
}
.settings_main_wrapper.my_profile_page .my_profile_form {
  width: 100%;
  max-width: none;
}
.settings_main_wrapper.my_profile_page .i_settings_wrapper_item {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 100%;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--my-profile-border);
  border-radius: 22px;
  border-bottom: 1px solid var(--my-profile-border);
  background: var(--my-profile-surface-soft);
}
.settings_main_wrapper.my_profile_page .i_settings_item_title {
  display: block;
  width: 100%;
  padding-top: 0;
  color: var(--my-profile-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}
.settings_main_wrapper.my_profile_page .i_settings_item_title_for {
  display: grid;
  gap: 8px;
  width: 100%;
  min-width: 0;
  padding-left: 10px;
  border-radius: 18px;
  color: var(--my-profile-text);
}
.settings_main_wrapper.my_profile_page .settings_edit_row {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--my-profile-border);
  border-radius: 16px;
  background: var(--my-profile-surface);
  justify-content: space-between;
  gap: 12px;
}
.settings_main_wrapper.my_profile_page .my_profile_quick_row .i_settings_item_title_for {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid var(--my-profile-border);
  border-radius: 18px;
  background: var(--my-profile-surface);
}
.settings_main_wrapper.my_profile_page .my_profile_quick_row .settings_edit_text {
  flex: 1 1 auto;
  white-space: normal;
  line-height: 1.45;
}
.settings_main_wrapper.my_profile_page .my_profile_quick_row .settings_edit_btn {
  flex: 0 0 auto;
}
.settings_main_wrapper.my_profile_page .settings_edit_text {
  min-width: 0;
  color: var(--my-profile-text);
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.settings_main_wrapper.my_profile_page .settings_edit_btn {
  padding: 0 16px;
  min-height: 38px;
  border-radius: 12px;
  border: 1px solid var(--my-profile-border) !important;
  background: var(--my-profile-surface-muted) !important;
  color: var(--my-profile-text) !important;
  box-shadow: none;
}
.settings_main_wrapper.my_profile_page .settings_edit_btn:hover {
  border-color: var(--my-profile-border-strong) !important;
  background: #eef3fb !important;
}
.settings_main_wrapper.my_profile_page .i_settings_item_title_for .flnm,
.settings_main_wrapper.my_profile_page .i_settings_item_title_for .flnmk,
.settings_main_wrapper.my_profile_page .page_category {
  display: block;
  width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--my-profile-border);
  border-radius: 16px;
  background: var(--my-profile-surface);
  color: var(--my-profile-text);
  font-size: 14px;
  font-weight: 600;
  outline: none;
  box-shadow: none;
}
.settings_main_wrapper.my_profile_page .i_settings_item_title_for .flnmk {
  padding-left: 52px;
}
.settings_main_wrapper.my_profile_page .page_category {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
}
.settings_main_wrapper.my_profile_page .ib {
  display: block;
  width: 100%;
}
.settings_main_wrapper.my_profile_page .ib::after {
  display: none;
}
.settings_main_wrapper.my_profile_page .description_ {
  width: 100%;
  min-height: 170px;
  padding: 16px 18px;
  border: 1px solid var(--my-profile-border);
  border-radius: 18px;
  background: var(--my-profile-surface);
  color: var(--my-profile-text);
  font-size: 14px;
  line-height: 1.65;
  resize: vertical;
  outline: none;
}
.settings_main_wrapper.my_profile_page .i_settings_item_title_for .flnm:hover,
.settings_main_wrapper.my_profile_page .i_settings_item_title_for .flnmk:hover,
.settings_main_wrapper.my_profile_page .page_category:hover,
.settings_main_wrapper.my_profile_page .description_:hover {
  border-color: var(--my-profile-border-strong);
}
.settings_main_wrapper.my_profile_page .i_settings_item_title_for .flnm:focus,
.settings_main_wrapper.my_profile_page .i_settings_item_title_for .flnmk:focus,
.settings_main_wrapper.my_profile_page .page_category:focus,
.settings_main_wrapper.my_profile_page .description_:focus {
  border-color: var(--my-profile-accent);
}
.settings_main_wrapper.my_profile_page .box_not {
  padding-top: 0;
  color: var(--my-profile-text-muted);
  font-size: 12px;
  line-height: 1.6;
}
.settings_main_wrapper.my_profile_page .warning_username,
.settings_main_wrapper.my_profile_page .invalid_username,
.settings_main_wrapper.my_profile_page .character_warning {
  color: var(--my-profile-warning-text);
}
.settings_main_wrapper.my_profile_page .gender-options-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}
.settings_main_wrapper.my_profile_page .my_profile_gender_row .i_settings_item_title_for {
  gap: 12px;
}
.settings_main_wrapper.my_profile_page .gender-options-row .flexBox {
  padding: 0;
  min-width: 0;
}
.settings_main_wrapper.my_profile_page .youare {
  width: 100%;
}
.settings_main_wrapper.my_profile_page .flexBox label span {
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--my-profile-border);
  border-radius: 16px;
  background: var(--my-profile-surface);
  color: var(--my-profile-text-muted);
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 700;
  justify-content: flex-start;
  gap: 10px;
}
.settings_main_wrapper.my_profile_page .flexBox label span svg {
  width: 20px;
  height: 20px;
  margin-right: 0;
  fill: currentColor;
}
.settings_main_wrapper.my_profile_page .flexBox label input:checked ~ span {
  border-color: rgba(246, 81, 105, 0.28);
  background: var(--my-profile-accent-soft);
  color: var(--my-profile-accent);
}
.settings_main_wrapper.my_profile_page .my_profile_social_links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 100%;
  align-content: start;
}
.settings_main_wrapper.my_profile_page .my_profile_social_link {
  padding-bottom: 0;
}
.settings_main_wrapper.my_profile_page .i_i_social_icon {
  left: 14px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}
.settings_main_wrapper.my_profile_page .iisocialicon {
  width: 24px;
  height: 24px;
  border-radius: 10px;
  background: var(--my-profile-surface-muted);
}
.settings_main_wrapper.my_profile_page .iisocialicon svg {
  width: 14px;
  height: 14px;
  fill: var(--my-profile-text-soft);
}
.settings_main_wrapper.my_profile_page .my_profile_feedback {
  display: none;
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--my-profile-success-border);
  background: var(--my-profile-success-bg);
  color: var(--my-profile-success-text);
  font-size: 13px;
  font-weight: 700;
}
.settings_main_wrapper.my_profile_page .my_profile_warning {
  border-color: var(--my-profile-warning-border);
  background: var(--my-profile-warning-bg);
  color: var(--my-profile-warning-text);
}
.settings_main_wrapper.my_profile_page .my_profile_submit_row {
  display: flex;
  justify-content: flex-start;
  padding: 18px 28px 28px;
}
.settings_main_wrapper.my_profile_page .my_profile_submit_row .i_nex_btn_btn {
  float: none;
  min-width: 220px;
  min-height: 48px;
  border-radius: 16px;
  box-shadow: none;
}
@media (max-width: 980px) {
  .settings_main_wrapper.my_profile_page .i_settings_item_title {
    padding-top: 0;
  }
  .settings_main_wrapper.my_profile_page .my_profile_social_links,
  .settings_main_wrapper.my_profile_page .gender-options-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .settings_main_wrapper.my_profile_page .my_profile_quick_row .i_settings_item_title_for {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .settings_main_wrapper.my_profile_page .i_settings_wrapper_title {
    padding: 20px 18px 18px;
  }
  .settings_main_wrapper.my_profile_page .i_settings_wrapper_title_txt {
    font-size: 20px;
  }
  .settings_main_wrapper.my_profile_page .my_profile_form_grid {
    padding: 16px 0 0;
  }
  .settings_main_wrapper.my_profile_page .i_settings_wrapper_item {
    padding: 14px;
    border-radius: 18px;
  }
  .settings_main_wrapper.my_profile_page .my_profile_feedback {
    margin-left: 0;
    margin-right: 0;
  }
  .settings_main_wrapper.my_profile_page .my_profile_submit_row {
    padding: 16px 0;
  }
  .settings_main_wrapper.my_profile_page .my_profile_submit_row .i_nex_btn_btn {
    width: 100%;
    min-width: 0;
  }
  .settings_main_wrapper.my_profile_page .settings_edit_row {
    padding: 12px 14px;
  }
}
.settings_main_wrapper.agencies_settings {
  --agency-settings-surface: #ffffff;
  --agency-settings-surface-muted: #f7f9fc;
  --agency-settings-surface-soft: #fbfcfe;
  --agency-settings-border: #e2e8f2;
  --agency-settings-border-strong: #d4deeb;
  --agency-settings-text: #172033;
  --agency-settings-text-muted: #66758d;
  --agency-settings-text-soft: #8a97ac;
  --agency-settings-accent: #f65169;
  --agency-settings-accent-soft: rgba(246, 81, 105, 0.1);
  --agency-settings-blue-soft: #eef6ff;
  --agency-settings-blue-border: #d7e7f7;
  --agency-settings-green-soft: #eff8f3;
  --agency-settings-green-border: #cfe7d8;
}
.settings_main_wrapper.agencies_settings .agencies_settings_shell {
  overflow: hidden;
}
.settings_main_wrapper.agencies_settings .i_settings_wrapper_title {
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--agency-settings-border);
  background: linear-gradient(180deg, rgba(246, 249, 255, 0.94) 0%, rgba(255, 255, 255, 0.98) 100%);
}
.settings_main_wrapper.agencies_settings .agencies_settings_title_meta {
  display: grid;
  gap: 12px;
  max-width: 920px;
}
.settings_main_wrapper.agencies_settings .i_settings_wrapper_title_txt {
  gap: 14px;
  color: var(--agency-settings-text);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.settings_main_wrapper.agencies_settings .i_settings_wrapper_title_txt svg {
  padding: 10px;
  border-radius: 14px;
  background: rgba(246, 81, 105, 0.1);
  color: var(--agency-settings-accent);
  opacity: 1;
}
.settings_main_wrapper.agencies_settings .agencies_settings_title_note {
  max-width: 860px;
  color: #5f7190;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}
.settings_main_wrapper.agencies_settings .i_settings_wrapper_items {
  display: grid;
  gap: 16px;
  padding: 0 24px 24px;
}
.settings_main_wrapper.agencies_settings .i_settings_wrapper_item {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--agency-settings-border);
  border-radius: 22px;
  background: var(--agency-settings-surface);
}

.settings_main_wrapper.agencies_settings .agencies_settings_notice {
  margin-top: 14px;
  padding: 16px 18px;
  border-color: var(--agency-settings-blue-border);
  background: linear-gradient(180deg, rgba(246, 249, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.settings_main_wrapper.agencies_settings .agencies_settings_notice_text {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #445977;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
}

.settings_main_wrapper.agencies_settings .agencies_settings_notice_text::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7eb3f4 0%, #5b90d1 100%);
  flex: 0 0 auto;
  box-shadow: 0 0 0 5px rgba(126, 179, 244, 0.14);
}
.settings_main_wrapper.agencies_settings .agencies_settings_summary {
  margin-top: 14px;
  padding: 22px 24px;
  border-color: var(--agency-settings-blue-border);
  background: linear-gradient(180deg, rgba(246, 249, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}
.settings_main_wrapper.agencies_settings .agencies_settings_summary_header {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}
.settings_main_wrapper.agencies_settings .agencies_settings_summary_kicker {
  color: var(--agency-settings-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.settings_main_wrapper.agencies_settings .agencies_settings_summary_title {
  color: var(--agency-settings-text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}
.settings_main_wrapper.agencies_settings .agencies_settings_summary_stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.settings_main_wrapper.agencies_settings .agencies_settings_summary_stat {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--agency-settings-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}
.settings_main_wrapper.agencies_settings .agencies_settings_summary_stat_label {
  color: var(--agency-settings-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.settings_main_wrapper.agencies_settings .agencies_settings_summary_stat_value {
  color: var(--agency-settings-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  word-break: break-word;
}
.settings_main_wrapper.agencies_settings .agencies_membership_table_section {
  padding: 18px;
  border: 1px solid var(--agency-settings-border);
  border-radius: 22px;
  background: var(--agency-settings-surface-soft);
}
.settings_main_wrapper.agencies_settings .agencies_membership_table_header {
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
}
.settings_main_wrapper.agencies_settings .agencies_membership_table_header_main {
  display: grid;
  gap: 6px;
}
.settings_main_wrapper.agencies_settings .agencies_membership_table_eyebrow {
  color: var(--agency-settings-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.settings_main_wrapper.agencies_settings .agencies_membership_table_title {
  color: var(--agency-settings-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}
.settings_main_wrapper.agencies_settings .agencies_membership_table_frame {
  display: grid;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--agency-settings-border);
  border-radius: 20px;
  background: var(--agency-settings-surface);
}
.settings_main_wrapper.agencies_settings .agencies_membership_table_wrap {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.settings_main_wrapper.agencies_settings .agencies_membership_table_scroll {
  padding: 14px;
}
.settings_main_wrapper.agencies_settings .agencies_membership_table {
  display: inline-block;
  width: max-content;
  min-width: 100%;
  max-width: none;
}
.settings_main_wrapper.agencies_settings .agencies_membership_table .i_tab_header,
.settings_main_wrapper.agencies_settings .agencies_membership_table .i_tab_list_item {
  display: grid;
  width: max-content;
  min-width: 100%;
  grid-template-columns: minmax(220px, 1.4fr) minmax(170px, 1fr) minmax(130px, 0.55fr) minmax(160px, 0.7fr);
  gap: 8px;
  align-items: stretch;
}
.settings_main_wrapper.agencies_settings .agencies_membership_table .i_tab_header {
  padding: 0 0 10px;
  border-bottom: 1px solid var(--agency-settings-border);
}
.settings_main_wrapper.agencies_settings .agencies_membership_table .i_tab_list_item_container {
  display: block;
  width: max-content;
  min-width: 100%;
}
.settings_main_wrapper.agencies_settings .agencies_membership_table .i_tab_list_item {
  padding: 10px 10px 10px;
}
.settings_main_wrapper.agencies_settings .agencies_membership_table .tab_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  width: auto;
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: 12px;
  background: var(--agency-settings-surface-muted);
  color: var(--agency-settings-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}
.settings_main_wrapper.agencies_settings .agencies_membership_table .tab_detail_item {
  min-width: 0;
  width: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 14px;
  border: 1px solid var(--agency-settings-border);
  border-radius: 16px;
  background: var(--agency-settings-surface);
}
.settings_main_wrapper.agencies_settings .agencies_membership_value {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--agency-settings-text);
  text-align: left;
  font-size: 13px;
  line-height: 1.45;
}
.settings_main_wrapper.agencies_settings .agencies_membership_value_name {
  font-size: 15px;
  font-weight: 800;
}
.settings_main_wrapper.agencies_settings .agencies_membership_value_name a {
  color: var(--agency-settings-text);
}
.settings_main_wrapper.agencies_settings .agencies_membership_value_name a:hover {
  color: var(--agency-settings-accent);
}
.settings_main_wrapper.agencies_settings .agencies_membership_value_owner {
  color: var(--agency-settings-text-muted);
  font-weight: 600;
}
.settings_main_wrapper.agencies_settings .agencies_membership_fee_badge,
.settings_main_wrapper.agencies_settings .agencies_membership_status_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  margin-right: auto;
}
.settings_main_wrapper.agencies_settings .agencies_membership_fee_badge {
  background: var(--agency-settings-surface-muted);
  color: var(--agency-settings-text);
}
.settings_main_wrapper.agencies_settings .agencies_membership_status_badge {
  background: #eef2f8;
  color: #55657e;
}
.settings_main_wrapper.agencies_settings .agencies_membership_status_badge_active {
  background: #e9f9ef;
  color: #257a43;
}
.settings_main_wrapper.agencies_settings .agencies_membership_status_badge_inactive {
  background: #fff0f2;
  color: #b42318;
}

.settings_main_wrapper.agencies_settings .agencies_available_table_section {
  padding: 18px;
}

.settings_main_wrapper.agencies_settings .agencies_available_table_frame {
  display: grid;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--agency-settings-blue-border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(245, 249, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.settings_main_wrapper.agencies_settings .agencies_available_table_frame .agencies_available_table_wrap {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.settings_main_wrapper.agencies_settings .agencies_available_table_frame .agencies_available_table_scroll {
  padding: 0;
}

.settings_main_wrapper.agencies_settings .agencies_available_table {
  display: inline-block;
  width: max-content;
  min-width: 100%;
  max-width: none;
}

.settings_main_wrapper.agencies_settings .agencies_available_table .i_tab_header,
.settings_main_wrapper.agencies_settings .agencies_available_table .i_tab_list_item {
  display: grid;
  width: max-content;
  min-width: 100%;
  grid-template-columns: minmax(240px, 1.35fr) minmax(200px, 1fr) minmax(180px, 0.9fr) minmax(230px, 1fr);
  gap: 10px;
  align-items: stretch;
}

.settings_main_wrapper.agencies_settings .agencies_available_table .i_tab_header {
  padding: 10px 10px 10px;
  border-bottom: 1px solid var(--agency-settings-border);
}

.settings_main_wrapper.agencies_settings .agencies_available_table .i_tab_list_item_container {
  display: block;
  width: max-content;
  min-width: 100%;
  padding: 10px;
}

.settings_main_wrapper.agencies_settings .agencies_available_table .i_tab_list_item {
  margin-top: 0;
  padding: 12px 0 0;
}

.settings_main_wrapper.agencies_settings .agencies_available_table .tab_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  width: auto;
  min-height: 40px;
  padding: 8px 14px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--agency-settings-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.settings_main_wrapper.agencies_settings .agencies_available_table .tab_detail_item {
  min-width: 0;
  width: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 16px;
  border: 1px solid var(--agency-settings-border);
  border-radius: 16px;
  background: var(--agency-settings-surface);
  color: var(--agency-settings-text);
}

.settings_main_wrapper.agencies_settings .agencies_available_value {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--agency-settings-text);
  text-align: left;
  font-size: 13px;
  line-height: 1.45;
}

.settings_main_wrapper.agencies_settings .agencies_available_value_name {
  font-size: 15px;
  font-weight: 800;
}

.settings_main_wrapper.agencies_settings .agencies_available_value_name a {
  color: var(--agency-settings-text);
}

.settings_main_wrapper.agencies_settings .agencies_available_value_name a:hover {
  color: var(--agency-settings-accent);
}

.settings_main_wrapper.agencies_settings .agencies_available_value_owner {
  color: var(--agency-settings-text-muted);
  font-weight: 600;
}

.settings_main_wrapper.agencies_settings .agencies_available_status_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  margin-right: auto;
}

.settings_main_wrapper.agencies_settings .agencies_available_status_badge_none,
.settings_main_wrapper.agencies_settings .agencies_available_status_badge_canceled {
  background: rgba(102, 117, 141, 0.12);
  color: var(--agency-settings-text-muted);
}

.settings_main_wrapper.agencies_settings .agencies_available_status_badge_pending {
  background: var(--agency-settings-blue-soft);
  color: #2d618f;
}

.settings_main_wrapper.agencies_settings .agencies_available_status_badge_approved {
  background: var(--agency-settings-green-soft);
  color: #2a7b48;
}

.settings_main_wrapper.agencies_settings .agencies_available_status_badge_rejected {
  background: rgba(246, 81, 105, 0.11);
  color: #c03f56;
}

.settings_main_wrapper.agencies_settings .agency_actions.agencies_available_actions {
  width: 100%;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.settings_main_wrapper.agencies_settings .agency_actions.agencies_available_actions .agencies_available_request_action.seePost {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--agency-settings-blue-border);
  border-radius: 12px;
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  color: #2e5f97;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  box-shadow: none;
  white-space: nowrap;
}

.settings_main_wrapper.agencies_settings .agency_actions.agencies_available_actions .agencies_available_request_action.seePost:hover {
  border-color: #b7cde8;
  background: linear-gradient(180deg, #f4f9ff 0%, #e8f1fd 100%);
  color: #244f81;
}

.settings_main_wrapper.agencies_settings .agency_actions.agencies_available_actions .agencies_available_request_action.seePost svg,
.settings_main_wrapper.agencies_settings .agency_actions.agencies_available_actions .agencies_available_request_action.seePost i {
  opacity: 0.88;
}

.settings_main_wrapper.agencies_settings .agencies_available_no_action {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--agency-settings-surface-muted);
  color: var(--agency-settings-text-muted);
  font-size: 11px;
  font-weight: 700;
}

.settings_main_wrapper.agencies_settings .agencies_requests_table_section {
  padding: 18px;
}

.settings_main_wrapper.agencies_settings .agencies_requests_table_frame {
  display: grid;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--agency-settings-border);
  border-radius: 22px;
  background: var(--agency-settings-surface-soft);
}

.settings_main_wrapper.agencies_settings .agencies_requests_table_frame .agencies_requests_table_wrap {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.settings_main_wrapper.agencies_settings .agencies_requests_table_frame .agencies_requests_table_scroll {
  padding: 0;
}

.settings_main_wrapper.agencies_settings .agencies_requests_table {
  display: inline-block;
  width: max-content;
  min-width: 100%;
  max-width: none;
}

.settings_main_wrapper.agencies_settings .agencies_requests_table .i_tab_header,
.settings_main_wrapper.agencies_settings .agencies_requests_table .i_tab_list_item {
  display: grid;
  width: max-content;
  min-width: 100%;
  grid-template-columns: minmax(240px, 1.2fr) minmax(180px, 0.8fr) minmax(200px, 0.9fr) minmax(360px, 1.08fr);
  gap: 10px;
  align-items: stretch;
}

.settings_main_wrapper.agencies_settings .agencies_requests_table .i_tab_header {
  padding: 10px;
  border-bottom: 1px solid var(--agency-settings-border);
}

.settings_main_wrapper.agencies_settings .agencies_requests_table .i_tab_list_item_container {
  display: block;
  width: max-content;
  min-width: 100%;
  padding: 10px;
}

.settings_main_wrapper.agencies_settings .agencies_requests_table .i_tab_list_item {
  margin-top: 0;
  padding: 10px 0 0;
}

.settings_main_wrapper.agencies_settings .agencies_requests_table .tab_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  width: auto;
  min-height: 40px;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--agency-settings-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.settings_main_wrapper.agencies_settings .agencies_requests_table .tab_detail_item {
  min-width: 0;
  width: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 16px;
  border: 1px solid var(--agency-settings-border);
  border-radius: 16px;
  background: var(--agency-settings-surface);
  color: var(--agency-settings-text);
}

.settings_main_wrapper.agencies_settings .agencies_requests_value {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--agency-settings-text);
  text-align: left;
  font-size: 13px;
  line-height: 1.45;
}

.settings_main_wrapper.agencies_settings .agencies_requests_value_name {
  font-size: 15px;
  font-weight: 700;
}

.settings_main_wrapper.agencies_settings .agencies_requests_value_date {
  white-space: nowrap;
}

.settings_main_wrapper.agencies_settings .agencies_requests_status_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  margin-right: auto;
}

.settings_main_wrapper.agencies_settings .agencies_requests_status_badge_pending {
  background: var(--agency-settings-blue-soft);
  color: #2d618f;
}

.settings_main_wrapper.agencies_settings .agencies_requests_status_badge_approved {
  background: var(--agency-settings-green-soft);
  color: #2a7b48;
}

.settings_main_wrapper.agencies_settings .agencies_requests_status_badge_rejected,
.settings_main_wrapper.agencies_settings .agencies_requests_status_badge_canceled {
  background: rgba(246, 81, 105, 0.11);
  color: #c03f56;
}

.settings_main_wrapper.agencies_settings .agency_actions.agencies_requests_actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.settings_main_wrapper.agencies_settings .agency_actions.agencies_requests_actions .agencies_requests_action {
  min-height: 38px;
  padding: 0 14px;
  width: auto;
  flex: 0 0 auto;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  white-space: nowrap;
  box-shadow: none;
}

.settings_main_wrapper.agencies_settings .agency_actions.agencies_requests_actions .agencies_requests_action_approve.seePost {
  border-color: var(--agency-settings-blue-border);
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  color: #2e5f97;
}

.settings_main_wrapper.agencies_settings .agency_actions.agencies_requests_actions .agencies_requests_action_approve.seePost:hover {
  border-color: #b7cde8;
  background: linear-gradient(180deg, #f4f9ff 0%, #e8f1fd 100%);
  color: #244f81;
}

.settings_main_wrapper.agencies_settings .agency_actions.agencies_requests_actions .agencies_requests_action_reject.delu {
  border-color: #f4ccd3;
  background: #fff1f3;
  color: #c4475b;
}

.settings_main_wrapper.agencies_settings .agency_actions.agencies_requests_actions .agencies_requests_action_reject.delu:hover {
  border-color: #f0bcc7;
  background: #ffe8ec;
}

.settings_main_wrapper.agencies_settings .agencies_requests_no_action {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--agency-settings-surface-muted);
  color: var(--agency-settings-text-muted);
  font-size: 11px;
  font-weight: 700;
}
.settings_main_wrapper.agencies_settings .i_settings_item_title {
  margin-bottom: 10px;
  color: var(--agency-settings-text);
  font-size: 15px;
  font-weight: 800;
}
.settings_main_wrapper.agencies_settings .i_settings_item_title_for {
  display: grid;
  gap: 12px;
}
.settings_main_wrapper.agencies_settings .box_not,
.settings_main_wrapper.agencies_settings .rec_not,
.settings_main_wrapper.agencies_settings .i_sub_not {
  color: var(--agency-settings-text-muted);
  font-size: 12px;
  line-height: 1.65;
}
.settings_main_wrapper.agencies_settings .i_block_not_list {
  margin: 0;
  padding-left: 18px;
  color: var(--agency-settings-text);
}
.settings_main_wrapper.agencies_settings .i_block_not_list li + li {
  margin-top: 6px;
}
.settings_main_wrapper.agencies_settings #creatorAgencyCreateForm,
.settings_main_wrapper.agencies_settings .agency_profile_form {
  display: grid;
  gap: 14px;
}
.settings_main_wrapper.agencies_settings #creatorAgencyCreateForm .i_general_row_box_item,
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_row {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--agency-settings-border);
  border-radius: 18px;
  background: var(--agency-settings-surface-muted);
}
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_row {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--agency-settings-surface);
}
.settings_main_wrapper.agencies_settings #creatorAgencyCreateForm .irow_box_left,
.settings_main_wrapper.agencies_settings .agency_profile_form .irow_box_left {
  width: 180px;
  color: var(--agency-settings-text);
  font-size: 13px;
  font-weight: 700;
}
.settings_main_wrapper.agencies_settings .agency_profile_form .irow_box_left {
  width: 100%;
  min-height: 0;
  justify-content: flex-start;
  align-items: flex-start;
  color: var(--agency-settings-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}
.settings_main_wrapper.agencies_settings #creatorAgencyCreateForm .irow_box_right,
.settings_main_wrapper.agencies_settings .agency_profile_form .irow_box_right {
  width: calc(100% - 180px);
}
.settings_main_wrapper.agencies_settings .agency_profile_form .irow_box_right {
  width: 100%;
  min-width: 0;
}
.settings_main_wrapper.agencies_settings #creatorAgencyCreateForm input.i_input,
.settings_main_wrapper.agencies_settings .agency_profile_form textarea.i_input,
.settings_main_wrapper.agencies_settings .agency_profile_form input.i_input,
.settings_main_wrapper.agencies_settings .agency_boost_table .agencyBoostDuration,
.settings_main_wrapper.agencies_settings .agency_boost_table .agencyBoostPaymentMethod {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--agency-settings-border);
  border-radius: 14px;
  background: var(--agency-settings-surface);
  color: var(--agency-settings-text);
  font-size: 14px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.settings_main_wrapper.agencies_settings .agency_profile_form textarea.i_input {
  min-height: 148px;
  padding-top: 16px;
  padding-bottom: 16px;
  line-height: 1.6;
  resize: vertical;
}
.settings_main_wrapper.agencies_settings #creatorAgencyCreateForm input.i_input:focus,
.settings_main_wrapper.agencies_settings .agency_profile_form textarea.i_input:focus,
.settings_main_wrapper.agencies_settings .agency_profile_form input.i_input:focus,
.settings_main_wrapper.agencies_settings .agency_boost_table .agencyBoostDuration:focus,
.settings_main_wrapper.agencies_settings .agency_boost_table .agencyBoostPaymentMethod:focus {
  border-color: #4a84df;
  box-shadow: 0 0 0 3px rgba(74, 132, 223, 0.14);
  outline: none;
}
.settings_main_wrapper.agencies_settings .agency_boost_table .agencyBoostPaymentMethod {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%2366758d' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_media_row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_media_preview {
  width: 88px;
  height: 88px;
  overflow: hidden;
  padding: 0;
  border-color: var(--agency-settings-border);
  border-radius: 20px;
  background: var(--agency-settings-surface);
}
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_media_preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_media_input {
  min-width: 0;
}
.settings_main_wrapper.agencies_settings .agency_profile_form input[type="file"].i_input {
  min-height: 56px;
  padding: 8px 10px;
}
.settings_main_wrapper.agencies_settings .agency_profile_form input[type="file"].i_input::file-selector-button {
  height: 38px;
  margin-right: 12px;
  padding: 0 16px;
  border: 1px solid var(--agency-settings-border);
  border-radius: 12px;
  background: var(--agency-settings-surface-muted);
  color: var(--agency-settings-text);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_section_title {
  margin: 6px 0 0;
  padding: 0 2px;
  color: var(--agency-settings-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_social_row {
  align-content: start;
}
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_social_row .irow_box_left,
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_social_row .irow_box_right {
  width: 100%;
}
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_action {
  padding: 0;
  border: 0;
  background: transparent;
}
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_action .irow_box_left {
  display: none;
}
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_action .irow_box_right {
  width: 100%;
}
.settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_action .i_nex_btn_btn {
  min-width: 220px;
  min-height: 48px;
}
.settings_main_wrapper.agencies_settings .agency_table_wrap,
.settings_main_wrapper.agencies_settings .agency_boosted_table_wrap {
  padding: 0;
  border: 1px solid var(--agency-settings-border);
  border-radius: 20px;
  background: var(--agency-settings-surface-soft);
}
.settings_main_wrapper.agencies_settings .agency_table_scroll,
.settings_main_wrapper.agencies_settings .agency_boosted_table_scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
  padding: 16px;
  box-sizing: border-box;
}
.settings_main_wrapper.agencies_settings .agency_table:not(.agencies_membership_table):not(.agencies_available_table):not(.agencies_requests_table),
.settings_main_wrapper.agencies_settings .agency_boosted_table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
}
.settings_main_wrapper.agencies_settings .agency_table:not(.agencies_membership_table):not(.agencies_available_table):not(.agencies_requests_table) .i_tab_header,
.settings_main_wrapper.agencies_settings .agency_table:not(.agencies_membership_table):not(.agencies_available_table):not(.agencies_requests_table) .i_tab_list_item,
.settings_main_wrapper.agencies_settings .agency_boosted_table .i_tab_header,
.settings_main_wrapper.agencies_settings .agency_boosted_table .i_tab_list_item {
  width: max-content;
  min-width: 100%;
  gap: 12px;
  padding: 10px;
}

.settings_main_wrapper.agencies_settings .agency_table:not(.agencies_membership_table):not(.agencies_available_table) .i_tab_header,
.settings_main_wrapper.agencies_settings .agency_table:not(.agencies_membership_table):not(.agencies_available_table) .i_tab_list_item,
.settings_main_wrapper.agencies_settings .agency_boosted_table .i_tab_header,
.settings_main_wrapper.agencies_settings .agency_boosted_table .i_tab_list_item {
  padding: 10px;
}
.settings_main_wrapper.agencies_settings .agency_table:not(.agencies_membership_table):not(.agencies_available_table):not(.agencies_requests_table) .i_tab_header .tab_item,
.settings_main_wrapper.agencies_settings .agency_boosted_table .i_tab_header .tab_item {
  min-height: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--agency-settings-surface);
  color: var(--agency-settings-text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-content: flex-start;
}
.settings_main_wrapper.agencies_settings .agency_table:not(.agencies_membership_table):not(.agencies_available_table):not(.agencies_requests_table) .i_tab_list_item,
.settings_main_wrapper.agencies_settings .agency_boosted_table .i_tab_list_item {
  margin-top: 12px;
}
.settings_main_wrapper.agencies_settings .agency_table:not(.agencies_membership_table):not(.agencies_available_table):not(.agencies_requests_table) .tab_detail_item,
.settings_main_wrapper.agencies_settings .agency_boosted_table .tab_detail_item {
  min-height: 0;
  padding: 8px 18px;
  border: 1px solid var(--agency-settings-border);
  border-radius: 18px;
  background: var(--agency-settings-surface);
  color: var(--agency-settings-text);
}

.settings_main_wrapper.agencies_settings .agency_table:not(.agencies_membership_table):not(.agencies_available_table) .tab_detail_item,
.settings_main_wrapper.agencies_settings .agency_boosted_table .tab_detail_item {
  padding: 8px 18px;
}
.settings_main_wrapper.agencies_settings .agency_table:not(.agencies_membership_table):not(.agencies_available_table):not(.agencies_requests_table) a,
.settings_main_wrapper.agencies_settings .agency_boosted_table a {
  color: var(--agency-settings-text);
}
.settings_main_wrapper.agencies_settings .agency_table:not(.agencies_membership_table):not(.agencies_available_table):not(.agencies_requests_table) a:hover,
.settings_main_wrapper.agencies_settings .agency_boosted_table a:hover {
  color: var(--agency-settings-accent);
}
.settings_main_wrapper.agencies_settings .agency_boosted_table_scroll {
  padding: 14px;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .i_tab_header,
.settings_main_wrapper.agencies_settings .agency_boosted_table .i_tab_list_item {
  display: grid;
  width: max-content;
  min-width: 100%;
  grid-template-columns: minmax(220px, 1.35fr) minmax(130px, 0.7fr) minmax(100px, 0.55fr) minmax(190px, 1fr) minmax(170px, 0.9fr) minmax(170px, 0.95fr) minmax(200px, 1fr);
  gap: 8px;
  align-items: stretch;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .i_tab_header {
  padding: 10px 10px 10px;
  border-bottom: 1px solid var(--agency-settings-border);
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .i_tab_list_item_container {
  display: block;
  width: max-content;
  min-width: 100%;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .i_tab_list_item {
  margin-top: 0;
  padding: 10px 10px 10px;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .i_tab_header .tab_item {
  min-height: 0;
  padding: 10px;
  border-radius: 12px;
  background: var(--agency-settings-surface-muted);
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .tab_detail_item {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4px 18px;
  border-radius: 16px;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .tab_detail_item .flex_,
.settings_main_wrapper.agencies_settings .agency_boosted_table .tab_detail_item .tabing_non_justify {
  justify-content: flex-start;
  text-align: left;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .tab_detail_item .column {
  align-items: flex-start;
  gap: 2px;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agency_boost_row .tab_detail_item:nth-child(4) .column {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agencyBoostDuration,
.settings_main_wrapper.agencies_settings .agency_boosted_table .agencyBoostPaymentMethod {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: none;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agencyBoostDuration {
  width: 92px;
  min-width: 92px;
  padding: 0 10px;
  border: 1px solid #c7d7ee;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: var(--agency-settings-text);
  text-align: center;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  appearance: textfield;
  -moz-appearance: textfield;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agencyBoostDuration:hover {
  border-color: #b4c8e4;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fe 100%);
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agencyBoostDuration:focus {
  border-color: #6d99d6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 0 0 3px rgba(109, 153, 214, 0.14);
  outline: none;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agencyBoostPaymentMethod {
  min-width: 168px;
  border-color: #cfdcf0;
  background-color: var(--agency-settings-surface-muted);
  color: var(--agency-settings-text);
  font-weight: 700;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%2366758d' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3C/svg%3E");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  cursor: pointer;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agencyBoostDuration::-webkit-outer-spin-button,
.settings_main_wrapper.agencies_settings .agency_boosted_table .agencyBoostDuration::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agencyBoostPaymentMethod {
  padding-right: 36px;
  background-position: right 12px center;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agency_actions {
  flex-wrap: nowrap;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agency_actions .agencyBoostCreate,
.settings_main_wrapper.agencies_settings .agency_boosted_table .agency_actions .agencyBoostDisable {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 13px;
  white-space: nowrap;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agency_actions .agencyBoostCreate {
  border-color: #c8d8ee;
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  color: #2e5f97;
  box-shadow: none;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agency_actions .agencyBoostCreate:hover {
  border-color: #b3c7e4;
  background: linear-gradient(180deg, #f4f9ff 0%, #e8f1fd 100%);
  color: #244f81;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agency_actions .agencyBoostCreate svg,
.settings_main_wrapper.agencies_settings .agency_boosted_table .agency_actions .agencyBoostCreate i {
  opacity: 0.88;
}
.settings_main_wrapper.agencies_settings .agency_boosted_table .agency_actions .agencyBoostCreate.disabled,
.settings_main_wrapper.agencies_settings .agency_boosted_table .agency_actions .agencyBoostCreate[aria-disabled="true"] {
  border-color: #dbe6f4;
  background: #f7f9fc;
  color: #95a4bb;
  opacity: 1;
}
.settings_main_wrapper.agencies_settings .agency_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.settings_main_wrapper.agencies_settings .agency_actions .creatorAgencyInviteAction,
.settings_main_wrapper.agencies_settings .agency_actions .agencyOwnerRequestAction,
.settings_main_wrapper.agencies_settings .agency_actions .agencyBoostCreate,
.settings_main_wrapper.agencies_settings .agency_actions .seePost,
.settings_main_wrapper.agencies_settings .agency_actions .delu {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
}
.settings_main_wrapper.agencies_settings .agency_actions .creatorAgencyInviteAction,
.settings_main_wrapper.agencies_settings .agency_actions .agencyOwnerRequestAction,
.settings_main_wrapper.agencies_settings .agency_actions .agencyBoostCreate,
.settings_main_wrapper.agencies_settings .agency_actions .seePost {
  border-color: var(--agency-settings-blue-border);
  background: var(--agency-settings-blue-soft);
  color: #285d93;
}
.settings_main_wrapper.agencies_settings .agency_actions .delu {
  border-color: #f4ccd3;
  background: #fff1f3;
  color: #c4475b;
}
.settings_main_wrapper.agencies_settings .agency_actions .agencyBoostCreate.disabled,
.settings_main_wrapper.agencies_settings .agency_actions .agencyBoostCreate[aria-disabled="true"] {
  opacity: 0.5;
}
.settings_main_wrapper.agencies_settings .pagination {
  gap: 8px;
  flex-wrap: wrap;
}
.settings_main_wrapper.agencies_settings .pagination li a {
  min-width: 40px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--agency-settings-border);
  border-radius: 14px;
  background: var(--agency-settings-surface);
  color: var(--agency-settings-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.settings_main_wrapper.agencies_settings .pagination li.active a,
.settings_main_wrapper.agencies_settings .pagination li a:hover {
  border-color: #b7cff8;
  background: #f6f9ff;
  color: var(--agency-settings-text);
}
@media (max-width: 1180px) {
  .settings_main_wrapper.agencies_settings #creatorAgencyCreateForm .irow_box_left,
  .settings_main_wrapper.agencies_settings .agency_profile_form .irow_box_left,
  .settings_main_wrapper.agencies_settings #creatorAgencyCreateForm .irow_box_right,
  .settings_main_wrapper.agencies_settings .agency_profile_form .irow_box_right {
    width: 100%;
  }
  .settings_main_wrapper.agencies_settings #creatorAgencyCreateForm .i_general_row_box_item,
  .settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_row {
    display: grid;
    gap: 12px;
  }
  .settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .settings_main_wrapper.agencies_settings .i_settings_wrapper_title {
    padding: 20px 18px 18px;
  }
  .settings_main_wrapper.agencies_settings .i_settings_wrapper_title_txt {
    font-size: 20px;
    gap: 12px;
  }
  .settings_main_wrapper.agencies_settings .agencies_settings_summary {
    padding: 18px;
  }
  .settings_main_wrapper.agencies_settings .agencies_settings_summary_title {
    font-size: 20px;
  }
  .settings_main_wrapper.agencies_settings .agencies_settings_summary_stats {
    grid-template-columns: minmax(0, 1fr);
  }
  .settings_main_wrapper.agencies_settings .i_settings_wrapper_items {
    padding: 0 16px 16px;
  }
  .settings_main_wrapper.agencies_settings .i_settings_wrapper_item {
    padding: 16px;
    border-radius: 20px;
  }
  .settings_main_wrapper.agencies_settings .agency_table_scroll,
  .settings_main_wrapper.agencies_settings .agency_boosted_table_scroll {
    padding: 14px;
  }
  .settings_main_wrapper.agencies_settings .agencies_membership_table_section {
    padding: 16px;
  }
  .settings_main_wrapper.agencies_settings .agencies_membership_table_header {
    align-items: flex-start;
  }
  .settings_main_wrapper.agencies_settings .agencies_membership_table_scroll {
    padding: 12px;
  }
  .settings_main_wrapper.agencies_settings .agencies_available_table_frame {
    padding: 12px;
  }
  .settings_main_wrapper.agencies_settings .agencies_requests_table_frame {
    padding: 12px;
  }
  .settings_main_wrapper.agencies_settings .agency_boosted_table_scroll {
    padding: 12px;
  }
  .settings_main_wrapper.agencies_settings .agency_profile_form .agency_media_row {
    grid-template-columns: minmax(0, 1fr);
  }
  .settings_main_wrapper.agencies_settings .agency_profile_form .agency_profile_socials {
    grid-template-columns: minmax(0, 1fr);
  }
}

.settings_main_wrapper.settings_followers_page {
  --settings-followers-surface: #ffffff;
  --settings-followers-surface-soft: #fbfcff;
  --settings-followers-surface-muted: #f6f8fc;
  --settings-followers-border: #e2e8f2;
  --settings-followers-border-strong: #d3ddea;
  --settings-followers-text: #172033;
  --settings-followers-text-muted: #69788f;
  --settings-followers-text-soft: #8c98ac;
  --settings-followers-accent: #f65169;
  --settings-followers-accent-soft: rgba(246, 81, 105, 0.1);
  --settings-followers-button: #0f2442;
  --settings-followers-button-hover: #162d4f;
}

.settings_main_wrapper.settings_followers_page .settings_followers_shell {
  overflow: hidden;
}

.settings_main_wrapper.settings_followers_page .settings_followers_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-followers-border);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_followers_page .settings_followers_header_meta {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.settings_main_wrapper.settings_followers_page .i_settings_wrapper_title_txt {
  color: var(--settings-followers-text);
}

.settings_main_wrapper.settings_followers_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-followers-accent-soft);
  fill: var(--settings-followers-accent);
}

.settings_main_wrapper.settings_followers_page .settings_followers_header_note {
  max-width: 640px;
  color: var(--settings-followers-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_followers_page .settings_followers_total_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--settings-followers-border);
  border-radius: 999px;
  background: var(--settings-followers-surface-muted);
  color: var(--settings-followers-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.settings_main_wrapper.settings_followers_page .settings_followers_body {
  padding: 22px;
}

.settings_main_wrapper.settings_followers_page .settings_followers_list_shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  padding: 0;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid > .profile_connection_card {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  float: none;
  clear: none;
  display: block;
  background: transparent;
  box-shadow: none;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 0 18px 18px;
  border: 1px solid var(--settings-followers-border);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  overflow: hidden;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .i_sub_box_wrp_prof::before {
  display: none;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_cover {
  position: relative;
  display: block;
  width: calc(100% + 36px);
  height: 126px;
  margin: 0 -18px;
  overflow: hidden;
  background: linear-gradient(135deg, #3b2ea6 0%, #7d3cf8 35%, #ff4f86 72%, #ffbf47 100%);
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.26) 100%);
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_cover_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_avatar {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  margin: -46px 0 14px;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_avatar .isubavatar {
  width: 100%;
  height: 100%;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #ffffff;
  object-fit: cover;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_identity {
  width: 100%;
  min-width: 0;
  margin: 0 0 16px;
  text-align: center;
  align-items: center;
  gap: 6px;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_identity .i_sub_box_name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 0;
  padding-bottom: 0;
  color: var(--settings-followers-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_identity .i_sub_box_name a {
  max-width: calc(100% - 48px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: inherit;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_identity .i_sub_box_unm {
  width: 100%;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--settings-followers-text-soft);
  font-size: 14px;
  font-weight: 500;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_verified svg,
.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_identity .i_plus_s svg,
.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_identity .publisherGender svg {
  width: 18px;
  height: 18px;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_action {
  width: 100%;
  margin-top: auto;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_action .i_follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_action .i_follow svg {
  width: 16px;
  height: 16px;
  margin: 0;
  fill: currentColor;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_action .free_follow {
  background: var(--settings-followers-button);
  color: #ffffff;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_action .free_follow:hover {
  background: var(--settings-followers-button-hover);
  color: #ffffff;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_action .i_btn_like_item_flw,
.settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_action .i_btn_unsubscribe {
  background: #eef3ff;
  color: #223a67;
}

.settings_main_wrapper.settings_followers_page .settings_followers_grid .settings_followers_empty_state {
  grid-column: 1 / -1;
  min-height: 260px;
  margin: 0;
  border: 1px dashed var(--settings-followers-border-strong);
  border-radius: 24px;
  background: #ffffff;
}

.settings_main_wrapper.settings_followers_page .settings_followers_footer {
  justify-content: center;
  padding: 0 22px 22px;
  border-top: 0;
  background: transparent;
}

.settings_main_wrapper.settings_followers_page .settings_followers_pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.settings_main_wrapper.settings_followers_page .settings_followers_pagination li a {
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--settings-followers-border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--settings-followers-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.settings_main_wrapper.settings_followers_page .settings_followers_pagination li.active a,
.settings_main_wrapper.settings_followers_page .settings_followers_pagination li a:hover {
  border-color: #c9d6e8;
  background: var(--settings-followers-surface-muted);
  color: var(--settings-followers-text);
}

@media (max-width: 1180px) {
  .settings_main_wrapper.settings_followers_page .settings_followers_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .settings_main_wrapper.settings_followers_page .settings_followers_header {
    padding: 20px 18px 18px;
  }

  .settings_main_wrapper.settings_followers_page .settings_followers_body {
    padding: 16px;
  }

  .settings_main_wrapper.settings_followers_page .settings_followers_list_shell {
    padding: 0;
    border-radius: 0;
  }

  .settings_main_wrapper.settings_followers_page .settings_followers_footer {
    padding: 0 16px 16px;
  }
}

@media (max-width: 640px) {
  .settings_main_wrapper.settings_followers_page .settings_followers_grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_shell {
    padding: 0 12px 14px;
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_cover {
    width: calc(100% + 24px);
    height: 102px;
    margin: 0 -12px;
  }

  .settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_avatar {
    width: 76px;
    height: 76px;
    margin-top: -38px;
    margin-bottom: 10px;
  }

  .settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_avatar .isubavatar {
    border-width: 3px;
  }

  .settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_identity {
    margin-bottom: 14px;
  }

  .settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_identity .i_sub_box_name {
    font-size: 15px;
  }

  .settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_identity .i_sub_box_unm {
    font-size: 12px;
  }

  .settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_action .i_follow {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 13px;
    font-size: 14px;
    gap: 6px;
  }

  .settings_main_wrapper.settings_followers_page .settings_followers_grid .profile_connection_action .i_follow svg {
    width: 14px;
    height: 14px;
  }

  .settings_main_wrapper.settings_followers_page .settings_followers_total_badge {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    font-size: 15px;
  }
}

.settings_main_wrapper.settings_create_product_page {
  --settings-create-surface: #ffffff;
  --settings-create-surface-soft: #fbfcff;
  --settings-create-surface-muted: #f5f7fb;
  --settings-create-border: #e2e8f2;
  --settings-create-border-strong: #d5deea;
  --settings-create-text: #172033;
  --settings-create-text-muted: #6f7d92;
  --settings-create-text-soft: #8d98ab;
  --settings-create-accent: #0f2442;
  --settings-create-accent-hover: #162d4f;
  --settings-create-accent-soft: rgba(15, 36, 66, 0.08);
  --settings-create-success-bg: #eef9f1;
  --settings-create-success-border: #cde8d4;
  --settings-create-success-text: #216a38;
  --settings-create-danger-bg: #fff4f6;
  --settings-create-danger-border: #f1cfd6;
  --settings-create-danger-text: #c4475b;
  --settings-create-upload-bg: rgba(15, 36, 66, 0.06);
  --settings-create-upload-fill: linear-gradient(90deg, rgba(15, 36, 66, 0.16) 0%, rgba(15, 36, 66, 0.04) 100%);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_shell {
  overflow: hidden;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-create-border);
  background:
    radial-gradient(circle at top right, rgba(15, 36, 66, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_header_copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.settings_main_wrapper.settings_create_product_page .i_settings_wrapper_title_txt {
  color: var(--settings-create-text);
}

.settings_main_wrapper.settings_create_product_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-create-accent-soft);
  fill: var(--settings-create-accent);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_header_note {
  max-width: 680px;
  color: var(--settings-create-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_header_actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_back_link,
.settings_main_wrapper.settings_create_product_page .settings_create_product_type_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--settings-create-border);
  border-radius: 14px;
  background: var(--settings-create-surface);
  color: var(--settings-create-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_type_badge {
  background: var(--settings-create-surface-muted);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_back_link:hover {
  border-color: var(--settings-create-border-strong);
  background: var(--settings-create-surface-soft);
  color: var(--settings-create-text);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_body {
  padding: 22px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_surface {
  padding: 0;
  border: 0;
  background: transparent;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_catalog_intro {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_catalog_title {
  color: var(--settings-create-text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_catalog_note {
  max-width: 640px;
  color: var(--settings-create-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_card {
  width: 100%;
  min-width: 0;
  padding: 0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--settings-create-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option:hover {
  border-color: var(--settings-create-border-strong);
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
  transform: translateY(-1px);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(15, 36, 66, 0.08);
  border-radius: 18px;
  background: #eef3fb;
  color: var(--settings-create-accent);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_content {
  min-width: 0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_title {
  color: var(--settings-create-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_scratch .settings_create_product_option_icon {
  background: #eef2ff;
  color: #4453c8;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_bookazoom .settings_create_product_option_icon {
  background: #eef8ff;
  color: #2b78c9;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_digitaldownload .settings_create_product_option_icon {
  background: #eefbf5;
  color: #2f8f5f;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_liveeventticket .settings_create_product_option_icon {
  background: #fff5eb;
  color: #c56f1d;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_artcommission .settings_create_product_option_icon {
  background: #fff2f4;
  color: #c4475b;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_joininstagramclosefriends .settings_create_product_option_icon {
  background: #fff3f8;
  color: #b24487;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form_shell {
  display: grid;
  gap: 18px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form {
  display: grid;
  gap: 18px;
  width: 100%;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .now_creating {
  padding: 0;
  color: var(--settings-create-text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .create_product_form_column {
  display: grid;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .create_product_form_column.flex_ {
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.76fr);
  align-items: start;
  gap: 18px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .input_title,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .input_price,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .input_file_form,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .input_uploaded_images {
  width: 100%;
  min-width: 0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .input_uploaded_images {
  padding-left: 0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .input_title_title,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .col-tit,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .col-tit-advanced-settings {
  margin: 0;
  padding: 0;
  color: var(--settings-create-text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .col-tit,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .col-tit-advanced-settings {
  display: inline-flex;
  width: 100%;
  margin-bottom: 15px;
  align-items: center;
  gap: 8px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .col-tit-advanced-settings {
  color: var(--settings-create-text);
  font-size: 16px;
  font-weight: 800;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .col-tit span svg,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .qmark span svg {
  width: 14px;
  height: 14px;
  margin-left: 0;
  fill: var(--settings-create-text-soft);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .prc,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .col-textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 0;
  padding: 14px 16px;
  border: 1px solid var(--settings-create-border);
  border-radius: 16px;
  background: var(--settings-create-surface-soft);
  color: var(--settings-create-text);
  font-size: 14px;
  font-weight: 500;
  box-shadow: none;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .prc:focus,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .col-textarea:focus {
  border-color: var(--settings-create-border-strong);
  outline: none;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .col-textarea {
  min-height: 132px;
  resize: vertical;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .col-textarea-box,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .relativePosition,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_subs_price {
  width: 100%;
  min-width: 0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .input_prc_padding {
  padding-left: 72px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .prc_currency {
  width: 56px;
  border-right: 1px solid var(--settings-create-border);
  color: var(--settings-create-text-muted);
  font-size: 15px;
  font-weight: 700;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_pr_file,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_prd_file {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 124px;
  border: 1px dashed var(--settings-create-border-strong);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_pr_file:hover,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_prd_file:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_pr_btn {
  width: 62px;
  height: 62px;
  margin-right: 0;
  padding: 0;
  border: 1px solid var(--settings-create-border);
  border-radius: 18px;
  background: var(--settings-create-surface-muted);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_pr_btn svg {
  width: 24px;
  height: 24px;
  fill: var(--settings-create-text);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .input_uploaded,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .input_uploaded_file {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 124px;
  padding: 14px;
  border: 1px dashed var(--settings-create-border);
  border-radius: 18px;
  background: var(--settings-create-surface-soft);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .input_uploaded.has-items {
  border-style: solid;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .input_uploaded .i_uploaded_item {
  position: relative;
  float: none;
  width: 110px;
  min-height: 110px;
  padding: 0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_uploaded_file {
  position: relative;
  width: 100%;
  height: 110px;
  overflow: hidden;
  border: 1px solid var(--settings-create-border);
  border-radius: 16px;
  background: var(--settings-create-surface-muted);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_uploaded_file img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .video_n,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .pr_im {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_delete_item_button {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_delete_item_button svg {
  width: 13px;
  height: 13px;
  fill: #485468;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .v_custom_tumb {
  margin-top: 8px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .v_custom_tumb .pbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--settings-create-border);
  border-radius: 12px;
  background: var(--settings-create-surface);
  color: var(--settings-create-text);
  font-size: 12px;
  font-weight: 700;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .uploadedFileContainer {
  width: 100%;
  max-width: none;
  min-height: 94px;
  height: auto;
  padding: 16px;
  border: 1px solid var(--settings-create-border);
  border-radius: 18px;
  background: var(--settings-create-surface);
  box-shadow: none;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .uploadedFileContainer:hover {
  border-color: var(--settings-create-border-strong);
  box-shadow: none;
  transform: none;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .uploadedFileContainer a {
  color: var(--settings-create-text);
  font-size: 14px;
  font-weight: 600;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .theFileIcon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .theFileIcon svg {
  width: 46px;
  height: 46px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .theFileName {
  max-width: none;
  padding-left: 12px;
  color: var(--settings-create-text);
  font-size: 13px;
  font-weight: 600;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_uploaded_iv {
  position: relative;
  display: none;
  overflow: hidden;
  padding: 14px 16px;
  border: 1px solid var(--settings-create-border);
  border-radius: 16px;
  background: var(--settings-create-upload-bg);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_uploaded_iv .i_upload_progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: var(--settings-create-upload-fill);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_uploading_not {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  color: var(--settings-create-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_set_subscription_fee_box {
  display: block;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--settings-create-border);
  border-radius: 18px;
  background: var(--settings-create-surface);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_sub_not_check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--settings-create-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_sub_not_check_box {
  margin-left: auto;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_set_subscription_fee {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_feedback {
  display: none;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_feedback_error {
  border-color: var(--settings-create-danger-border);
  background: var(--settings-create-danger-bg);
  color: var(--settings-create-danger-text);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_feedback_success {
  border-color: var(--settings-create-success-border);
  background: var(--settings-create-success-bg);
  color: var(--settings-create-success-text);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .pr_save_btna {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 48px;
  margin: 0;
  padding: 0 22px;
  border: 1px solid var(--settings-create-accent);
  border-radius: 16px;
  background: var(--settings-create-accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  box-shadow: none;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .pr_save_btna:hover {
  border-color: var(--settings-create-accent-hover);
  background: var(--settings-create-accent-hover);
  box-shadow: none;
  transform: none;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .pr_save_btna.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

@media (max-width: 1180px) {
  .settings_main_wrapper.settings_create_product_page .settings_create_product_catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .create_product_form_column.flex_ {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .settings_main_wrapper.settings_create_product_page .settings_create_product_header {
    padding: 20px 18px 18px;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_body {
    padding: 16px;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_catalog {
    gap: 14px;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_option {
    min-height: 116px;
    padding: 18px;
    border-radius: 22px;
  }
}

@media (max-width: 640px) {
  .settings_main_wrapper.settings_create_product_page .settings_create_product_catalog {
    grid-template-columns: minmax(0, 1fr);
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_header_actions {
    width: 100%;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_back_link,
  .settings_main_wrapper.settings_create_product_page .settings_create_product_type_badge {
    width: 100%;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_catalog_title,
  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .now_creating {
    font-size: 21px;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .input_uploaded .i_uploaded_item {
    width: calc(50% - 6px);
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .pr_save_btna {
    width: 100%;
    min-width: 0;
  }
}

.settings_main_wrapper.settings_blocked_page {
  --settings-blocked-surface: #ffffff;
  --settings-blocked-surface-soft: #fbfcff;
  --settings-blocked-surface-muted: #f6f8fc;
  --settings-blocked-border: #e2e8f2;
  --settings-blocked-border-strong: #d5deea;
  --settings-blocked-text: #172033;
  --settings-blocked-text-muted: #69788f;
  --settings-blocked-text-soft: #8c98ac;
  --settings-blocked-accent: #f65169;
  --settings-blocked-accent-soft: rgba(246, 81, 105, 0.1);
  --settings-blocked-action: #0f2442;
  --settings-blocked-action-hover: #162d4f;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_shell {
  overflow: hidden;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-blocked-border);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_header_meta {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.settings_main_wrapper.settings_blocked_page .i_settings_wrapper_title_txt {
  color: var(--settings-blocked-text);
}

.settings_main_wrapper.settings_blocked_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-blocked-accent-soft);
  fill: var(--settings-blocked-accent);
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_header_note {
  max-width: 640px;
  color: var(--settings-blocked-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_body {
  padding: 22px;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_list_shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_card {
  min-width: 0;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_card_inner {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--settings-blocked-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_card_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_profile {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_avatar {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef3fb;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_profile_meta {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_profile_name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--settings-blocked-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_profile_name_text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_verified_badge svg,
.settings_main_wrapper.settings_blocked_page .settings_blocked_profile_name .publisherGender svg {
  width: 17px;
  height: 17px;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_profile_username {
  overflow: hidden;
  color: var(--settings-blocked-text-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #f1cfd6;
  border-radius: 999px;
  background: #fff4f6;
  color: #c4475b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_action {
  display: flex;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_action_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--settings-blocked-border);
  border-radius: 15px;
  background: var(--settings-blocked-surface-soft);
  color: var(--settings-blocked-action);
  font-size: 14px;
  font-weight: 700;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_action_btn:hover {
  border-color: #cddaea;
  background: #f3f7fd;
  color: var(--settings-blocked-action-hover);
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_empty_state {
  grid-column: 1 / -1;
  min-height: 280px;
  margin: 0;
  padding: 34px 24px;
  border: 1px dashed var(--settings-blocked-border-strong);
  border-radius: 24px;
  background: #ffffff;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_empty_inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 420px;
  text-align: center;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_empty_title {
  margin-top: 0;
  color: var(--settings-blocked-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_footer {
  justify-content: center;
  padding: 0 22px 22px;
  border-top: 0;
  background: transparent;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_pagination li a {
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--settings-blocked-border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--settings-blocked-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.settings_main_wrapper.settings_blocked_page .settings_blocked_pagination li.active a,
.settings_main_wrapper.settings_blocked_page .settings_blocked_pagination li a:hover {
  border-color: #c9d6e8;
  background: var(--settings-blocked-surface-muted);
  color: var(--settings-blocked-text);
}

@media (max-width: 1180px) {
  .settings_main_wrapper.settings_blocked_page .settings_blocked_grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .settings_main_wrapper.settings_blocked_page .settings_blocked_header {
    padding: 20px 18px 18px;
  }

  .settings_main_wrapper.settings_blocked_page .settings_blocked_body {
    padding: 16px;
  }

  .settings_main_wrapper.settings_blocked_page .settings_blocked_footer {
    padding: 0 16px 16px;
  }
}

@media (max-width: 640px) {
  .settings_main_wrapper.settings_blocked_page .settings_blocked_grid {
    gap: 14px;
  }

  .settings_main_wrapper.settings_blocked_page .settings_blocked_card_inner {
    padding: 14px;
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_blocked_page .settings_blocked_card_head {
    flex-direction: column;
    align-items: flex-start;
  }

  .settings_main_wrapper.settings_blocked_page .settings_blocked_avatar {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .settings_main_wrapper.settings_blocked_page .settings_blocked_profile_name {
    font-size: 15px;
  }

  .settings_main_wrapper.settings_blocked_page .settings_blocked_profile_username {
    font-size: 12px;
  }

  .settings_main_wrapper.settings_blocked_page .settings_blocked_action_btn {
    min-height: 42px;
    border-radius: 14px;
    font-size: 13px;
  }
}

.settings_main_wrapper.settings_stories_page {
  --settings-stories-surface: #ffffff;
  --settings-stories-surface-soft: #fbfcff;
  --settings-stories-surface-muted: #f5f7fb;
  --settings-stories-border: #e2e8f2;
  --settings-stories-border-strong: #d5deea;
  --settings-stories-text: #172033;
  --settings-stories-text-muted: #6f7d92;
  --settings-stories-text-soft: #8d98ab;
  --settings-stories-accent: #f65169;
  --settings-stories-accent-soft: rgba(246, 81, 105, 0.1);
  --settings-stories-action: #0f2442;
  --settings-stories-action-hover: #162d4f;
}

.settings_main_wrapper.settings_stories_page .settings_stories_shell {
  overflow: hidden;
}

.settings_main_wrapper.settings_stories_page .settings_stories_header {
  display: grid;
  gap: 22px;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-stories-border);
  background:
    radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_stories_page .settings_stories_header_main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.settings_main_wrapper.settings_stories_page .settings_stories_header_copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.settings_main_wrapper.settings_stories_page .i_settings_wrapper_title_txt {
  color: var(--settings-stories-text);
}

.settings_main_wrapper.settings_stories_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-stories-accent-soft);
  fill: var(--settings-stories-accent);
}

.settings_main_wrapper.settings_stories_page .settings_stories_header_note {
  max-width: 680px;
  color: var(--settings-stories-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_stories_page .settings_stories_header_actions,
.settings_main_wrapper.settings_stories_page .settings_stories_empty_actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.settings_main_wrapper.settings_stories_page .settings_stories_action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--settings-stories-border);
  border-radius: 14px;
  background: var(--settings-stories-surface);
  color: var(--settings-stories-text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.settings_main_wrapper.settings_stories_page .settings_stories_action svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.settings_main_wrapper.settings_stories_page .settings_stories_action:hover {
  border-color: var(--settings-stories-border-strong);
  background: var(--settings-stories-surface-soft);
  color: var(--settings-stories-text);
}

.settings_main_wrapper.settings_stories_page .settings_stories_action_primary {
  border-color: var(--settings-stories-action);
  background: var(--settings-stories-action);
  color: #ffffff;
}

.settings_main_wrapper.settings_stories_page .settings_stories_action_primary:hover {
  border-color: var(--settings-stories-action-hover);
  background: var(--settings-stories-action-hover);
  color: #ffffff;
}

.settings_main_wrapper.settings_stories_page .settings_stories_summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.settings_main_wrapper.settings_stories_page .settings_stories_summary_card {
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid var(--settings-stories-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.settings_main_wrapper.settings_stories_page .settings_stories_summary_value {
  color: var(--settings-stories-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.settings_main_wrapper.settings_stories_page .settings_stories_summary_label {
  margin-top: 4px;
  color: var(--settings-stories-text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.settings_main_wrapper.settings_stories_page .settings_stories_body {
  padding: 22px;
}

.settings_main_wrapper.settings_stories_page .settings_stories_list_shell {
  padding: 0;
  border: 0;
  background: transparent;
}

.settings_main_wrapper.settings_stories_page .settings_stories_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.settings_main_wrapper.settings_stories_page .settings_story_card {
  width: 100%;
  min-width: 0;
  float: none;
  padding: 0;
}

.settings_main_wrapper.settings_stories_page .settings_story_media_shell {
  position: relative;
  width: 100%;
  padding-top: 132%;
  overflow: hidden;
  border: 1px solid var(--settings-stories-border);
  border-radius: 28px;
  background: #dfe6f2;
}

.settings_main_wrapper.settings_stories_page .settings_story_media_shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 2;
}

.settings_main_wrapper.settings_stories_page .settings_story_media_shell .exPex {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings_main_wrapper.settings_stories_page .settings_story_surface {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.settings_main_wrapper.settings_stories_page .settings_story_topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
}

.settings_main_wrapper.settings_stories_page .settings_story_stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.settings_main_wrapper.settings_stories_page .settings_story_media_badge,
.settings_main_wrapper.settings_stories_page .settings_story_date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(9, 15, 26, 0.44);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.settings_main_wrapper.settings_stories_page .settings_story_media_badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.settings_main_wrapper.settings_stories_page .settings_story_date {
  font-size: 12px;
  font-weight: 700;
}

.settings_main_wrapper.settings_stories_page .set_the_top_right_btns {
  position: relative;
  right: auto;
  top: auto;
  padding: 0;
}

.settings_main_wrapper.settings_stories_page .set_btn {
  margin: 0;
  padding: 9px;
  background: rgba(9, 15, 26, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.settings_main_wrapper.settings_stories_page .set_btn svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

.settings_main_wrapper.settings_stories_page .settings_story_footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 15, 26, 0.26) 14%, rgba(9, 15, 26, 0.84) 100%);
  text-shadow: none;
}

.settings_main_wrapper.settings_stories_page .settings_story_footer_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.settings_main_wrapper.settings_stories_page .settings_story_footer_title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.settings_main_wrapper.settings_stories_page .settings_story_footer_time {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.settings_main_wrapper.settings_stories_page .settings_story_metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.settings_main_wrapper.settings_stories_page .set_eye,
.settings_main_wrapper.settings_stories_page .set_replies,
.settings_main_wrapper.settings_stories_page .set_reactions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.settings_main_wrapper.settings_stories_page .set_eye svg,
.settings_main_wrapper.settings_stories_page .set_replies svg,
.settings_main_wrapper.settings_stories_page .set_reactions svg {
  width: 14px;
  height: 14px;
  margin: 0;
  fill: currentColor;
}

.settings_main_wrapper.settings_stories_page .settings_stories_empty_state {
  min-height: 360px;
  margin: 0;
  padding: 32px 24px;
  border: 1px dashed var(--settings-stories-border-strong);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.settings_main_wrapper.settings_stories_page .settings_stories_empty_inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 460px;
  text-align: center;
}

.settings_main_wrapper.settings_stories_page .settings_stories_empty_title {
  color: var(--settings-stories-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.settings_main_wrapper.settings_stories_page .settings_stories_empty_state .n_c_t {
  color: var(--settings-stories-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .settings_main_wrapper.settings_stories_page .settings_stories_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .settings_main_wrapper.settings_stories_page .settings_stories_summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .settings_main_wrapper.settings_stories_page .settings_stories_header {
    padding: 20px 18px 18px;
  }

  .settings_main_wrapper.settings_stories_page .settings_stories_body {
    padding: 16px;
  }

  .settings_main_wrapper.settings_stories_page .settings_story_topbar {
    padding: 14px;
  }

  .settings_main_wrapper.settings_stories_page .settings_story_footer {
    padding: 16px 14px 14px;
  }
}

@media (max-width: 640px) {
  .settings_main_wrapper.settings_stories_page .settings_stories_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .settings_main_wrapper.settings_stories_page .settings_stories_summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .settings_main_wrapper.settings_stories_page .settings_stories_header_actions,
  .settings_main_wrapper.settings_stories_page .settings_stories_empty_actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .settings_main_wrapper.settings_stories_page .settings_stories_action {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .settings_main_wrapper.settings_stories_page .settings_stories_action svg {
    width: 14px;
    height: 14px;
  }

  .settings_main_wrapper.settings_stories_page .settings_story_media_shell {
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_stories_page .settings_story_footer_head {
    align-items: center;
    margin-bottom: 8px;
  }

  .settings_main_wrapper.settings_stories_page .settings_story_footer_title {
    font-size: 13px;
  }

  .settings_main_wrapper.settings_stories_page .settings_story_footer_time {
    font-size: 11px;
  }

  .settings_main_wrapper.settings_stories_page .set_eye,
  .settings_main_wrapper.settings_stories_page .set_replies,
  .settings_main_wrapper.settings_stories_page .set_reactions {
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
    justify-content: center;
  }

  .settings_main_wrapper.settings_stories_page .set_eye svg,
  .settings_main_wrapper.settings_stories_page .set_replies svg,
  .settings_main_wrapper.settings_stories_page .set_reactions svg {
    width: 13px;
    height: 13px;
  }
}

.story_viewers_modal {
  padding: 24px 16px;
  justify-content: flex-start;
  overflow-y: auto;
}

.story_viewers_modal .story_viewers_modal_shell {
  width: min(680px, calc(100vw - 32px));
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.story_viewers_modal .story_viewers_modal_content {
  padding: 0;
  display: flex;
  flex-direction: column;
  border-radius: inherit;
  max-height: none;
  overflow: hidden;
}

.story_viewers_modal .story_viewers_modal_header {
  position: relative;
  justify-content: flex-start;
  padding: 20px 20px 14px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  text-align: left;
}

.story_viewers_modal .story_viewers_modal_title_wrap {
  min-width: 0;
  padding-right: 64px;
}

.story_viewers_modal .story_viewers_modal_title {
  color: #18233d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.story_viewers_modal .story_viewers_modal_close {
  right: 18px;
  top: 50%;
  padding: 10px;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  box-shadow: none;
}

.story_viewers_modal .story_viewers_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}

.story_viewers_modal .story_viewers_modal_close svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: #5b6781;
}

#storieViewersModalTitle.story_viewers_modal_header .story_viewers_modal_close {
  top: 50%;
  right: 18px;
  padding: 10px;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.story_viewers_modal .story_viewers_modal_body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f4f7fb 100%);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  overflow: visible;
}

.story_viewers_modal .story_viewers_modal_analytics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.story_viewers_modal .story_viewers_modal_stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 15px 10px;
  border: 1px solid #dde6f1;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.story_viewers_modal .story_viewers_modal_stat_value {
  color: #18233d;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.story_viewers_modal .story_viewers_modal_stat_label {
  margin-top: 3px;
  color: #6f7d94;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.story_viewers_modal .story_reaction_summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story_viewers_modal .story_reaction_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d9e3ef;
  border-radius: 999px;
  background: #ffffff;
  color: #2a3b57;
  font-size: 13px;
  font-weight: 700;
}

.story_viewers_modal .story_viewers_modal_list_shell {
  border: 1px solid #dde6f1;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  overflow: hidden;
}

.story_viewers_modal .story_viewers_modal_list {
  padding: 12px;
  max-height: none;
  height: auto;
  overflow: visible;
  border-radius: 24px;
}

.story_viewers_modal .story_viewer_row {
  margin-bottom: 8px;
}

.story_viewers_modal .story_viewer_row:last-child {
  margin-bottom: 0;
}

.story_viewers_modal .story_viewer_link {
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #dee6f0;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.story_viewers_modal .story_viewer_link:hover {
  border-color: #cedaea;
  background: #fbfcff;
}

.story_viewers_modal .story_viewer_link .i_message_owner_avatar {
  margin: 0;
}

.story_viewers_modal .story_viewer_link .i_message_avatar {
  width: 48px;
  height: 48px;
}

.story_viewers_modal .story_viewer_link .i_message_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.story_viewers_modal .story_viewer_identity {
  min-width: 0;
}

.story_viewers_modal .story_viewer_identity .i_message_owner_name {
  color: #1e2942;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story_viewers_modal .story_viewer_identity .i_message_i {
  color: #7d8aa1;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story_viewers_modal .story_viewers_modal_empty {
  min-height: 160px;
  padding: 16px;
  border: 1px dashed #d5deea;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  color: #6f7d94;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 700px) {
  .story_viewers_modal {
    padding: 12px 10px;
  }

  .story_viewers_modal .story_viewers_modal_shell {
    width: min(100%, calc(100vw - 24px));
    border-radius: 22px;
  }

  .story_viewers_modal .story_viewers_modal_header {
    padding: 16px 16px 11px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }

  .story_viewers_modal .story_viewers_modal_title_wrap {
    padding-right: 56px;
  }

  .story_viewers_modal .story_viewers_modal_title {
    font-size: 17px;
  }

  .story_viewers_modal .story_viewers_modal_close {
    right: 12px;
    top: 50%;
    padding: 9px;
    transform: translateY(-50%);
    border-radius: 14px;
  }

  #storieViewersModalTitle.story_viewers_modal_header .story_viewers_modal_close {
    right: 12px;
    top: 50%;
    padding: 9px;
    transform: translateY(-50%);
  }

  .story_viewers_modal .story_viewers_modal_body {
    gap: 12px;
    padding: 16px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }

  .story_viewers_modal .story_viewers_modal_analytics {
    gap: 10px;
  }

  .story_viewers_modal .story_viewers_modal_stat {
    padding: 15px 10px;
    border-radius: 15px;
  }

  .story_viewers_modal .story_viewers_modal_stat_value {
    font-size: 15px;
  }

  .story_viewers_modal .story_viewers_modal_stat_label {
    font-size: 10px;
  }

  .story_viewers_modal .story_viewers_modal_list_shell,
  .story_viewers_modal .story_viewers_modal_list {
    border-radius: 20px;
  }

  .story_viewers_modal .story_viewers_modal_list {
    padding: 10px;
  }

  .story_viewers_modal .story_viewer_link {
    padding: 10px 12px;
    border-radius: 16px;
  }

  .story_viewers_modal .story_viewer_link .i_message_avatar {
    width: 42px;
    height: 42px;
  }

  .story_viewers_modal .story_viewer_identity .i_message_owner_name {
    font-size: 14px;
  }

  .story_viewers_modal .story_viewer_identity .i_message_i {
    font-size: 12px;
  }

  .story_viewers_modal .story_viewers_modal_empty {
    min-height: 140px;
    padding: 14px;
    font-size: 13px;
  }
}

.settings_main_wrapper.settings_preferences_page {
  min-width: 0;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_shell {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border: 1px solid #e4ebf5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 32px 28px;
  border-bottom: 1px solid #e9eef6;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 243, 244, 0.88) 100%);
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_header_copy {
  flex: 1;
  min-width: 0;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_header_note {
  max-width: 760px;
  margin-top: 12px;
  color: #70809d;
  font-size: 15px;
  line-height: 1.7;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 500px;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_summary_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-height: 108px;
  padding: 18px 20px;
  border: 1px solid #dfe7f3;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_summary_value {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #1d2942;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_summary_label {
  color: #73839f;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_summary_card .age-verif-badge {
  align-self: flex-start;
  margin-bottom: 2px;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_body {
  padding: 28px 32px 32px;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_feedback_stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_feedback {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid transparent;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_feedback[hidden] {
  display: none !important;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_feedback_success {
  color: #2f6d49;
  background: #f2faf4;
  border-color: #cce7d7;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_feedback_error {
  color: #9f4b56;
  background: #fff5f6;
  border-color: #f4d4d9;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 24px;
  border: 1px solid #e6edf7;
  border-radius: 24px;
  background: #ffffff;
  position: relative;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_card_wide {
  grid-column: 1 / -1;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_card_head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_card_title {
  gap: 10px;
  padding-bottom: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1d2942;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_card_title svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-left: 0;
  fill: #ff7389;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_card_note {
  color: #74839d;
  font-size: 15px;
  line-height: 1.7;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_toggle_group,
.settings_main_wrapper.settings_preferences_page .settings_preferences_runtime_stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_toggle_grid,
.settings_main_wrapper.settings_preferences_page .settings_preferences_age_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_toggle_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid #e6edf7;
  border-radius: 18px;
  background: #fbfcff;
  position: relative;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_toggle_copy {
  flex: 1;
  min-width: 0;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_toggle_label {
  color: #1f2a44;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_toggle_note {
  margin-top: 6px;
  color: #7788a3;
  font-size: 14px;
  line-height: 1.55;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_toggle_switch {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  margin-left: auto;
  position: static;
  right: auto;
  min-width: 58px;
  padding-right: 4px;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_toggle_switch .el-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_toggle_row .loaderWrapper {
  position: absolute;
  top: 14px;
  right: 14px;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_runtime_note,
.settings_main_wrapper.settings_preferences_page .settings_preferences_runtime_notice {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #e2eaf5;
  border-radius: 16px;
  background: #f7faff;
  color: #73839d;
  font-size: 14px;
  line-height: 1.55;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_runtime_notice:empty,
.settings_main_wrapper.settings_preferences_page .age-verif-inline-message:empty {
  display: none;
}

.settings_main_wrapper.settings_preferences_page .age-verif-inline-message {
  margin: 0;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_age_button {
  min-width: 220px;
  padding: 14px 20px;
  border: 0;
  border-radius: 16px;
  background: #1c3158;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  box-shadow: none;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_age_button:hover {
  background: #223c6a;
}

.settings_main_wrapper.settings_preferences_page .settings_preferences_age_button[disabled] {
  background: #d8e1ef;
  color: #7c8ca6;
  cursor: default;
}

.settings_main_wrapper.settings_preferences_page .age-verif-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
}

.settings_main_wrapper.settings_preferences_page .age-verif-badge--ok {
  color: #2f6d49;
  background: #eff8f2;
  border-color: #cbe6d4;
}

.settings_main_wrapper.settings_preferences_page .age-verif-badge--warn {
  color: #9b6439;
  background: #fff5ec;
  border-color: #f3dac2;
}

.settings_main_wrapper.settings_preferences_page .age-verif-message,
.settings_main_wrapper.settings_preferences_page .age-verif-inline-message {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_preferences_page .age-verif-message--success {
  color: #2f6d49;
  background: #f2faf4;
  border-color: #cce7d7;
}

.settings_main_wrapper.settings_preferences_page .age-verif-message--error {
  color: #9f4b56;
  background: #fff5f6;
  border-color: #f4d4d9;
}

.settings_main_wrapper.settings_preferences_page .age-verif-required {
  color: #9b6439;
}

@media only screen and (max-width: 1200px) {
  .settings_main_wrapper.settings_preferences_page .settings_preferences_header {
    flex-direction: column;
  }

  .settings_main_wrapper.settings_preferences_page .settings_preferences_summary {
    max-width: none;
  }
}

@media only screen and (max-width: 980px) {
  .settings_main_wrapper.settings_preferences_page .settings_preferences_body {
    padding: 24px;
  }

  .settings_main_wrapper.settings_preferences_page .settings_preferences_cards,
  .settings_main_wrapper.settings_preferences_page .settings_preferences_toggle_grid,
  .settings_main_wrapper.settings_preferences_page .settings_preferences_age_grid {
    grid-template-columns: 1fr;
  }

  .settings_main_wrapper.settings_preferences_page .settings_preferences_card_wide {
    grid-column: auto;
  }
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_preferences_page .settings_preferences_shell {
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_preferences_page .settings_preferences_header {
    padding: 22px 18px 20px;
  }

  .settings_main_wrapper.settings_preferences_page .settings_preferences_summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .settings_main_wrapper.settings_preferences_page .settings_preferences_summary_card {
    min-height: 98px;
    padding: 16px;
    border-radius: 18px;
  }

  .settings_main_wrapper.settings_preferences_page .settings_preferences_summary_value {
    font-size: 26px;
  }

  .settings_main_wrapper.settings_preferences_page .settings_preferences_body {
    padding: 18px;
  }

  .settings_main_wrapper.settings_preferences_page .settings_preferences_card {
    padding: 18px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_preferences_page .settings_preferences_toggle_row {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding: 16px;
  }

  .settings_main_wrapper.settings_preferences_page .settings_preferences_toggle_switch {
    justify-content: flex-start;
    margin-left: 0;
    padding-right: 0;
  }

  .settings_main_wrapper.settings_preferences_page .settings_preferences_age_button {
    width: 100%;
    min-width: 0;
  }
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page {
  min-width: 0;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-shell {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: 28px;
  border: 1px solid #e5ebf5;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-header {
  padding: 30px 32px 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 243, 244, 0.86) 100%);
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-header-copy {
  max-width: 780px;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-header .i_settings_wrapper_title_txt {
  gap: 10px;
  font-size: 19px;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-header .i_settings_wrapper_title_txt svg {
  width: 18px;
  height: 18px;
  fill: #ff7389;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-note {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #70809d;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-body {
  padding: 28px 32px 32px;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-feedback-global,
.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-export-feedback,
.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-feedback {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1.6;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-feedback-global[hidden],
.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-export-feedback[hidden],
.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-feedback[hidden] {
  display: none !important;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-feedback-global.successNot,
.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-export-feedback.successNot,
.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-feedback.successNot {
  color: #2f6d49;
  background: #f2faf4;
  border-color: #cce7d7;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-feedback-global.warning_not_correct,
.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-export-feedback.warning_not_correct,
.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-feedback.warning_not_correct {
  color: #9f4b56;
  background: #fff5f6;
  border-color: #f4d4d9;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-sticky-status {
  border-radius: 22px;
  padding: 18px 20px;
  margin-bottom: 18px;
  border-color: #dfe8f4;
  background: linear-gradient(180deg, #f7faff 0%, #f3f7ff 100%);
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-sticky-status-title {
  font-size: 16px;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-sticky-status-desc {
  font-size: 14px;
  line-height: 1.55;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-panels {
  gap: 18px;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-panel {
  padding: 24px;
  border-radius: 24px;
  border-color: #e5ebf5;
  background: #ffffff;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-panel-head {
  gap: 14px;
  margin-bottom: 16px;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-panel-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-panel-title {
  font-size: 18px;
  font-weight: 700;
  color: #1d2942;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-panel-desc,
.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-danger-note,
.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-meta-text,
.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-faq-a,
.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-export-empty-note {
  color: #70809d;
  font-size: 14px;
  line-height: 1.65;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-export-delete-notice,
.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-danger-warning {
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.55;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-meta-pill {
  padding: 8px 12px;
  background: #f5f8fc;
  color: #50607f;
  border: 1px solid #e0e8f2;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-meta-pill-danger {
  background: #fff1f1;
  color: #ba4343;
  border-color: #f1cbcb;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-export-stats {
  margin-top: 12px;
  gap: 10px;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-export-stat-item {
  border-radius: 16px;
  padding: 12px 14px;
  background: #f9fbff;
  border-color: #e2ebf6;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-export-stat-label {
  font-size: 12px;
  margin-bottom: 6px;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-export-stat-item strong {
  font-size: 14px;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-panel-actions {
  margin-top: 16px;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-btn {
  min-height: 48px;
  height: auto;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-btn-primary {
  background: #1c3158;
  border-color: #1c3158;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-btn-primary:hover {
  background: #223c6a;
  border-color: #223c6a;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-btn-secondary {
  background: #f3f7fc;
  color: #335074;
  border-color: #d9e4f1;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-btn-secondary:hover {
  background: #ecf2f9;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-btn-danger {
  background: #b94f58;
  border-color: #b94f58;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-btn-danger:hover {
  background: #a84750;
  border-color: #a84750;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-faq {
  margin-top: 20px;
  padding: 22px;
  border-radius: 24px;
  border-color: #e5ebf5;
  background: #fbfcff;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-faq-title {
  font-size: 18px;
  color: #22304c;
  margin-bottom: 12px;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-faq-list {
  gap: 10px;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-faq-item {
  border-radius: 16px;
  padding: 14px 16px;
  border-color: #e6edf8;
}

.settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-faq-q {
  font-size: 14px;
  margin-bottom: 6px;
}

.account-delete-password-modal .account-delete-modal-card {
  max-width: 560px;
}

.account-delete-password-modal .account-delete-modal-content {
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22);
}

.account-delete-password-modal .account-delete-modal-header {
  padding: 22px 24px;
}

.account-delete-password-modal .account-delete-modal-body {
  padding: 24px;
}

.account-delete-password-modal .account-delete-modal-warning,
.account-delete-password-modal .account-delete-modal-error {
  border-radius: 16px;
}

.account-delete-password-modal .account-delete-password-input {
  min-height: 54px;
  border-radius: 16px;
  background: #f8fbff;
}

.account-delete-password-modal .account-delete-password-toggle {
  right: 12px;
  height: 34px;
  border-radius: 10px;
}

.account-delete-password-modal .account-delete-btn {
  border-radius: 16px;
  min-height: 50px;
}

@media only screen and (max-width: 980px) {
  .settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-body {
    padding: 24px;
  }
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-shell {
    border-radius: 22px;
  }

  .settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-header {
    padding: 22px 18px 20px;
  }

  .settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-page-body {
    padding: 18px;
  }

  .settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-panel,
  .settings_main_wrapper.account-delete-page.settings_account_delete_page .account-delete-faq {
    padding: 18px;
    border-radius: 20px;
  }

  .account-delete-password-modal .account-delete-modal-card {
    max-width: calc(100% - 24px);
  }

  .account-delete-password-modal .account-delete-modal-body {
    padding: 18px;
  }
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_shell {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(215, 225, 239, 0.92);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.1);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 32px 24px;
  background: linear-gradient(135deg, rgba(255, 251, 251, 0.96) 0%, rgba(247, 250, 255, 0.98) 100%);
  border-bottom: 1px solid rgba(215, 225, 239, 0.88);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_header_copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_header .i_settings_wrapper_title_txt {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  color: #1d2940;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_header .i_settings_wrapper_title_txt svg {
  width: 20px;
  height: 20px;
  fill: #f0707f;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_header_note {
  max-width: 700px;
  font-size: 15px;
  line-height: 1.65;
  color: #6b7a99;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_header_actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_back_link,
.settings_main_wrapper.settings_create_product_page .settings_create_product_back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(209, 220, 236, 0.94);
  background: #ffffff;
  color: #1d2940;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_back svg {
  width: 17px;
  height: 17px;
  fill: #5b6d88;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_type_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #eff4fb;
  border: 1px solid rgba(211, 223, 239, 0.88);
  color: #31415f;
  font-size: 13px;
  font-weight: 700;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_body {
  padding: 0;
  background: transparent;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_surface {
  padding: 28px 32px 32px;
  background: transparent;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_catalog_intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_catalog_title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #1d2940;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_catalog_note {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.65;
  color: #6b7a99;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_card {
  width: auto;
  padding: 0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option {
  position: relative;
  min-height: 184px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(215, 225, 239, 0.94);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: #1d2940;
  box-shadow: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_link:hover .settings_create_product_option,
.settings_main_wrapper.settings_create_product_page .settings_create_product_option_link:focus-visible .settings_create_product_option {
  transform: translateY(-3px);
  border-color: rgba(181, 198, 221, 0.96);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_icon,
.settings_main_wrapper.settings_create_product_page .settings_create_product_icon_wrap {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(216, 226, 239, 0.94);
  background: #ffffff;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_icon svg,
.settings_main_wrapper.settings_create_product_page .settings_create_product_icon_wrap svg {
  width: 26px;
  height: 26px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_title,
.settings_main_wrapper.settings_create_product_page .settings_create_product_card .cibTitle {
  color: #1d2940;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_scratch,
.settings_main_wrapper.settings_create_product_page .settings_create_product_card_scratch {
  background: linear-gradient(180deg, #fbfcff 0%, #f3f7ff 100%);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_scratch .settings_create_product_option_icon,
.settings_main_wrapper.settings_create_product_page .settings_create_product_card_scratch .settings_create_product_icon_wrap {
  background: rgba(69, 118, 255, 0.08);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_scratch svg,
.settings_main_wrapper.settings_create_product_page .settings_create_product_card_scratch svg {
  fill: #456fe0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_bookazoom .settings_create_product_option_icon {
  background: rgba(247, 130, 53, 0.1);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_bookazoom svg {
  fill: #d97706;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_digitaldownload .settings_create_product_option_icon {
  background: rgba(61, 130, 246, 0.1);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_digitaldownload svg {
  fill: #2563eb;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_liveeventticket .settings_create_product_option_icon {
  background: rgba(34, 197, 94, 0.1);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_liveeventticket svg {
  fill: #159947;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_artcommission .settings_create_product_option_icon {
  background: rgba(244, 114, 182, 0.1);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_artcommission svg {
  fill: #db2777;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_joininstagramclosefriends .settings_create_product_option_icon {
  background: rgba(14, 165, 233, 0.1);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_option_joininstagramclosefriends svg {
  fill: #0284c7;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form_view {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form_surface {
  border-radius: 30px;
  border: 1px solid rgba(215, 225, 239, 0.94);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 28px;
}

.settings_main_wrapper.settings_create_product_page .create_product_form {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.settings_main_wrapper.settings_create_product_page .create_product_form > .input_title_title {
  width: 100%;
  margin: 0;
  padding-left: 4px;
  color: #596982;
}

.settings_main_wrapper.settings_create_product_page .now_creating {
  width: 100%;
  padding: 0 4px 10px;
  text-align: left;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #1d2940;
}

.settings_main_wrapper.settings_create_product_page .create_product_form_column {
  width: 100%;
  min-width: 0;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(218, 227, 240, 0.96);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.settings_main_wrapper.settings_create_product_page .create_product_form_column.flex_ {
  align-items: flex-start;
  gap: 16px;
}

.settings_main_wrapper.settings_create_product_page .create_product_form_column.padding_bottom_zero,
.settings_main_wrapper.settings_create_product_page .create_product_form_columnpadding_bottom_zero {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.settings_main_wrapper.settings_create_product_page .create_product_form > .create_product_form_column:last-child {
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: flex-end;
}

.settings_main_wrapper.settings_create_product_page .input_title,
.settings_main_wrapper.settings_create_product_page .input_price {
  margin: 0;
}

.settings_main_wrapper.settings_create_product_page .input_title_title,
.settings_main_wrapper.settings_create_product_page .col-tit,
.settings_main_wrapper.settings_create_product_page .col-tit-advanced-settings {
  margin-top: 0;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #5d6c85;
}

.settings_main_wrapper.settings_create_product_page .col-tit,
.settings_main_wrapper.settings_create_product_page .col-tit-advanced-settings {
  margin-bottom: 12px;
}

.settings_main_wrapper.settings_create_product_page .col-tit span svg,
.settings_main_wrapper.settings_create_product_page .qmark span svg {
  fill: #7f8ba1;
}

.settings_main_wrapper.settings_create_product_page .prc,
.settings_main_wrapper.settings_create_product_page .col-textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(214, 224, 238, 0.96);
  background: #ffffff;
  color: #1d2940;
  box-shadow: none;
}

.settings_main_wrapper.settings_create_product_page .col-textarea {
  min-height: 126px;
  resize: vertical;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_textarea_group,
.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_group {
  padding: 0;
  border: 0;
  background: transparent;
}

.settings_main_wrapper.settings_create_product_page .col-textarea-box,
.settings_main_wrapper.settings_create_product_page .relativePosition,
.settings_main_wrapper.settings_create_product_page .i_subs_price {
  width: 100%;
  min-width: 0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_textarea_input {
  width: 100% !important;
  max-width: none !important;
  min-height: 138px;
}

.settings_main_wrapper.settings_create_product_page .prc:focus,
.settings_main_wrapper.settings_create_product_page .col-textarea:focus {
  border-color: rgba(162, 184, 212, 0.96);
  background: #ffffff;
}

.settings_main_wrapper.settings_create_product_page .input_prc_padding {
  padding-left: 72px;
}

.settings_main_wrapper.settings_create_product_page .prc_currency {
  width: 56px;
  border-right: 1px solid rgba(214, 224, 238, 0.96);
  color: #5d6c85;
}

.settings_main_wrapper.settings_create_product_page .input_file_form {
  width: 150px;
  min-width: 150px;
}

.settings_main_wrapper.settings_create_product_page .input_uploaded_images {
  width: calc(100% - 166px);
  padding-left: 0;
}

.settings_main_wrapper.settings_create_product_page .i_pr_file,
.settings_main_wrapper.settings_create_product_page .i_prd_file {
  height: 118px;
  border: 1px dashed rgba(167, 186, 212, 0.96);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.settings_main_wrapper.settings_create_product_page .i_pr_file:hover,
.settings_main_wrapper.settings_create_product_page .i_prd_file:hover {
  background: #f8fbff;
  border-color: rgba(133, 163, 203, 0.98);
}

.settings_main_wrapper.settings_create_product_page .i_pr_btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 0;
}

.settings_main_wrapper.settings_create_product_page .i_pr_btn svg {
  width: 30px;
  height: 30px;
  fill: #6a7b95;
}

.settings_main_wrapper.settings_create_product_page .input_uploaded,
.settings_main_wrapper.settings_create_product_page .input_uploaded_file {
  min-height: 118px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(214, 224, 238, 0.96);
  background: #f7faff;
}

.settings_main_wrapper.settings_create_product_page .uploadedFileContainer {
  max-width: none;
  height: 110px;
  border-radius: 18px;
  border: 1px solid rgba(214, 224, 238, 0.96);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: none;
}

.settings_main_wrapper.settings_create_product_page .uploadedFileContainer:hover {
  box-shadow: none;
  transform: none;
}

.settings_main_wrapper.settings_create_product_page .theFileName {
  max-width: calc(100% - 70px);
  color: #1d2940;
}

.settings_main_wrapper.settings_create_product_page .i_set_subscription_fee_box {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(214, 224, 238, 0.96);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.settings_main_wrapper.settings_create_product_page .i_sub_not_check {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: #1d2940;
}

.settings_main_wrapper.settings_create_product_page .i_sub_not_check_box {
  position: static;
  top: auto;
  right: auto;
  margin-left: auto;
  padding-left: 8px;
  flex: 0 0 auto;
}

.settings_main_wrapper.settings_create_product_page .i_set_subscription_fee {
  display: block;
  width: 100%;
  margin-top: 12px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_box {
  width: 100% !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_textarea_group {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_textarea_group .col-textarea-box {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_textarea_group .col-textarea,
.settings_main_wrapper.settings_create_product_page .settings_create_product_textarea_input {
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 100% !important;
  min-height: 138px !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_group {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_group .i_set_subscription_fee_box,
.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_box {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.settings_main_wrapper.settings_create_product_page .i_set_subscription_fee.nonePoint {
  display: none;
}

.settings_main_wrapper.settings_create_product_page .i_subs_price .prc {
  margin-top: 0;
}

.settings_main_wrapper.settings_create_product_page .i_warning,
.settings_main_wrapper.settings_create_product_page .successNot {
  width: 100%;
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.settings_main_wrapper.settings_create_product_page .i_warning {
  background: #fff4f2;
  border: 1px solid rgba(245, 174, 161, 0.9);
  color: #b84732;
}

.settings_main_wrapper.settings_create_product_page .successNot {
  background: #eefaf2;
  border: 1px solid rgba(163, 219, 186, 0.92);
  color: #1e7d49;
}

.settings_main_wrapper.settings_create_product_page .pr_save_btna {
  width: auto;
  min-width: 188px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  background: #1a2d4f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.settings_main_wrapper.settings_create_product_page .pr_save_btna:hover {
  background: #21365c;
  box-shadow: none;
  transform: none;
}

.settings_main_wrapper.settings_create_product_page .create_product_form {
  width: 100%;
  max-width: 980px;
}

.settings_main_wrapper.settings_create_product_page .create_product_form > .create_product_form_column:last-child {
  width: 100%;
  max-width: 980px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_meta_row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 14px !important;
  align-items: end !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_media_row {
  display: grid !important;
  grid-template-columns: minmax(186px, 220px) minmax(0, 1fr);
  gap: 14px !important;
  align-items: stretch !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_meta_row .input_title,
.settings_main_wrapper.settings_create_product_page .settings_create_product_meta_row .input_price,
.settings_main_wrapper.settings_create_product_page .settings_create_product_media_row .input_file_form,
.settings_main_wrapper.settings_create_product_page .settings_create_product_media_row .input_uploaded_images {
  width: auto;
  min-width: 0;
}

.settings_main_wrapper.settings_create_product_page .input_title_title {
  font-size: 13px;
  letter-spacing: 0.01em;
}

.settings_main_wrapper.settings_create_product_page .prc,
.settings_main_wrapper.settings_create_product_page .col-textarea {
  margin-top: 8px;
  padding: 13px 15px;
  border-radius: 15px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_textarea_input {
  min-height: 132px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_media_row .i_pr_file,
.settings_main_wrapper.settings_create_product_page .settings_create_product_media_row .i_prd_file {
  height: 104px;
  border-radius: 18px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_media_row .i_pr_btn {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border: 1px solid rgba(214, 224, 238, 0.96);
  border-radius: 16px;
  background: #f8fbff;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_media_row .i_pr_btn svg {
  width: 24px;
  height: 24px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_media_row .input_uploaded,
.settings_main_wrapper.settings_create_product_page .settings_create_product_media_row .input_uploaded_file {
  min-height: 104px;
  padding: 12px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(180deg, #f9fbff 0%, #f6f9fe 100%);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_media_row .input_uploaded:not(.has-items),
.settings_main_wrapper.settings_create_product_page .settings_create_product_media_row .input_uploaded_file {
  justify-content: center;
}

.settings_main_wrapper.settings_create_product_page .col-tit-advanced-settings {
  margin-top: 4px;
  margin-bottom: 4px;
  color: #1d2940;
  font-size: 15px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_group {
  width: min(100%, 760px) !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_group .i_set_subscription_fee_box,
.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_box {
  padding: 10px 14px;
  border-radius: 16px;
  background: #ffffff;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_copy {
  display: flex;
  align-items: center;
  min-width: 0;
  padding-right: 10px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #1f2a44;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_help {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_group .i_sub_not_check {
  min-height: 0;
  padding: 10px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_group .i_sub_not_check_box {
  padding-left: 12px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_group .i_set_subscription_fee {
  margin-top: 10px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_help .ownTooltipWrapper {
  display: block;
  top: calc(100% + 8px);
  left: 50%;
  right: auto;
  width: 260px;
  min-width: 260px;
  max-width: 260px;
  transform: translateX(-50%);
  white-space: normal;
  line-height: 1.45;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  word-break: break-word;
  overflow-wrap: anywhere;
  letter-spacing: 0;
  z-index: 10010;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .create_product_form_column.flex_.settings_create_product_meta_row {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px) !important;
  gap: 14px !important;
  padding: 14px 16px !important;
}

.settings_main_wrapper.settings_create_product_page .create_product_form_column {
  border: 0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .col-tit,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .col-tit-advanced-settings {
  width: 100%;
  margin-bottom: 15px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .create_product_form_column.flex_.settings_create_product_media_row {
  display: flex !important;
  min-width: 0 !important;
  align-items: flex-start !important;
  gap: 15px !important;
  flex-wrap: nowrap !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .create_product_form_column.flex_.settings_create_product_media_row.has-preview-items,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .create_product_form_column.flex_.settings_create_product_media_row.has-download-file {
  display: flex !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_file_form {
  flex: 0 0 148px !important;
  width: 148px !important;
  min-width: 148px !important;
  max-width: 148px !important;
  align-self: flex-start !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images {
  display: none !important;
  position: static !important;
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  align-self: flex-start !important;
  overflow: visible !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row.has-preview-items .input_uploaded_images,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row.has-download-file .input_uploaded_images {
  display: block !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .pr_file_,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .prd_file_,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .editAds_file,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .cTumb {
  position: absolute !important;
  inset: auto !important;
  width: 0.1px !important;
  min-width: 0.1px !important;
  height: 0.1px !important;
  min-height: 0.1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .i_pr_file,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .i_prd_file {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  height: 96px;
  padding: 12px;
  border: 1px dashed rgba(198, 212, 231, 0.96);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .i_pr_btn {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 1px solid rgba(214, 224, 238, 0.96);
  border-radius: 14px;
  background: #f8fbff;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .i_pr_btn svg {
  width: 22px;
  height: 22px;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .option_form_pls,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded_file {
  position: static !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .option_form_pls {
  float: none !important;
  clear: both !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  align-content: flex-start !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  float: none !important;
  clear: both !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded:not(.has-items) {
  display: none !important;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded .i_uploaded_item {
  position: relative;
  display: block;
  flex: 0 0 156px;
  float: none !important;
  width: 156px;
  min-width: 156px;
  max-width: 156px;
  height: 156px;
  min-height: 156px;
  margin: 0 !important;
  padding: 0 !important;
  align-self: start;
  overflow: visible;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded .i_uploaded_file {
  width: 156px;
  height: 156px;
  border-radius: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded .i_uploaded_file img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .video_n,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .pr_im {
  top: 8px;
  left: 8px;
  z-index: 2;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .i_delete_item_button {
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  z-index: 3;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded .i_uploaded_item.video .v_custom_tumb {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 4;
  width: auto;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded .i_uploaded_item.video .v_custom_tumb label,
.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded .i_uploaded_item.video .v_custom_tumb .i_image_video_btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded .i_uploaded_item.video .v_custom_tumb .pbtn {
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: #22304a;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_uploaded_iv {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 220px;
  max-width: 240px;
  margin-top: 10px;
  margin-left: 0;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  overflow: hidden;
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_uploaded_iv .i_upload_progress {
  top: 0;
  bottom: 0;
  left: 0;
  height: auto;
  border-radius: inherit;
  background: rgba(224, 233, 246, 0.92);
}

.settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_uploading_not {
  position: relative;
  z-index: 9;
  font-size: 12px;
  font-weight: 600;
  color: #62708a;
  white-space: nowrap;
  background: transparent;
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .create_product_form_column.flex_.settings_create_product_media_row,
  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .create_product_form_column.flex_.settings_create_product_media_row.has-preview-items,
  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .create_product_form_column.flex_.settings_create_product_media_row.has-download-file {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_file_form {
    flex: 0 0 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .i_pr_file,
  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .i_prd_file {
    min-height: 88px;
    height: 88px;
    border-radius: 18px;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row.has-preview-items .input_uploaded_images,
  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row.has-download-file .input_uploaded_images,
  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .i_uploaded_iv {
    width: 100% !important;
    max-width: 100% !important;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded {
    gap: 12px !important;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded .i_uploaded_item {
    flex: 0 0 calc(50% - 6px);
    width: calc(50% - 6px);
    min-width: calc(50% - 6px);
    max-width: calc(50% - 6px);
    height: auto;
    min-height: 0;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded .i_uploaded_file {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded .i_uploaded_item.video .v_custom_tumb {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded .i_uploaded_item.video .v_custom_tumb .pbtn {
    min-height: 32px;
    padding: 0 8px;
    font-size: 11px;
  }
}

@media only screen and (max-width: 420px) {
  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .settings_create_product_media_row .input_uploaded_images .input_uploaded .i_uploaded_item {
    flex-basis: calc(50% - 6px);
    width: calc(50% - 6px);
    min-width: calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
}

.settings_main_wrapper.settings_purchased_products_page {
  --settings-purchased-products-surface: #ffffff;
  --settings-purchased-products-surface-soft: #fbfcff;
  --settings-purchased-products-surface-muted: #f5f7fb;
  --settings-purchased-products-border: #e2e8f2;
  --settings-purchased-products-border-strong: #d5deea;
  --settings-purchased-products-text: #172033;
  --settings-purchased-products-text-muted: #6f7d92;
  --settings-purchased-products-text-soft: #8d98ab;
  --settings-purchased-products-accent: #f65169;
  --settings-purchased-products-accent-soft: rgba(246, 81, 105, 0.1);
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_shell {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow: hidden;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-purchased-products-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_header_meta {
  display: grid;
  gap: 10px;
  max-width: 820px;
  min-width: 0;
}

.settings_main_wrapper.settings_purchased_products_page .i_settings_wrapper_title_txt {
  color: var(--settings-purchased-products-text);
}

.settings_main_wrapper.settings_purchased_products_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-purchased-products-accent-soft);
  fill: var(--settings-purchased-products-accent);
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_header_note {
  max-width: 720px;
  color: var(--settings-purchased-products-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_processing_note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--settings-purchased-products-border);
  border-radius: 999px;
  background: var(--settings-purchased-products-surface-muted);
  color: var(--settings-purchased-products-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_body {
  min-width: 0;
  overflow-x: hidden;
  padding: 22px;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_table_frame {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--settings-purchased-products-border);
  border-radius: 28px;
  background: var(--settings-purchased-products-surface-muted);
  overflow: hidden;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_table_scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_table_inner {
  width: max-content;
  min-width: 100%;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_table_head {
  display: grid;
  grid-template-columns: 90px minmax(220px, 1.3fr) minmax(240px, 1.45fr) 120px 130px 170px 160px 140px;
  gap: 0;
  padding: 0 22px;
  border-bottom: 1px solid var(--settings-purchased-products-border);
  background: var(--settings-purchased-products-surface-soft);
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_head_cell {
  min-width: 0;
  padding: 16px 0;
  color: var(--settings-purchased-products-text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_table_body {
  background: var(--settings-purchased-products-surface);
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_row {
  display: grid;
  grid-template-columns: 90px minmax(220px, 1.3fr) minmax(240px, 1.45fr) 120px 130px 170px 160px 140px;
  gap: 0;
  align-items: center;
  min-height: 84px;
  padding: 0 22px;
  border-bottom: 1px solid var(--settings-purchased-products-border);
  transition: background-color 0.2s ease;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_row:last-child {
  border-bottom: 0;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_row:hover {
  background: rgba(246, 81, 105, 0.03);
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_cell {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 18px 0;
  color: var(--settings-purchased-products-text);
  font-size: 14px;
  line-height: 1.5;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_mobile_label {
  display: none;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_id,
.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_amount_value {
  color: var(--settings-purchased-products-text);
  font-weight: 700;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_creator_link,
.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_product_link {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_creator_media {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_creator_avatar {
  width: 44px;
  min-width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid var(--settings-purchased-products-border);
  border-radius: 14px;
  background: var(--settings-purchased-products-surface-muted);
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_creator_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_creator_identity {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_creator_name,
.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_product_name {
  overflow: hidden;
  color: var(--settings-purchased-products-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_creator_username {
  overflow: hidden;
  color: var(--settings-purchased-products-text-muted);
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_date_value,
.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_fee_value {
  color: var(--settings-purchased-products-text-muted);
  font-size: 13px;
  font-weight: 600;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_cell_net {
  color: var(--settings-purchased-products-text);
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_net_value {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(15, 36, 66, 0.12);
  border-radius: 999px;
  background: rgba(15, 36, 66, 0.06);
  color: var(--settings-purchased-products-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_cell_action {
  justify-content: flex-start;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_action_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--settings-purchased-products-border-strong);
  border-radius: 12px;
  background: var(--settings-purchased-products-surface-muted);
  color: var(--settings-purchased-products-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_action_link:hover {
  border-color: rgba(246, 81, 105, 0.25);
  background: var(--settings-purchased-products-accent-soft);
  color: var(--settings-purchased-products-accent);
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_action_empty {
  color: var(--settings-purchased-products-text-soft);
  font-size: 13px;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_empty_state {
  min-height: 360px;
  padding: 34px 22px;
  border: 1px solid var(--settings-purchased-products-border);
  border-radius: 28px;
  background: radial-gradient(circle at top center, rgba(246, 81, 105, 0.06), transparent 36%), var(--settings-purchased-products-surface);
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_empty_inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 420px;
  text-align: center;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_empty_state .no_c_icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0;
  border: 1px solid var(--settings-purchased-products-border);
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(246, 81, 105, 0.12), transparent 72%), var(--settings-purchased-products-surface);
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_empty_state .no_c_icon svg {
  width: 42px;
  height: 42px;
  fill: var(--settings-purchased-products-text-muted);
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_empty_title {
  color: var(--settings-purchased-products-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_empty_state .n_c_t {
  max-width: 320px;
  margin: 0;
  color: var(--settings-purchased-products-text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_footer {
  padding-top: 0;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_pagination {
  gap: 8px;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_pagination li a {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--settings-purchased-products-border);
  border-radius: 12px;
  background: var(--settings-purchased-products-surface);
  color: var(--settings-purchased-products-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_pagination li a:hover,
.settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_pagination li.active a {
  border-color: rgba(246, 81, 105, 0.2);
  background: var(--settings-purchased-products-accent-soft);
  color: var(--settings-purchased-products-accent);
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_header {
    padding: 20px 18px 18px;
    gap: 16px;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_processing_note {
    min-height: 32px;
    padding: 0 11px;
    border-radius: 14px;
    font-size: 11px;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_body {
    padding: 18px;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_table_frame {
    border-radius: 24px;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_table_inner {
    width: 100%;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_table_head,
  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_row {
    grid-template-columns: 1fr;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_table_head {
    display: none;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_row {
    gap: 12px;
    padding: 18px;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_cell {
    justify-content: space-between;
    gap: 14px;
    padding: 0;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_mobile_label {
    display: block;
    color: var(--settings-purchased-products-text-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_creator_media {
    justify-content: flex-end;
    max-width: 100%;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_creator_identity {
    text-align: right;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_product_name,
  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_date_value,
  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_amount_value,
  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_fee_value {
    text-align: right;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_net_value,
  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_action_link,
  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_action_empty {
    margin-left: auto;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_empty_state {
    min-height: 320px;
    padding: 26px 18px;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_empty_state .no_c_icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_empty_state .no_c_icon svg {
    width: 36px;
    height: 36px;
  }

  .settings_main_wrapper.settings_purchased_products_page .settings_purchased_products_empty_title {
    font-size: 16px;
  }
}

.settings_main_wrapper.settings_payments_page {
  --settings-payments-surface: #ffffff;
  --settings-payments-surface-soft: #fbfcff;
  --settings-payments-surface-muted: #f5f7fb;
  --settings-payments-border: #e2e8f2;
  --settings-payments-border-strong: #d5deea;
  --settings-payments-text: #172033;
  --settings-payments-text-muted: #6f7d92;
  --settings-payments-text-soft: #8d98ab;
  --settings-payments-accent: #f65169;
  --settings-payments-accent-soft: rgba(246, 81, 105, 0.1);
}

.settings_main_wrapper.settings_payments_page .settings_payments_shell {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow: hidden;
}

.settings_main_wrapper.settings_payments_page .settings_payments_header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-payments-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_payments_page .settings_payments_header_meta {
  display: grid;
  gap: 10px;
  max-width: 820px;
  min-width: 0;
}

.settings_main_wrapper.settings_payments_page .i_settings_wrapper_title_txt {
  color: var(--settings-payments-text);
}

.settings_main_wrapper.settings_payments_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-payments-accent-soft);
  fill: var(--settings-payments-accent);
}

.settings_main_wrapper.settings_payments_page .settings_payments_header_note {
  color: var(--settings-payments-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_payments_page .settings_payments_processing_note {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  max-width: 100%;
  padding: 0 18px;
  border: 1px solid var(--settings-payments-border);
  border-radius: 999px;
  background: var(--settings-payments-surface-muted);
  color: var(--settings-payments-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.settings_main_wrapper.settings_payments_page .settings_payments_header_note a {
  color: var(--settings-payments-accent);
  font-weight: 700;
  text-decoration: none;
}

.settings_main_wrapper.settings_payments_page .settings_payments_header_note a:hover {
  text-decoration: underline;
}

.settings_main_wrapper.settings_payments_page .settings_payments_body {
  min-width: 0;
  overflow-x: hidden;
  padding: 22px;
}

.settings_main_wrapper.settings_payments_page .settings_payments_table_frame {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--settings-payments-border);
  border-radius: 28px;
  background: var(--settings-payments-surface-muted);
  overflow: hidden;
}

.settings_main_wrapper.settings_payments_page .settings_payments_table_scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.settings_main_wrapper.settings_payments_page .settings_payments_table_inner {
  width: max-content;
  min-width: 100%;
}

.settings_main_wrapper.settings_payments_page .settings_payments_table_head {
  display: grid;
  grid-template-columns: 88px minmax(240px, 1.65fr) 120px 132px 132px 132px 136px 176px 150px;
  gap: 0;
  padding: 0 22px;
  border-bottom: 1px solid var(--settings-payments-border);
  background: var(--settings-payments-surface-soft);
}

.settings_main_wrapper.settings_payments_page .settings_payments_head_cell {
  min-width: 0;
  padding: 16px 0;
  color: var(--settings-payments-text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_payments_page .settings_payments_table_body {
  background: var(--settings-payments-surface);
}

.settings_main_wrapper.settings_payments_page .settings_payments_row {
  display: grid;
  grid-template-columns: 88px minmax(240px, 1.65fr) 120px 132px 132px 132px 136px 176px 150px;
  gap: 0;
  align-items: center;
  min-height: 88px;
  padding: 0 22px;
  border-bottom: 1px solid var(--settings-payments-border);
  transition: background-color 0.2s ease;
}

.settings_main_wrapper.settings_payments_page .settings_payments_row:last-child {
  border-bottom: 0;
}

.settings_main_wrapper.settings_payments_page .settings_payments_row:hover {
  background: rgba(246, 81, 105, 0.03);
}

.settings_main_wrapper.settings_payments_page .settings_payments_cell {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 18px 0;
  color: var(--settings-payments-text);
  font-size: 14px;
  line-height: 1.5;
}

.settings_main_wrapper.settings_payments_page .settings_payments_mobile_label {
  display: none;
}

.settings_main_wrapper.settings_payments_page .settings_payments_id,
.settings_main_wrapper.settings_payments_page .settings_payments_amount_value {
  color: var(--settings-payments-text);
  font-weight: 700;
}

.settings_main_wrapper.settings_payments_page .settings_payments_value_stack {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.settings_main_wrapper.settings_payments_page .settings_payments_fee_value,
.settings_main_wrapper.settings_payments_page .settings_payments_net_value {
  font-weight: 700;
}

.settings_main_wrapper.settings_payments_page .settings_payments_fee_value {
  color: var(--settings-payments-text-muted);
}

.settings_main_wrapper.settings_payments_page .settings_payments_net_value {
  color: var(--settings-payments-text);
}

.settings_main_wrapper.settings_payments_page .settings_payments_target_content {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.settings_main_wrapper.settings_payments_page .settings_payments_target_link {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.settings_main_wrapper.settings_payments_page .settings_payments_target_link.is-static {
  cursor: default;
}

.settings_main_wrapper.settings_payments_page .settings_payments_target_link:hover .settings_payments_target_name {
  color: var(--settings-payments-accent);
}

.settings_main_wrapper.settings_payments_page .settings_payments_target_media {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.settings_main_wrapper.settings_payments_page .settings_payments_target_avatar {
  width: 44px;
  min-width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid var(--settings-payments-border);
  border-radius: 14px;
  background: var(--settings-payments-surface-muted);
}

.settings_main_wrapper.settings_payments_page .settings_payments_target_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.settings_main_wrapper.settings_payments_page .settings_payments_target_identity {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.settings_main_wrapper.settings_payments_page .settings_payments_target_name {
  overflow: hidden;
  color: var(--settings-payments-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings_main_wrapper.settings_payments_page .settings_payments_target_username {
  overflow: hidden;
  color: var(--settings-payments-text-muted);
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings_main_wrapper.settings_payments_page .settings_payments_target_meta {
  color: var(--settings-payments-accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.settings_main_wrapper.settings_payments_page .settings_payments_target_meta.is-muted {
  color: var(--settings-payments-text-soft);
}

.settings_main_wrapper.settings_payments_page .settings_payments_date_value {
  color: var(--settings-payments-text-muted);
  font-size: 13px;
  font-weight: 600;
}

.settings_main_wrapper.settings_payments_page .settings_payments_cell_type {
  display: grid;
  gap: 6px;
  justify-items: flex-start;
}

.settings_main_wrapper.settings_payments_page .settings_payments_cell_amount,
.settings_main_wrapper.settings_payments_page .settings_payments_cell_fee,
.settings_main_wrapper.settings_payments_page .settings_payments_cell_net {
  align-items: flex-start;
}

.settings_main_wrapper.settings_payments_page .settings_payments_type_badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--settings-payments-border);
  border-radius: 999px;
  background: var(--settings-payments-surface-muted);
  color: var(--settings-payments-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.settings_main_wrapper.settings_payments_page .settings_payments_type_badge.is-subscription,
.settings_main_wrapper.settings_payments_page .settings_payments_type_badge.is-post {
  border-color: rgba(246, 81, 105, 0.18);
  background: rgba(246, 81, 105, 0.1);
  color: var(--settings-payments-accent);
}

.settings_main_wrapper.settings_payments_page .settings_payments_type_badge.is-tips,
.settings_main_wrapper.settings_payments_page .settings_payments_type_badge.is-live_gift {
  border-color: rgba(56, 142, 60, 0.18);
  background: rgba(56, 142, 60, 0.1);
  color: #2f7a33;
}

.settings_main_wrapper.settings_payments_page .settings_payments_type_badge.is-frame,
.settings_main_wrapper.settings_payments_page .settings_payments_type_badge.is-agency_boost,
.settings_main_wrapper.settings_payments_page .settings_payments_type_badge.is-boostpost {
  border-color: rgba(15, 36, 66, 0.12);
  background: rgba(15, 36, 66, 0.06);
  color: #243d61;
}

.settings_main_wrapper.settings_payments_page .settings_payments_type_meta {
  color: var(--settings-payments-text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.settings_main_wrapper.settings_payments_page .settings_payments_cell_invoice {
  justify-content: flex-start;
}

.settings_main_wrapper.settings_payments_page .settings_payments_invoice_link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--settings-payments-border-strong);
  border-radius: 12px;
  background: var(--settings-payments-surface-muted);
  color: var(--settings-payments-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.settings_main_wrapper.settings_payments_page .settings_payments_invoice_link:hover {
  border-color: rgba(246, 81, 105, 0.25);
  background: var(--settings-payments-accent-soft);
  color: var(--settings-payments-accent);
}

.settings_main_wrapper.settings_payments_page .settings_payments_invoice_empty {
  color: var(--settings-payments-text-soft);
  font-size: 13px;
}

.settings_main_wrapper.settings_payments_page .settings_payments_empty_state {
  min-height: 360px;
  padding: 34px 22px;
  border: 1px solid var(--settings-payments-border);
  border-radius: 28px;
  background: radial-gradient(circle at top center, rgba(246, 81, 105, 0.06), transparent 36%), var(--settings-payments-surface);
}

.settings_main_wrapper.settings_payments_page .settings_payments_empty_inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 420px;
  text-align: center;
}

.settings_main_wrapper.settings_payments_page .settings_payments_empty_state .no_c_icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0;
  border: 1px solid var(--settings-payments-border);
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(246, 81, 105, 0.12), transparent 72%), var(--settings-payments-surface);
}

.settings_main_wrapper.settings_payments_page .settings_payments_empty_state .no_c_icon svg {
  width: 42px;
  height: 42px;
  fill: #7d89a5;
}

.settings_main_wrapper.settings_payments_page .settings_payments_empty_title {
  color: var(--settings-payments-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.settings_main_wrapper.settings_payments_page .settings_payments_empty_state .n_c_t {
  max-width: 340px;
  margin: 0;
  color: var(--settings-payments-text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.settings_main_wrapper.settings_payments_page .settings_payments_footer {
  padding-top: 0;
}

.settings_main_wrapper.settings_payments_page .settings_payments_pagination {
  gap: 8px;
}

.settings_main_wrapper.settings_payments_page .settings_payments_pagination li a {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--settings-payments-border);
  border-radius: 12px;
  background: var(--settings-payments-surface);
  color: var(--settings-payments-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.settings_main_wrapper.settings_payments_page .settings_payments_pagination li a:hover,
.settings_main_wrapper.settings_payments_page .settings_payments_pagination li.active a {
  border-color: rgba(246, 81, 105, 0.2);
  background: var(--settings-payments-accent-soft);
  color: var(--settings-payments-accent);
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_payments_page .settings_payments_header {
    padding: 20px 18px 18px;
    gap: 16px;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_body {
    padding: 18px;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_processing_note {
    width: 100%;
    min-height: 0;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_table_frame {
    border-radius: 24px;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_table_inner {
    width: 100%;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_table_head,
  .settings_main_wrapper.settings_payments_page .settings_payments_row {
    grid-template-columns: 1fr;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_table_head {
    display: none;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_row {
    gap: 12px;
    padding: 18px;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_cell {
    justify-content: space-between;
    gap: 14px;
    padding: 0;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_mobile_label {
    display: block;
    color: var(--settings-payments-text-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_target_content,
  .settings_main_wrapper.settings_payments_page .settings_payments_cell_type {
    justify-items: flex-end;
    text-align: right;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_target_media {
    justify-content: flex-end;
    max-width: 100%;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_target_identity {
    text-align: right;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_target_meta,
  .settings_main_wrapper.settings_payments_page .settings_payments_date_value,
  .settings_main_wrapper.settings_payments_page .settings_payments_value_stack,
  .settings_main_wrapper.settings_payments_page .settings_payments_amount_value,
  .settings_main_wrapper.settings_payments_page .settings_payments_fee_value,
  .settings_main_wrapper.settings_payments_page .settings_payments_net_value,
  .settings_main_wrapper.settings_payments_page .settings_payments_invoice_link,
  .settings_main_wrapper.settings_payments_page .settings_payments_invoice_empty {
    margin-left: auto;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_value_stack,
  .settings_main_wrapper.settings_payments_page .settings_payments_cell_type {
    justify-items: flex-end;
    text-align: right;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_empty_state {
    min-height: 320px;
    padding: 26px 18px;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_empty_state .no_c_icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_payments_page .settings_payments_empty_state .no_c_icon svg {
    width: 36px;
    height: 36px;
  }

.settings_main_wrapper.settings_payments_page .settings_payments_empty_title {
  font-size: 16px;
}
}

.settings_main_wrapper.settings_payout_history_page {
  --settings-payout-history-surface: #ffffff;
  --settings-payout-history-surface-soft: #fbfcff;
  --settings-payout-history-surface-muted: #f5f7fb;
  --settings-payout-history-border: #e2e8f2;
  --settings-payout-history-border-strong: #d5deea;
  --settings-payout-history-text: #172033;
  --settings-payout-history-text-muted: #6f7d92;
  --settings-payout-history-text-soft: #8d98ab;
  --settings-payout-history-accent: #f65169;
  --settings-payout-history-accent-soft: rgba(246, 81, 105, 0.1);
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_shell {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow: hidden;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-payout-history-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_header_meta {
  display: grid;
  gap: 10px;
  max-width: 780px;
  min-width: 0;
}

.settings_main_wrapper.settings_payout_history_page .i_settings_wrapper_title_txt {
  color: var(--settings-payout-history-text);
}

.settings_main_wrapper.settings_payout_history_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-payout-history-accent-soft);
  fill: var(--settings-payout-history-accent);
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_header_note {
  color: var(--settings-payout-history-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_body {
  min-width: 0;
  overflow-x: hidden;
  padding: 22px;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_table_frame {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--settings-payout-history-border);
  border-radius: 28px;
  background: var(--settings-payout-history-surface-muted);
  overflow: hidden;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_table_scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_table_inner {
  width: max-content;
  min-width: 100%;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_table_head {
  display: grid;
  grid-template-columns: 170px 130px minmax(180px, 1.2fr) 160px 160px;
  gap: 0;
  padding: 0 22px;
  border-bottom: 1px solid var(--settings-payout-history-border);
  background: var(--settings-payout-history-surface-soft);
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_head_cell {
  min-width: 0;
  padding: 16px 0;
  color: var(--settings-payout-history-text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_table_body {
  background: var(--settings-payout-history-surface);
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_row {
  display: grid;
  grid-template-columns: 170px 130px minmax(180px, 1.2fr) 160px 160px;
  gap: 0;
  align-items: center;
  min-height: 88px;
  padding: 0 22px;
  border-bottom: 1px solid var(--settings-payout-history-border);
  transition: background-color 0.2s ease;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_row:last-child {
  border-bottom: 0;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_row:hover {
  background: rgba(246, 81, 105, 0.03);
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_cell {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 18px 0;
  color: var(--settings-payout-history-text);
  font-size: 14px;
  line-height: 1.5;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_mobile_label {
  display: none;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_amount_value,
.settings_main_wrapper.settings_payout_history_page .settings_payout_history_method_value {
  color: var(--settings-payout-history-text);
  font-weight: 700;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_date_value {
  color: var(--settings-payout-history-text-muted);
  font-size: 13px;
  font-weight: 600;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_type_badge,
.settings_main_wrapper.settings_payout_history_page .settings_payout_history_status_badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--settings-payout-history-border);
  border-radius: 999px;
  background: var(--settings-payout-history-surface-muted);
  color: var(--settings-payout-history-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_type_badge.is-subscription,
.settings_main_wrapper.settings_payout_history_page .settings_payout_history_type_badge.is-post,
.settings_main_wrapper.settings_payout_history_page .settings_payout_history_type_badge.is-product {
  border-color: rgba(246, 81, 105, 0.18);
  background: rgba(246, 81, 105, 0.1);
  color: var(--settings-payout-history-accent);
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_type_badge.is-point,
.settings_main_wrapper.settings_payout_history_page .settings_payout_history_type_badge.is-points {
  border-color: rgba(15, 36, 66, 0.12);
  background: rgba(15, 36, 66, 0.06);
  color: #243d61;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_status_badge.is-completed,
.settings_main_wrapper.settings_payout_history_page .settings_payout_history_status_badge.is-paid,
.settings_main_wrapper.settings_payout_history_page .settings_payout_history_status_badge.is-approved {
  border-color: rgba(56, 142, 60, 0.18);
  background: rgba(56, 142, 60, 0.1);
  color: #2f7a33;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_status_badge.is-pending,
.settings_main_wrapper.settings_payout_history_page .settings_payout_history_status_badge.is-processing {
  border-color: rgba(176, 113, 0, 0.18);
  background: rgba(176, 113, 0, 0.1);
  color: #9a6500;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_status_badge.is-rejected,
.settings_main_wrapper.settings_payout_history_page .settings_payout_history_status_badge.is-cancelled,
.settings_main_wrapper.settings_payout_history_page .settings_payout_history_status_badge.is-failed {
  border-color: rgba(192, 36, 64, 0.16);
  background: rgba(192, 36, 64, 0.08);
  color: #ad2642;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_empty_state {
  min-height: 360px;
  padding: 34px 22px;
  border: 1px solid var(--settings-payout-history-border);
  border-radius: 28px;
  background: radial-gradient(circle at top center, rgba(246, 81, 105, 0.06), transparent 36%), var(--settings-payout-history-surface);
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_empty_inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 420px;
  text-align: center;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_empty_state .no_c_icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0;
  border: 1px solid var(--settings-payout-history-border);
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(246, 81, 105, 0.12), transparent 72%), var(--settings-payout-history-surface);
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_empty_state .no_c_icon svg {
  width: 42px;
  height: 42px;
  fill: #7d89a5;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_empty_title {
  color: var(--settings-payout-history-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_empty_state .n_c_t {
  max-width: 340px;
  margin: 0;
  color: var(--settings-payout-history-text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_footer {
  padding-top: 0;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_pagination {
  gap: 8px;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_pagination li a {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--settings-payout-history-border);
  border-radius: 12px;
  background: var(--settings-payout-history-surface);
  color: var(--settings-payout-history-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_pagination li a:hover,
.settings_main_wrapper.settings_payout_history_page .settings_payout_history_pagination li.active a {
  border-color: rgba(246, 81, 105, 0.2);
  background: var(--settings-payout-history-accent-soft);
  color: var(--settings-payout-history-accent);
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_header {
    padding: 20px 18px 18px;
    gap: 16px;
  }

  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_body {
    padding: 18px;
  }

  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_table_frame {
    border-radius: 24px;
  }

  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_table_inner {
    width: 100%;
  }

  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_table_head,
  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_row {
    grid-template-columns: 1fr;
  }

  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_table_head {
    display: none;
  }

  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_row {
    gap: 12px;
    padding: 18px;
  }

  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_cell {
    justify-content: space-between;
    gap: 14px;
    padding: 0;
  }

  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_mobile_label {
    display: block;
    color: var(--settings-payout-history-text-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_amount_value,
  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_date_value,
  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_method_value,
  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_type_badge,
  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_status_badge {
    margin-left: auto;
    text-align: right;
  }

  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_empty_state {
    min-height: 320px;
    padding: 26px 18px;
  }

  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_empty_state .no_c_icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_payout_history_page .settings_payout_history_empty_state .no_c_icon svg {
    width: 36px;
    height: 36px;
  }

.settings_main_wrapper.settings_payout_history_page .settings_payout_history_empty_title {
  font-size: 16px;
}
}

.settings_main_wrapper.settings_fees_page {
  --settings-fees-surface: #ffffff;
  --settings-fees-surface-soft: #fbfcff;
  --settings-fees-surface-muted: #f5f7fb;
  --settings-fees-border: #e2e8f2;
  --settings-fees-border-strong: #d5deea;
  --settings-fees-text: #172033;
  --settings-fees-text-muted: #6f7d92;
  --settings-fees-text-soft: #8d98ab;
  --settings-fees-accent: #f65169;
  --settings-fees-accent-soft: rgba(246, 81, 105, 0.1);
  --settings-fees-success-bg: #eef9f0;
  --settings-fees-success-border: #cde7d1;
  --settings-fees-success-text: #25653b;
  --settings-fees-warning-bg: #fff5f6;
  --settings-fees-warning-border: #f2d8dd;
  --settings-fees-warning-text: #a64459;
}

.settings_main_wrapper.settings_fees_page .settings_fees_shell {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.settings_main_wrapper.settings_fees_page .settings_fees_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-fees-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_fees_page .settings_fees_header_meta {
  display: grid;
  gap: 10px;
  max-width: 760px;
  min-width: 0;
}

.settings_main_wrapper.settings_fees_page .i_settings_wrapper_title_txt {
  color: var(--settings-fees-text);
}

.settings_main_wrapper.settings_fees_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-fees-accent-soft);
  fill: var(--settings-fees-accent);
}

.settings_main_wrapper.settings_fees_page .settings_fees_header_note {
  color: var(--settings-fees-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_fees_page .settings_fees_header_note a {
  color: var(--settings-fees-accent);
  font-weight: 700;
  text-decoration: none;
}

.settings_main_wrapper.settings_fees_page .settings_fees_header_note a:hover {
  text-decoration: underline;
}

.settings_main_wrapper.settings_fees_page .settings_fees_header_chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--settings-fees-border);
  border-radius: 999px;
  background: var(--settings-fees-surface-muted);
  color: var(--settings-fees-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_fees_page .settings_fees_body {
  min-width: 0;
  overflow-x: hidden;
  padding: 22px;
}

.settings_main_wrapper.settings_fees_page .settings_fees_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.settings_main_wrapper.settings_fees_page .settings_fees_plan_card {
  display: grid;
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--settings-fees-border);
  border-radius: 26px;
  background: var(--settings-fees-surface);
  box-shadow: none;
}

.settings_main_wrapper.settings_fees_page .settings_fees_plan_card.is-enabled {
  border-color: rgba(246, 81, 105, 0.18);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.06), transparent 36%), var(--settings-fees-surface);
}

.settings_main_wrapper.settings_fees_page .settings_fees_plan_header {
  display: grid;
  gap: 10px;
}

.settings_main_wrapper.settings_fees_page .settings_fees_plan_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--settings-fees-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.settings_main_wrapper.settings_fees_page .settings_fees_plan_description {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  color: var(--settings-fees-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_fees_page .settings_fees_plan_description_text {
  color: inherit;
}

.settings_main_wrapper.settings_fees_page .settings_fees_toggle_box {
  flex: 0 0 auto;
}

.settings_main_wrapper.settings_fees_page .settings_fees_status_icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(56, 142, 60, 0.1);
}

.settings_main_wrapper.settings_fees_page .settings_fees_status_icon.is-visible {
  display: inline-flex;
}

.settings_main_wrapper.settings_fees_page .settings_fees_status_icon svg {
  width: 14px;
  height: 14px;
  fill: #2f7a33;
}

.settings_main_wrapper.settings_fees_page .settings_fees_input_shell {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--settings-fees-border);
  border-radius: 20px;
  background: var(--settings-fees-surface-soft);
}

.settings_main_wrapper.settings_fees_page .settings_fees_input_prefix,
.settings_main_wrapper.settings_fees_page .settings_fees_input_suffix {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 16px;
  color: var(--settings-fees-text);
  font-size: 13px;
  font-weight: 800;
  background: var(--settings-fees-surface-muted);
}

.settings_main_wrapper.settings_fees_page .settings_fees_input_prefix {
  border-right: 1px solid var(--settings-fees-border);
}

.settings_main_wrapper.settings_fees_page .settings_fees_input_prefix svg {
  width: 18px;
  height: 18px;
  fill: var(--settings-fees-accent);
}

.settings_main_wrapper.settings_fees_page .settings_fees_input_suffix {
  border-left: 1px solid var(--settings-fees-border);
  color: var(--settings-fees-text-muted);
}

.settings_main_wrapper.settings_fees_page .settings_fees_input_field {
  min-width: 0;
}

.settings_main_wrapper.settings_fees_page .settings_fees_input_control {
  width: 100%;
  min-width: 0;
  height: 58px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--settings-fees-text);
  font-size: 15px;
  font-weight: 700;
  outline: none;
  box-shadow: none;
}

.settings_main_wrapper.settings_fees_page .settings_fees_input_control::placeholder {
  color: var(--settings-fees-text-soft);
}

.settings_main_wrapper.settings_fees_page .settings_fees_inline_feedback,
.settings_main_wrapper.settings_fees_page .settings_fees_potential,
.settings_main_wrapper.settings_fees_page .settings_fees_success {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.settings_main_wrapper.settings_fees_page .settings_fees_inline_feedback {
  border: 1px solid var(--settings-fees-warning-border);
  background: var(--settings-fees-warning-bg);
  color: var(--settings-fees-warning-text);
}

.settings_main_wrapper.settings_fees_page .settings_fees_potential {
  border: 1px solid var(--settings-fees-border);
  background: var(--settings-fees-surface-muted);
  color: var(--settings-fees-text-muted);
}

.settings_main_wrapper.settings_fees_page .settings_fees_potential span {
  color: var(--settings-fees-text);
}

.settings_main_wrapper.settings_fees_page .settings_fees_success {
  margin-top: 18px;
  border: 1px solid var(--settings-fees-success-border);
  background: var(--settings-fees-success-bg);
  color: var(--settings-fees-success-text);
}

.settings_main_wrapper.settings_fees_page .settings_fees_plan_card_community {
  align-content: space-between;
}

.settings_main_wrapper.settings_fees_page .settings_fees_secondary_btn,
.settings_main_wrapper.settings_fees_page .settings_fees_save_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: none;
}

.settings_main_wrapper.settings_fees_page .settings_fees_secondary_btn {
  width: fit-content;
  background: var(--settings-fees-surface-muted);
  border-color: var(--settings-fees-border);
  color: var(--settings-fees-text);
}

.settings_main_wrapper.settings_fees_page .settings_fees_secondary_btn:hover {
  background: #edf1f7;
}

.settings_main_wrapper.settings_fees_page .settings_fees_footer {
  padding-top: 0;
}

.settings_main_wrapper.settings_fees_page .settings_fees_save_btn {
  background: #20406b;
  color: #ffffff;
}

.settings_main_wrapper.settings_fees_page .settings_fees_save_btn:hover {
  background: #193255;
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_fees_page .settings_fees_header {
    padding: 20px 18px 18px;
    gap: 16px;
  }

  .settings_main_wrapper.settings_fees_page .settings_fees_header_chip {
    width: 100%;
    justify-content: center;
  }

  .settings_main_wrapper.settings_fees_page .settings_fees_body {
    padding: 18px;
  }

  .settings_main_wrapper.settings_fees_page .settings_fees_grid {
    grid-template-columns: 1fr;
  }

  .settings_main_wrapper.settings_fees_page .settings_fees_plan_card {
    padding: 18px;
    border-radius: 22px;
  }

  .settings_main_wrapper.settings_fees_page .settings_fees_plan_description {
    flex-direction: column;
  }

  .settings_main_wrapper.settings_fees_page .settings_fees_input_shell {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .settings_main_wrapper.settings_fees_page .settings_fees_input_suffix {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid var(--settings-fees-border);
  }

  .settings_main_wrapper.settings_fees_page .settings_fees_secondary_btn,
  .settings_main_wrapper.settings_fees_page .settings_fees_save_btn {
    width: 100%;
  }
}

.settings_main_wrapper.settings_withdrawal_page {
  --settings-withdrawal-surface: #ffffff;
  --settings-withdrawal-surface-soft: #fbfcff;
  --settings-withdrawal-surface-muted: #f5f7fb;
  --settings-withdrawal-border: #e2e8f2;
  --settings-withdrawal-border-strong: #d5deea;
  --settings-withdrawal-text: #172033;
  --settings-withdrawal-text-muted: #6f7d92;
  --settings-withdrawal-text-soft: #8d98ab;
  --settings-withdrawal-accent: #f65169;
  --settings-withdrawal-accent-soft: rgba(246, 81, 105, 0.1);
  --settings-withdrawal-success-bg: #eef9f0;
  --settings-withdrawal-success-border: #cde7d1;
  --settings-withdrawal-success-text: #25653b;
  --settings-withdrawal-warning-bg: #fff5f6;
  --settings-withdrawal-warning-border: #f2d8dd;
  --settings-withdrawal-warning-text: #a64459;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_shell {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow: hidden;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-withdrawal-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_header_meta {
  display: grid;
  gap: 10px;
  max-width: 760px;
  min-width: 0;
}

.settings_main_wrapper.settings_withdrawal_page .i_settings_wrapper_title_txt {
  color: var(--settings-withdrawal-text);
}

.settings_main_wrapper.settings_withdrawal_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-withdrawal-accent-soft);
  fill: var(--settings-withdrawal-accent);
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_header_note {
  color: var(--settings-withdrawal-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_body {
  min-width: 0;
  overflow-x: hidden;
  padding: 22px;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_form_card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--settings-withdrawal-border);
  border-radius: 28px;
  background: var(--settings-withdrawal-surface);
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_info_badge {
  gap: 10px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--settings-withdrawal-border);
  border-radius: 999px;
  background: var(--settings-withdrawal-surface-muted);
  color: var(--settings-withdrawal-text);
  font-size: 13px;
  font-weight: 700;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_info_badge svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  fill: var(--settings-withdrawal-accent);
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_method_note {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--settings-withdrawal-border);
  border-radius: 18px;
  background: var(--settings-withdrawal-surface-muted);
  color: var(--settings-withdrawal-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_method_note a {
  color: var(--settings-withdrawal-accent);
  font-weight: 700;
  text-decoration: none;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_method_note a:hover {
  text-decoration: underline;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_balance_card {
  width: 100%;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--settings-withdrawal-border);
  border-radius: 22px;
  background: var(--settings-withdrawal-surface-muted);
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_balance_value {
  display: grid;
  gap: 6px;
  margin: 0;
  color: var(--settings-withdrawal-text);
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_balance_label {
  color: var(--settings-withdrawal-text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_balance_amount {
  color: var(--settings-withdrawal-text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_form_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_field_group {
  display: grid;
  gap: 10px;
  padding: 0;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_field_label {
  padding: 0;
  color: var(--settings-withdrawal-text);
  font-size: 14px;
  font-weight: 700;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_input_wrap {
  width: 100%;
  padding: 0;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_input_wrap .flnm {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--settings-withdrawal-border);
  border-radius: 16px;
  background: var(--settings-withdrawal-surface-soft);
  color: var(--settings-withdrawal-text);
  font-size: 15px;
  font-weight: 700;
  outline: none;
  box-sizing: border-box;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_input_wrap .flnm::placeholder {
  color: var(--settings-withdrawal-text-soft);
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_input_wrap .flnm:focus {
  border-color: rgba(246, 81, 105, 0.28);
  background: #ffffff;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_feedback_stack {
  display: grid;
  gap: 10px;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_warning,
.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_success {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_warning {
  border: 1px solid var(--settings-withdrawal-warning-border);
  background: var(--settings-withdrawal-warning-bg);
  color: var(--settings-withdrawal-warning-text);
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_success {
  border: 1px solid var(--settings-withdrawal-success-border);
  background: var(--settings-withdrawal-success-bg);
  color: var(--settings-withdrawal-success-text);
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_footer {
  padding-top: 0;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  background: #142947;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: none;
}

.settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_submit:hover {
  background: #193255;
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_header {
    padding: 20px 18px 18px;
    gap: 16px;
  }

  .settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_body {
    padding: 18px;
  }

  .settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_form_card {
    padding: 18px;
    border-radius: 24px;
  }

  .settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_info_badge {
    width: 100%;
    min-height: 0;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_balance_amount {
    font-size: 22px;
  }

  .settings_main_wrapper.settings_withdrawal_page .settings_withdrawal_submit {
    width: 100%;
  }
}

.settings_main_wrapper.settings_subscription_payments_page {
  --settings-subscription-payments-surface: #ffffff;
  --settings-subscription-payments-surface-soft: #fbfcff;
  --settings-subscription-payments-surface-muted: #f5f7fb;
  --settings-subscription-payments-border: #e2e8f2;
  --settings-subscription-payments-border-strong: #d5deea;
  --settings-subscription-payments-text: #172033;
  --settings-subscription-payments-text-muted: #6f7d92;
  --settings-subscription-payments-text-soft: #8d98ab;
  --settings-subscription-payments-accent: #f65169;
  --settings-subscription-payments-accent-soft: rgba(246, 81, 105, 0.1);
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_shell {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow: hidden;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-subscription-payments-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_header_meta {
  display: grid;
  gap: 10px;
  max-width: 820px;
  min-width: 0;
}

.settings_main_wrapper.settings_subscription_payments_page .i_settings_wrapper_title_txt {
  color: var(--settings-subscription-payments-text);
}

.settings_main_wrapper.settings_subscription_payments_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-subscription-payments-accent-soft);
  fill: var(--settings-subscription-payments-accent);
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_header_note {
  color: var(--settings-subscription-payments-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_body {
  min-width: 0;
  overflow-x: hidden;
  padding: 22px;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_table_frame {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--settings-subscription-payments-border);
  border-radius: 28px;
  background: var(--settings-subscription-payments-surface-muted);
  overflow: hidden;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_table_scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_table_inner {
  width: max-content;
  min-width: 100%;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_table_head {
  display: grid;
  grid-template-columns: 88px minmax(240px, 1.55fr) 140px 118px 118px 150px 128px 128px 138px 148px;
  gap: 0;
  padding: 0 22px;
  border-bottom: 1px solid var(--settings-subscription-payments-border);
  background: var(--settings-subscription-payments-surface-soft);
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_head_cell {
  min-width: 0;
  padding: 16px 0;
  color: var(--settings-subscription-payments-text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_table_body {
  background: var(--settings-subscription-payments-surface);
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_row {
  display: grid;
  grid-template-columns: 88px minmax(240px, 1.55fr) 140px 118px 118px 150px 128px 128px 138px 148px;
  gap: 0;
  align-items: center;
  min-height: 88px;
  padding: 0 22px;
  border-bottom: 1px solid var(--settings-subscription-payments-border);
  transition: background-color 0.2s ease;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_row:last-child {
  border-bottom: 0;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_row:hover {
  background: rgba(246, 81, 105, 0.03);
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_cell {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 18px 0;
  color: var(--settings-subscription-payments-text);
  font-size: 14px;
  line-height: 1.5;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_mobile_label {
  display: none;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_id,
.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_amount_value,
.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_net_value {
  color: var(--settings-subscription-payments-text);
  font-weight: 700;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_profile_link {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_profile_link.is-static {
  cursor: default;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_profile_link:hover .settings_subscription_payments_profile_name {
  color: var(--settings-subscription-payments-accent);
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_profile_media {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_profile_avatar {
  width: 44px;
  min-width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid var(--settings-subscription-payments-border);
  border-radius: 14px;
  background: var(--settings-subscription-payments-surface-muted);
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_profile_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_profile_identity {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_profile_name {
  overflow: hidden;
  color: var(--settings-subscription-payments-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_profile_username {
  overflow: hidden;
  color: var(--settings-subscription-payments-text-muted);
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_scope_badge,
.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_status_badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--settings-subscription-payments-border);
  border-radius: 999px;
  background: var(--settings-subscription-payments-surface-muted);
  color: var(--settings-subscription-payments-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_scope_badge.is-profile {
  border-color: rgba(15, 36, 66, 0.12);
  background: rgba(15, 36, 66, 0.06);
  color: #243d61;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_scope_badge.is-community {
  border-color: rgba(246, 81, 105, 0.18);
  background: rgba(246, 81, 105, 0.1);
  color: var(--settings-subscription-payments-accent);
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_status_badge.is-active,
.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_status_badge.is-completed {
  border-color: rgba(56, 142, 60, 0.18);
  background: rgba(56, 142, 60, 0.1);
  color: #2f7a33;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_status_badge.is-inactive,
.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_status_badge.is-pending {
  border-color: rgba(176, 113, 0, 0.18);
  background: rgba(176, 113, 0, 0.1);
  color: #9a6500;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_date_value,
.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_fee_value {
  color: var(--settings-subscription-payments-text-muted);
  font-size: 13px;
  font-weight: 600;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_value_stack {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_amount_meta {
  color: var(--settings-subscription-payments-text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_empty_state {
  min-height: 360px;
  padding: 34px 22px;
  border: 1px solid var(--settings-subscription-payments-border);
  border-radius: 28px;
  background: radial-gradient(circle at top center, rgba(246, 81, 105, 0.06), transparent 36%), var(--settings-subscription-payments-surface);
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_empty_inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 420px;
  text-align: center;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_empty_state .no_c_icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0;
  border: 1px solid var(--settings-subscription-payments-border);
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(246, 81, 105, 0.12), transparent 72%), var(--settings-subscription-payments-surface);
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_empty_state .no_c_icon svg {
  width: 42px;
  height: 42px;
  fill: #7d89a5;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_empty_title {
  color: var(--settings-subscription-payments-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_empty_state .n_c_t {
  max-width: 340px;
  margin: 0;
  color: var(--settings-subscription-payments-text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_footer {
  padding-top: 0;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_pagination {
  gap: 8px;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_pagination li a {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--settings-subscription-payments-border);
  border-radius: 12px;
  background: var(--settings-subscription-payments-surface);
  color: var(--settings-subscription-payments-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_pagination li a:hover,
.settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_pagination li.active a {
  border-color: rgba(246, 81, 105, 0.2);
  background: var(--settings-subscription-payments-accent-soft);
  color: var(--settings-subscription-payments-accent);
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_header {
    padding: 20px 18px 18px;
    gap: 16px;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_body {
    padding: 18px;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_table_frame {
    border-radius: 24px;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_table_inner {
    width: 100%;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_table_head,
  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_row {
    grid-template-columns: 1fr;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_table_head {
    display: none;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_row {
    gap: 12px;
    padding: 18px;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_cell {
    justify-content: space-between;
    gap: 14px;
    padding: 0;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_mobile_label {
    display: block;
    color: var(--settings-subscription-payments-text-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_profile_media {
    justify-content: flex-end;
    max-width: 100%;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_profile_identity {
    text-align: right;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_scope_badge,
  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_date_value,
  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_value_stack,
  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_fee_value,
  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_net_value,
  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_status_badge {
    margin-left: auto;
    text-align: right;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_value_stack {
    justify-items: flex-end;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_empty_state {
    min-height: 320px;
    padding: 26px 18px;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_empty_state .no_c_icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_empty_state .no_c_icon svg {
    width: 36px;
    height: 36px;
  }

  .settings_main_wrapper.settings_subscription_payments_page .settings_subscription_payments_empty_title {
    font-size: 16px;
  }
}

.settings_main_wrapper.settings_payout_methods_page {
  --settings-payout-surface: #ffffff;
  --settings-payout-surface-soft: #fbfcff;
  --settings-payout-surface-muted: #f5f7fb;
  --settings-payout-border: #e2e8f2;
  --settings-payout-border-strong: #d5deea;
  --settings-payout-text: #172033;
  --settings-payout-text-muted: #6f7d92;
  --settings-payout-text-soft: #8d98ab;
  --settings-payout-accent: #f65169;
  --settings-payout-accent-soft: rgba(246, 81, 105, 0.1);
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_methods_shell {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow: hidden;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_methods_header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--settings-payout-border);
  background: radial-gradient(circle at top right, rgba(246, 81, 105, 0.08), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_methods_header_meta {
  display: grid;
  gap: 10px;
  max-width: 820px;
  min-width: 0;
}

.settings_main_wrapper.settings_payout_methods_page .i_settings_wrapper_title_txt {
  color: var(--settings-payout-text);
}

.settings_main_wrapper.settings_payout_methods_page .i_settings_wrapper_title_txt svg {
  margin-right: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--settings-payout-accent-soft);
  fill: var(--settings-payout-accent);
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_methods_header_note {
  color: var(--settings-payout-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_methods_body {
  min-width: 0;
  padding: 22px;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_methods_form_shell {
  width: 100%;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_methods_form {
  display: grid;
  gap: 18px;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_methods_grid {
  display: grid;
  gap: 18px;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_method_card {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 20px 22px;
  border: 1px solid var(--settings-payout-border);
  border-radius: 24px;
  background: var(--settings-payout-surface);
  box-shadow: none;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_method_card_top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_method_card_copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_method_label {
  color: var(--settings-payout-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_method_note {
  margin: 0;
  color: var(--settings-payout-text-muted);
  font-size: 12px;
  line-height: 1.55;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_method_check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin: 0;
  color: var(--settings-payout-text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_method_check_text {
  max-width: 320px;
  text-align: right;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_method_fields {
  display: none;
  padding-top: 2px;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_method_fields.is-active {
  display: block;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row {
  margin: 0 0 12px;
  border: 1px solid var(--settings-payout-border);
  border-radius: 16px;
  background: var(--settings-payout-surface-soft);
  overflow: hidden;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row:last-child {
  margin-bottom: 0;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row.is-textarea {
  align-items: stretch;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row .i_subs_currency {
  min-width: 52px;
  width: 52px;
  height: 52px;
  border-right: 1px solid var(--settings-payout-border);
  background: transparent;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row.is-textarea .i_subs_currency {
  height: auto;
  align-self: stretch;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row .i_subs_currency svg {
  width: 20px;
  height: 20px;
  fill: var(--settings-payout-text-soft);
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row .i_payout_ {
  min-width: 0;
  width: 100%;
  max-width: none;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row.is-textarea .i_payout_ {
  flex: 1 1 auto;
  display: flex;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row input,
.settings_main_wrapper.settings_payout_methods_page .settings_payout_textarea {
  width: 100%;
  min-height: 52px;
  border: 0;
  background: transparent;
  color: var(--settings-payout-text);
  font-size: 14px;
  line-height: 1.5;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row input {
  padding: 0 16px;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row input::placeholder,
.settings_main_wrapper.settings_payout_methods_page .settings_payout_textarea::placeholder {
  color: var(--settings-payout-text-soft);
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_textarea {
  min-height: 144px;
  max-width: none;
  padding: 14px 16px;
  resize: vertical;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_feedbacks {
  display: grid;
  gap: 10px;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_warning {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(221, 87, 76, 0.18);
  border-radius: 14px;
  background: rgba(221, 87, 76, 0.08);
  color: #ba3f35;
  font-size: 12px;
  line-height: 1.5;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_success {
  margin: 0 22px 0;
  padding: 14px 16px;
  border: 1px solid rgba(67, 160, 71, 0.16);
  border-radius: 16px;
  background: rgba(67, 160, 71, 0.08);
  color: #2f7a33;
  font-size: 13px;
  line-height: 1.55;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_methods_footer {
  padding-top: 0;
}

.settings_main_wrapper.settings_payout_methods_page .settings_payout_save_btn {
  min-width: 160px;
  border-radius: 14px;
  box-shadow: none;
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_payout_methods_page .settings_payout_methods_header {
    padding: 20px 18px 18px;
    gap: 16px;
  }

  .settings_main_wrapper.settings_payout_methods_page .settings_payout_methods_body {
    padding: 18px;
  }

  .settings_main_wrapper.settings_payout_methods_page .settings_payout_method_card {
    padding: 18px;
    border-radius: 20px;
  }

  .settings_main_wrapper.settings_payout_methods_page .settings_payout_method_card_top {
    gap: 14px;
  }

  .settings_main_wrapper.settings_payout_methods_page .settings_payout_method_check {
    width: 100%;
    justify-content: space-between;
  }

  .settings_main_wrapper.settings_payout_methods_page .settings_payout_method_check_text {
    max-width: none;
    text-align: left;
  }

  .settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row .i_subs_currency {
    min-width: 46px;
    width: 46px;
    height: 46px;
  }

  .settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row.is-textarea .i_subs_currency {
    height: auto;
  }

  .settings_main_wrapper.settings_payout_methods_page .settings_payout_input_row input,
  .settings_main_wrapper.settings_payout_methods_page .settings_payout_textarea {
    min-height: 46px;
    font-size: 13px;
  }

  .settings_main_wrapper.settings_payout_methods_page .settings_payout_textarea {
    min-height: 132px;
  }

  .settings_main_wrapper.settings_payout_methods_page .settings_payout_success {
    margin: 0 18px 0;
  }

  .settings_main_wrapper.settings_payout_methods_page .settings_payout_save_btn {
    width: 100%;
    min-width: 0;
  }
}

@media only screen and (max-width: 1100px) {
  .settings_main_wrapper.settings_create_product_page .settings_create_product_catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media only screen and (max-width: 700px) {
  .settings_main_wrapper.settings_create_product_page .settings_create_product_shell {
    border-radius: 24px;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_header {
    padding: 22px 18px 18px;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_surface,
  .settings_main_wrapper.settings_create_product_page .settings_create_product_form_surface {
    padding: 18px;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_catalog {
    grid-template-columns: 1fr;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_option {
    min-height: 154px;
  }

  .settings_main_wrapper.settings_create_product_page .now_creating {
    font-size: 21px;
  }

  .settings_main_wrapper.settings_create_product_page .create_product_form {
    gap: 14px;
  }

  .settings_main_wrapper.settings_create_product_page .create_product_form_column {
    padding: 16px;
  }

  .settings_main_wrapper.settings_create_product_page .input_title,
  .settings_main_wrapper.settings_create_product_page .input_price,
  .settings_main_wrapper.settings_create_product_page .input_file_form,
  .settings_main_wrapper.settings_create_product_page .input_uploaded_images {
    width: 100%;
    min-width: 100%;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_meta_row {
    grid-template-columns: 1fr;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_form .create_product_form_column.flex_.settings_create_product_meta_row {
    grid-template-columns: 1fr !important;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_toggle_group {
    width: 100% !important;
  }

  .settings_main_wrapper.settings_create_product_page .settings_create_product_back_link,
  .settings_main_wrapper.settings_create_product_page .settings_create_product_back {
    width: 100%;
  }

  .settings_main_wrapper.settings_create_product_page .pr_save_btna {
    width: 100%;
    min-width: 0;
  }
}

.i_post_footer_boost {
  padding: 12px 14px;
  min-height: 60px;
  max-height: 60px;
  border-radius: 20px;
  border: 1px solid rgba(219, 228, 240, 0.96);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.i_post_footer_boost.changeHeight {
  max-height: 1200px !important;
}

.i_post_footer_boost_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.i_post_footer_boost_heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.i_post_footer_boost_title {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  color: #1d2940;
}

.i_post_footer_boost_status_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  width: fit-content;
  max-width: 100%;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.i_post_footer_boost_status_badge.is-active {
  background: #eef9f1;
  border-color: #cfe8d8;
  color: #1f7a45;
}

.i_post_footer_boost_status_badge.is-passive {
  background: #f2f5fa;
  border-color: #d9e1ec;
  color: #5f6e85;
}

.i_post_footer_boost_status_badge.is-expired {
  background: #fff3f1;
  border-color: #f0d0c9;
  color: #b55344;
}

.show_hide_statistic {
  position: relative;
  right: auto;
  top: auto;
  z-index: auto;
  flex: 0 0 40px;
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin-left: auto;
}

.i_post_footer_boost .show_hide_statistic .stat_icon,
.i_post_footer_boost .show_hide_statistic .stat_icona {
  position: absolute;
  inset: 0;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  margin: 0 !important;
  border-radius: 12px;
  border: 1px solid rgba(216, 226, 239, 0.96);
  background: #ffffff;
  color: #52627f;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.18s ease;
}

.i_post_footer_boost .show_hide_statistic .stat_icon:hover,
.i_post_footer_boost .show_hide_statistic .stat_icona:hover {
  background: #f7faff;
  border-color: rgba(180, 198, 221, 0.96);
  color: #1d2940;
  transform: none !important;
}

.i_post_footer_boost .show_hide_statistic .stat_icon svg,
.i_post_footer_boost .show_hide_statistic .stat_icona svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.i_post_footer_boost .show_hide_statistic .stat_icon {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.i_post_footer_boost .show_hide_statistic .stat_icona {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
}

.i_post_footer_boost .show_hide_statistic.is-open .stat_icon {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.i_post_footer_boost .show_hide_statistic.is-open .stat_icona {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.i_post_footer_boost_item {
  margin-top: 10px;
}

.i_post_footer_boost_item_status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 15px;
  border: 1px solid rgba(220, 228, 240, 0.96);
  background: #ffffff;
}

.i_post_footer_boost_item_status .ipf_item {
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: #1d2940;
}

.i_post_footer_boost_item_status .ipf_item:first-child {
  flex: 1 1 auto;
}

.i_post_footer_boost_item_status .ipf_item:last-child {
  flex: 0 0 auto;
  margin-left: auto;
}

.i_post_footer_boost_item_status .ipf_item .i_sub_not_check_box {
  position: static;
  top: auto;
  right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 44px;
}

.i_post_footer_boost_item_status .boosStat:disabled + .el-switch-style {
  opacity: 0.65;
}

.ipf_stats_panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
}

.ipf_stats_row {
  display: contents;
}

.ipf_stat_col {
  min-width: 0;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(219, 228, 240, 0.96);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.ipf_stat_col:last-of-type {
  border-right: 1px solid rgba(219, 228, 240, 0.96);
}

.ipf_stat_label {
  margin-bottom: 6px;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a89a2;
}

.ipf_stat_label.subtle {
  color: #8b99b0;
}

.ipf_stat_value,
.ipf_stat_value.alt {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  color: #1d2940;
}

.boost_charts_wrapper {
  margin-top: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(219, 228, 240, 0.96);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.boost_chart_box {
  min-height: 176px;
}

.boost_chart_box canvas {
  display: block;
  height: 176px !important;
}

@media only screen and (max-width: 700px) {
  .i_post_footer_boost {
    padding: 10px 12px;
    min-height: 56px;
    max-height: 56px;
    border-radius: 18px;
  }

  .i_post_footer_boost_heading {
    gap: 6px;
  }

  .i_post_footer_boost_title {
    font-size: 13px;
  }

  .i_post_footer_boost .show_hide_statistic {
    flex: 0 0 36px;
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  .i_post_footer_boost .show_hide_statistic .stat_icon,
  .i_post_footer_boost .show_hide_statistic .stat_icona {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .i_post_footer_boost_item_status {
    padding: 10px 12px;
  }

  .ipf_stats_panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ipf_stat_col {
    padding: 12px;
    border-radius: 16px;
  }

  .ipf_stat_value,
  .ipf_stat_value.alt {
    font-size: 20px;
  }

  .boost_charts_wrapper {
    padding: 12px 10px;
    border-radius: 16px;
  }

  .boost_chart_box,
  .boost_chart_box canvas {
    height: 156px !important;
    min-height: 156px;
  }
}

/* Chat left list action containment fix */
.chat_p_body .chat_users_wrapper .i_message_wrpper,
.chat_p_body .chat_users_wrapper_results .i_message_wrpper {
  position: relative;
  overflow: visible;
}

.chat_p_body .chat_left_container .i_message_wrapper {
  padding-right: 64px !important;
}

.chat_p_body .chat_left_container .i_message_setting {
  display: flex !important;
  align-items: center;
  justify-content: center;
  top: 50% !important;
  right: 14px !important;
  transform: translateY(-50%);
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 12px !important;
  background: var(--chat-toolbar) !important;
  border: 1px solid var(--chat-border-soft) !important;
  box-shadow: none !important;
  opacity: 0;
  visibility: hidden;
  z-index: 4;
}

.chat_p_body .chat_left_container .i_message_wrpper:hover .i_message_setting,
.chat_p_body .chat_left_container .i_message_setting.dblock {
  opacity: 1;
  visibility: visible;
}

.chat_p_body .chat_left_container .i_message_set_icon {
  width: 100%;
  height: 100%;
}

.chat_p_body .chat_left_container .i_message_set_container {
  top: calc(100% + 8px) !important;
  right: 0 !important;
  left: auto !important;
  width: auto !important;
  min-width: 180px !important;
  max-width: 220px !important;
  padding: 4px !important;
  border-radius: 14px !important;
}

/* Chat message avatar square fix */
.chat_p_body .msg_friend .msg_o_avatar,
.chat_p_body .msg_me .msg_o_avatar,
.chat_p_body .msg_o_avatar {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  min-height: 26px !important;
  aspect-ratio: 1 / 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 26px;
  flex: 0 0 26px;
  border-radius: 999px !important;
}

.chat_p_body .msg_friend .msg_o_avatar {
  left: -8px !important;
  top: -8px !important;
}

.chat_p_body .msg_me .msg_o_avatar {
  right: -8px !important;
  left: auto !important;
  top: -8px !important;
}

.chat_p_body .msg_o_avatar img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 1100px) {
  .chat_p_body .msg_friend .msg_o_avatar,
  .chat_p_body .msg_me .msg_o_avatar,
  .chat_p_body .msg_o_avatar {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    -ms-flex-preferred-size: 22px;
    flex-basis: 22px;
  }

  .chat_p_body .msg_friend .msg_o_avatar {
    left: -7px !important;
    top: -7px !important;
  }

  .chat_p_body .msg_me .msg_o_avatar {
    right: -7px !important;
    top: -7px !important;
  }
}

/* Chat message hover action cleanup */
.chat_p_body .me_btns_cont {
  width: 30px !important;
  height: 30px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.chat_p_body .me_btns_cont_icon {
  width: 30px !important;
  height: 30px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Chat friend action menu direction fix */
.chat_p_body .msg,
.chat_p_body .msg_me,
.chat_p_body .msg_friend {
  overflow: visible !important;
}

.chat_p_body .msg_friend .me_msg_plus {
  left: -4px !important;
  right: auto !important;
}

.chat_p_body .msg_me .me_msg_plus,
.chat_p_body .msg:last-child .msg_me .me_btns_cont .me_msg_plus {
  right: -4px !important;
  left: auto !important;
}

/* Chat header left alignment fix */
.chat_p_body .conversation_box_header {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.chat_p_body .conversation_user_d {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.chat_p_body .conversation_user {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
  text-align: left;
}

.chat_p_body .c_u_f_nm,
.chat_p_body .c_u_f_nm a,
.chat_p_body .c_u_time {
  text-align: left;
}

/* Chat header compact density */
.chat_p_body .conversation_box_header {
  min-height: 72px;
  padding: 12px 22px;
  gap: 12px;
}

.chat_p_body .conversation_avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
}

.chat_p_body .conversation_user_d {
  gap: 8px;
}

.chat_p_body .c_dotdot {
  width: 32px;
  height: 32px;
}

.chat_p_body .c_set {
  padding: 8px;
}

@media screen and (min-width: 701px) and (max-width: 1100px) {
  .chat_p_body .conversation_box_header {
    min-height: 68px;
    padding: 10px 18px;
    gap: 10px;
  }

  .chat_p_body .conversation_avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    -webkit-border-radius: 13px;
  }
}

@media screen and (max-width: 700px) {
  .chat_p_body .conversation_box_header {
    min-height: 62px;
    padding: 8px 14px;
    gap: 10px;
  }

  .chat_p_body .conversation_avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    -webkit-border-radius: 13px;
  }
}

/* Chat media message visibility fix */
.chat_p_body .msg_me.mmi_i,
.chat_p_body .msg_friend.mmi_if {
  display: block !important;
  width: min(340px, calc(100vw - 112px)) !important;
  max-width: min(340px, calc(100vw - 112px)) !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.chat_p_body .msg_me.mmi_i.msg_with_voice,
.chat_p_body .msg_friend.mmi_if.msg_with_voice {
  width: min(352px, calc(100vw - 92px)) !important;
  max-width: min(352px, calc(100vw - 92px)) !important;
}

.chat_p_body .msg_me.mmi_i .i_image_one,
.chat_p_body .msg_me.mmi_i .i_image_two,
.chat_p_body .msg_me.mmi_i .i_image_three,
.chat_p_body .msg_me.mmi_i .i_image_four,
.chat_p_body .msg_me.mmi_i .i_image_five,
.chat_p_body .msg_friend.mmi_if .i_image_one,
.chat_p_body .msg_friend.mmi_if .i_image_two,
.chat_p_body .msg_friend.mmi_if .i_image_three,
.chat_p_body .msg_friend.mmi_if .i_image_four,
.chat_p_body .msg_friend.mmi_if .i_image_five {
  display: block !important;
  width: 100% !important;
}

.chat_p_body .msg_me.mmi_i .i_post_image_swip_wrapper,
.chat_p_body .msg_friend.mmi_if .i_post_image_swip_wrapper {
  display: block !important;
  background-position: center !important;
  background-size: cover !important;
}

.chat_p_body .msg_me.mmi_i .i_post_image_swip_wrapper .i_p_image,
.chat_p_body .msg_friend.mmi_if .i_post_image_swip_wrapper .i_p_image {
  opacity: 1 !important;
  visibility: visible !important;
}

@media screen and (max-width: 700px) {
  .chat_p_body .msg_me.mmi_i,
  .chat_p_body .msg_friend.mmi_if {
    width: min(260px, calc(100vw - 96px)) !important;
    max-width: min(260px, calc(100vw - 96px)) !important;
  }
}

/* Chat private message redesign */
.chat_p_body .secretMessageBgColor {
  display: block !important;
  width: min(360px, calc(100vw - 112px));
  max-width: min(360px, calc(100vw - 112px));
  padding: 14px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  border: 1px solid #dfe6f2 !important;
  border-radius: 22px !important;
  color: #172033 !important;
}

.chat_p_body .secretMessageBgColor .msg_txt_sec {
  display: flex !important;
  flex-direction: column;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 12px;
  padding: 0 !important;
}

.chat_p_body .secretMessageBgColor .album-details {
  position: relative;
  display: block;
  width: 100%;
  min-height: 78px;
  margin: 0;
  padding: 14px 16px 14px 54px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f4f7fd 0%, #eef3fb 100%);
  border: 1px solid #e1e8f3;
  color: #253047;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.chat_p_body .secretMessageBgColor .album-details svg {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 22px;
  height: 22px;
  fill: #7c879d;
}

.chat_p_body .secretMessageBgColor .unLockMe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #2f67e4;
  background: linear-gradient(180deg, #3d76ef 0%, #2f67e4 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.chat_p_body .secretMessageBgColor .unLockMe:hover {
  background: linear-gradient(180deg, #356de7 0%, #275ed6 100%);
  border-color: #275ed6;
  transform: none;
  box-shadow: none !important;
}

.chat_p_body .unlockWarning {
  margin: 8px 18px 0 42px;
  color: #d14343;
  font-size: 12px;
  font-weight: 600;
}

@media screen and (max-width: 700px) {
  .chat_p_body .secretMessageBgColor {
    width: min(280px, calc(100vw - 84px));
    max-width: min(280px, calc(100vw - 84px));
    padding: 12px !important;
    border-radius: 20px !important;
  }

  .chat_p_body .secretMessageBgColor .album-details {
    min-height: 72px;
    padding: 13px 14px 13px 48px;
    border-radius: 16px;
    font-size: 13px;
  }

  .chat_p_body .secretMessageBgColor .album-details svg {
    top: 13px;
    left: 14px;
    width: 20px;
    height: 20px;
  }

  .chat_p_body .secretMessageBgColor .unLockMe {
    min-height: 40px;
    font-size: 13px;
  }

  .chat_p_body .unlockWarning {
    margin-left: 34px;
  }
}

/* Video call modal redesign */
.video_call_modal {
  padding: 24px 16px;
  overflow-y: auto;
}

.video_call_modal .video_call_modal_shell {
  width: min(500px, calc(100vw - 32px));
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.video_call_modal .video_call_modal_content {
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: none;
  overflow: visible;
}

.video_call_modal .video_call_modal_header {
  position: relative;
  justify-content: flex-start;
  padding: 18px 20px 12px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  text-align: left;
}

.video_call_modal .video_call_modal_title_wrap {
  min-width: 0;
  padding-right: 64px;
}

.video_call_modal .video_call_modal_title {
  color: #18233d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.video_call_modal .video_call_modal_close {
  position: absolute;
  right: 18px;
  top: 50%;
  padding: 10px;
  transform: translateY(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dce5f0;
  box-shadow: none;
  cursor: pointer;
}

.video_call_modal .video_call_modal_close:hover {
  background: #ffffff;
  border-color: #ccd8e7;
}

.video_call_modal .video_call_modal_close svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: #5b6781;
}

.video_call_modal .video_call_modal_body {
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, #fbfcff 0%, #f7faff 100%);
  overflow: visible;
}

.video_call_modal .call_details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.video_call_modal .caller_user_avatar {
  width: 88px;
  height: 88px;
}

.video_call_modal .caller_avatar {
  width: 88px;
  height: 88px;
  overflow: hidden;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #e6edf7;
  background: #f3f6fb;
}

.video_call_modal .caller_avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video_call_modal .caller_title {
  width: 100%;
  max-width: 340px;
  color: #18233d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.video_call_modal .caller_det {
  width: 100%;
  max-width: 340px;
  color: #5b6781;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.video_call_modal .caller_det a {
  color: #ff6a86;
}

.video_call_modal .current_point_box_video {
  width: 100%;
  max-width: 340px;
  margin-top: 2px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #53627c;
  font-size: 14px;
}

.video_call_modal .current_balance_box {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  border: 1px solid #dde6f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.video_call_modal .current_balance_box_notice {
  min-height: 0;
  padding: 11px 14px;
  border-radius: 16px;
  background: #fff7f8;
  border-color: #f2d4db;
  color: #6d788f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.video_call_modal .video_call_modal_balance_label {
  color: #53627c;
  font-size: 13px;
  font-weight: 600;
}

.video_call_modal .current_balance_box .crnblnc {
  color: #18233d;
  font-weight: 700;
  font-size: 15px;
}

.video_call_modal .current_balance_box svg {
  width: 16px;
  height: 16px;
  fill: #ff6a86;
  flex-shrink: 0;
}

.video_call_modal .current_balance_box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 13px;
  border: 1px solid #f1b3c0;
  background: transparent;
  color: #ff6a86;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.video_call_modal .current_balance_box a:hover {
  background: #ffffff;
  border-color: #eba3b4;
  color: #ff5a7c;
}

.video_call_modal .call_buttons {
  width: 100%;
  max-width: 340px;
  padding-top: 2px;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
}

.video_call_modal .call_btn_item {
  flex: 1 1 0;
}

.video_call_modal .call_buttons.call_buttons_insufficient {
  flex-direction: column;
}

.video_call_modal .call_buttons.call_buttons_insufficient .call_btn_item {
  width: 100%;
  flex: 1 1 100%;
}

.video_call_modal .call_buttons.call_buttons_insufficient .call_btn_item_btn_accept {
  width: 100%;
}

.video_call_modal .call_btn_item_btn_accept,
.video_call_modal .call_btn_item_btn_decline {
  width: 100%;
  min-height: 46px;
  padding: 11px 15px;
  border-radius: 16px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.video_call_modal .call_btn_item_btn_accept {
  color: #ffffff;
  background: linear-gradient(135deg, #ff6487 0%, #ff8aa0 100%);
  border: 0;
}

.video_call_modal .call_btn_item_btn_accept:hover {
  transform: none;
  background: linear-gradient(135deg, #ff587c 0%, #ff7d95 100%);
}

.video_call_modal .call_btn_item_btn_accept.disabled {
  background: #eef3f9;
  border: 1px solid #dde6f1;
  color: #8a97ab;
  cursor: default;
  pointer-events: none;
  font-size: 13px;
  line-height: 1.4;
}

.video_call_modal .call_btn_item_btn_decline {
  color: #53627c;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  border: 1px solid #dde6f1;
}

.video_call_modal .call_btn_item_btn_decline:hover {
  transform: none;
  background: #ffffff;
  border-color: #ccd8e7;
  color: #18233d;
}

.video_call_modal .call_btn_item_btn_accept span {
  font-size: 12px;
  font-weight: 700;
}

.video_call_modal .call_btn_item_btn_accept svg,
.video_call_modal .call_btn_item_btn_decline svg {
  width: 18px;
  height: 18px;
  margin: 0;
  fill: currentColor;
  flex-shrink: 0;
}

@media only screen and (max-width: 700px) {
  .video_call_modal {
    padding: 12px 10px;
    overflow-y: auto;
  }

  .video_call_modal .video_call_modal_shell {
    width: min(100%, calc(100vw - 24px));
    border-radius: 22px;
  }

  .video_call_modal .video_call_modal_content {
    max-height: none;
    overflow: visible;
  }

  .video_call_modal .video_call_modal_header {
    padding: 16px 16px 11px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }

  .video_call_modal .video_call_modal_title_wrap {
    padding-right: 56px;
  }

  .video_call_modal .video_call_modal_title {
    font-size: 16px;
  }

  .video_call_modal .video_call_modal_close {
    right: 12px;
    padding: 9px;
    border-radius: 14px;
  }

  .video_call_modal .video_call_modal_body {
    padding: 18px 16px 16px;
    overflow: visible;
  }

  .video_call_modal .caller_user_avatar,
  .video_call_modal .caller_avatar {
    width: 78px;
    height: 78px;
  }

  .video_call_modal .caller_title {
    font-size: 15px;
  }

  .video_call_modal .caller_det {
    font-size: 13px;
  }

  .video_call_modal .current_balance_box {
    padding: 11px 13px;
    border-radius: 18px;
  }

  .video_call_modal .call_buttons {
    flex-direction: column;
  }

  .video_call_modal .call_btn_item {
    width: 100%;
  }
}

.video_call_modal .call_declined {
  width: 100%;
  max-width: 352px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff6f7 0%, #fff0f2 100%);
  border: 1px solid #f4cbd3;
  color: #d95d75;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.video_call_modal_waiting .video_call_modal_title_wrap {
  padding-right: 0;
}

.video_call_modal_waiting .video_call_modal_shell {
  width: min(460px, calc(100vw - 32px));
}

.video_call_modal_waiting .video_call_modal_body {
  padding-top: 24px;
}

.video_call_modal_waiting .call_details {
  gap: 12px;
}

.video_call_modal_waiting .caller_title {
  max-width: 320px;
  font-size: 17px;
}

.video_call_modal_waiting .call_buttons {
  justify-content: center;
  padding-top: 6px;
}

.video_call_modal_waiting .call_btn_item {
  max-width: 240px;
  flex: 0 1 240px;
}

.video_call_modal_waiting .caller_det {
  max-width: 300px;
  font-size: 14px;
}

.video_call_modal_waiting .call_declined {
  max-width: 320px;
  margin-top: 2px;
}

.video_call_modal_incoming .video_call_modal_shell {
  width: min(460px, calc(100vw - 32px));
}

.video_call_modal_incoming .video_call_modal_body {
  padding-top: 24px;
}

.video_call_modal_incoming .call_details {
  gap: 12px;
}

.video_call_modal_incoming .caller_title {
  max-width: 320px;
  font-size: 18px;
}

.video_call_modal_incoming .caller_det {
  max-width: 300px;
  font-size: 14px;
}

.video_call_modal_incoming .call_buttons {
  max-width: 320px;
  padding-top: 8px;
}

.video_call_modal_incoming .call_btn_item {
  flex: 1 1 0;
}

@media only screen and (max-width: 700px) {
  .video_call_modal_waiting .video_call_modal_shell {
    width: min(100%, calc(100vw - 24px));
  }

  .video_call_modal_waiting .call_btn_item {
    max-width: none;
    flex-basis: auto;
  }

  .video_call_modal_incoming .video_call_modal_shell {
    width: min(100%, calc(100vw - 24px));
  }
}

/* Chat live call controls visibility fix */
.chat_p_body .live_pp_camera_container .videoCallButtons {
  padding: 16px 0 2px;
}

.chat_p_body .live_pp_camera_container .call_footer_buttons {
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.chat_p_body .live_pp_camera_container .footer_call_btn_item {
  width: auto;
  padding: 0;
  flex: 0 0 auto;
}

.chat_p_body .live_pp_camera_container .call_btn_icon,
.chat_p_body .live_pp_camera_container .call_btn_end_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  padding: 0;
  border-radius: 18px;
  box-shadow: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.chat_p_body .live_pp_camera_container .call_btn_icon {
  border: 1px solid #d8e1ee;
  background: linear-gradient(180deg, #f3f7fc 0%, #e9eef7 100%);
  color: #50607c;
}

.chat_p_body .live_pp_camera_container .call_btn_icon:hover {
  transform: none;
  border-color: #c8d4e4;
  background: #ffffff;
  color: #24324d;
}

.chat_p_body .live_pp_camera_container .call_btn_icon svg,
.chat_p_body .live_pp_camera_container .call_btn_end_icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.chat_p_body .live_pp_camera_container .call_btn_icon.activated_btn {
  border-color: #f1b39c;
  background: linear-gradient(180deg, #fff1ea 0%, #ffe4d8 100%) !important;
  color: #d26743 !important;
}

.chat_p_body .live_pp_camera_container .call_btn_end_icon {
  border: 1px solid #f3b5c1;
  background: linear-gradient(180deg, #ff8ba0 0%, #f06783 100%);
  color: #ffffff;
}

.chat_p_body .live_pp_camera_container .call_btn_end_icon:hover {
  transform: none;
  border-color: #ea9fb0;
  background: linear-gradient(180deg, #ff8299 0%, #e85e7a 100%);
  color: #ffffff;
}

@media screen and (max-width: 700px) {
  .chat_p_body .live_pp_camera_container .call_footer_buttons {
    gap: 12px;
  }

  .chat_p_body .live_pp_camera_container .call_btn_icon,
  .chat_p_body .live_pp_camera_container .call_btn_end_icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 16px;
  }
}

.chat_p_body .remote-wrapper .camera-off-panel {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.56);
  text-align: center;
  z-index: 3;
}

.chat_p_body .remote-wrapper .camera-off-panel.show {
  display: flex;
}

.chat_p_body .remote-wrapper .camera-off-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.chat_p_body .remote-wrapper .camera-off-panel-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.chat_p_body .remote-wrapper .camera-off-panel-text {
  max-width: 210px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.22);
}
.purchase_points_page {
  position: relative;
  min-height: 100vh;
  background: #f4f7fb;
}

.purchase_points_page.bCreatorBg::before {
  height: 360px;
  background: linear-gradient(180deg, #f4f7fb 0%, #eef3f8 100%);
  background-image: none;
}

.purchase_points_page .premium_plans_container.purchase_points_container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  padding: 32px 20px 56px;
}

.purchase_points_page .purchase_points_header_shell {
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.purchase_points_page .purchase_points_header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid #e5ebf3;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.96) 100%);
}

.purchase_points_page .purchase_points_header_copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  max-width: 520px;
  text-align: left;
}

.purchase_points_page .purchase_points_title {
  margin: 0;
  color: #182033;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: left;
  text-transform: none;
}

.purchase_points_page .purchase_points_subtitle {
  margin: 0;
  color: #67748d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  opacity: 1;
}

.purchase_points_page .purchase_points_helper {
  margin-top: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: #7b88a1;
  text-align: left;
}

.purchase_points_page .purchase_points_feature_row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.purchase_points_page .purchase_points_feature_pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #e8edf5;
  border-radius: 999px;
  background: #f8fbff;
  color: #51607a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.purchase_points_page .purchase_points_feature_pill::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef7f93 0%, #f2a86f 100%);
  flex: 0 0 auto;
}

.purchase_points_page .purchase_points_meta_note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 2px;
}

.purchase_points_page .purchase_points_meta_note_item {
  position: relative;
  color: #7b88a1;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.purchase_points_page .purchase_points_meta_note_item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 999px;
  background: #d6deea;
}

.purchase_points_page .purchase_points_balance_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-width: 0;
  padding: 18px 24px;
  border: 1px solid #d8e2ee;
  border-radius: 22px;
  background: #f8fbff;
  text-align: left;
}

.purchase_points_page .purchase_points_balance_label {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b88a1;
}

.purchase_points_page .purchase_points_balance_value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
}

.purchase_points_page .purchase_points_balance_amount {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #182033;
}

.purchase_points_page .purchase_points_balance_icon svg {
  width: 18px;
  height: 18px;
  fill: #f65169;
}

.purchase_points_page .purchase_points_balance_money {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #64748b;
}

.purchase_points_page .buyCreditWrapper.purchase_points_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.purchase_points_page .credit_plan_box.purchase_points_plan {
  width: auto;
  flex: initial;
  padding: 0;
  float: none;
}

.purchase_points_page .plan_box.purchase_points_card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 26px 22px 22px;
  border: 1px solid #e5ebf3;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.purchase_points_page .plan_box.purchase_points_card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #f3a7b4 0%, #f6bf8d 100%);
}

.purchase_points_page .purchase_points_featured_badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #f2d8de;
  border-radius: 999px;
  background: #fff6f8;
  color: #d85a72;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purchase_points_page .buyPoint .plan_box.purchase_points_card:hover {
  transform: translateY(-1px);
  border-color: #ead7dc;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.purchase_points_page .plan_name.purchase_points_plan_name {
  align-items: center;
  margin-bottom: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #8b97ac;
}

.purchase_points_page .plan_name.purchase_points_plan_name::after {
  width: 34px;
  height: 3px;
  margin: 9px auto 0;
  background: #f65169;
}

.purchase_points_page .plan_value.purchase_points_plan_value {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.purchase_points_page .plan_price.purchase_points_plan_price {
  justify-content: center;
  text-align: center;
  font-size: 50px;
  line-height: 1;
  color: #182033;
}

.purchase_points_page .purchase_points_plan_price_inner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.purchase_points_page .plan_point_icon.purchase_points_plan_icon {
  position: static;
  margin: 0;
  opacity: 1;
}

.purchase_points_page .plan_point_icon.purchase_points_plan_icon svg {
  width: 17px;
  height: 17px;
  fill: #f2a0ae;
}

.purchase_points_page .plan_point.purchase_points_plan_unit {
  justify-content: center;
  margin-top: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #7b88a1;
}

.purchase_points_page .purchaseButton.purchase_points_action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: auto 0 0;
  width: 100%;
  min-height: 84px;
  padding: 16px 20px;
  border: 1px solid #f07287;
  border-radius: 18px;
  background: linear-gradient(135deg, #ef7f93 0%, #f2a86f 100%);
  box-shadow: 0 10px 20px rgba(239, 127, 147, 0.14);
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  color: #ffffff;
}

.purchase_points_page .purchase_points_action_cta {
  display: block;
  max-width: 210px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
}

.purchase_points_page .purchase_points_action_label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
}

.purchase_points_page .purchaseButton_wrap.purchase_points_action_points {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.purchase_points_page .purchase_points_action_points .prcsic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.purchase_points_page .purchase_points_action_points .prcsic svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

.purchase_points_page .foramount.purchase_points_action_note {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.purchase_points_page .buyPoint .plan_box.purchase_points_card:hover .purchaseButton.purchase_points_action {
  border-color: #e98a9b;
  background: linear-gradient(135deg, #ea768b 0%, #eea265 100%);
  box-shadow: 0 14px 24px rgba(239, 127, 147, 0.18);
}

.purchase_points_page .general_page_footer {
  padding-top: 28px;
  color: #7b88a1;
}

.purchase_point_payment_modal .i_sf_box {
  width: min(760px, calc(100vw - 32px));
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.16);
}

.purchase_point_payment_modal .i_modal_content {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.purchase_product_payment_modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
}

.purchase_product_payment_modal .purchase_product_payment_modal_shell {
  width: min(560px, calc(100vw - 24px));
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 26px 72px rgba(15, 23, 42, 0.2);
  overflow: hidden;
}

.purchase_product_payment_modal .purchase_product_payment_modal_content {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.purchase_product_payment_modal .purchase_product_payment_modal_header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 20px 24px 16px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f3f6fb 100%);
  border-bottom: 1px solid #e7edf6;
  color: #18233d;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.purchase_product_payment_modal .purchase_product_payment_modal_body {
  padding: 18px 20px 20px;
  background: #f8fafc;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.purchase_product_payment_modal .payment_method_box.purchase_product_method_box {
  width: 100%;
  margin: 0;
  min-height: auto;
  padding: 0;
  border-radius: 18px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.purchase_product_payment_modal .payment_method_box.purchase_product_method_box:hover {
  background: transparent;
}

.purchase_product_payment_modal .purchase_product_method_item {
  width: 100%;
  min-height: 68px;
  justify-content: center;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #d9e2ee;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  box-shadow: none;
}

.purchase_product_payment_modal .purchase_product_method_label {
  color: #1f2b45;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.purchase_product_payment_modal .purchase_product_payment_modal_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 20px 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-top: 1px solid #e8eef7;
}

.purchase_product_payment_modal .purchase_product_payment_modal_cancel {
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 16px;
  background: #8b96b7;
  border: 1px solid #7f89a9;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
  text-align: center;
}

.purchase_product_payment_modal .purchase_product_payment_modal_cancel:hover {
  background: #7f89a9;
  border-color: #75809f;
}

@media only screen and (max-width: 640px) {
  .purchase_product_payment_modal {
    align-items: flex-start;
    padding: 12px 10px;
  }

  .purchase_product_payment_modal .purchase_product_payment_modal_shell {
    width: min(100%, calc(100vw - 20px));
    border-radius: 24px;
  }

  .purchase_product_payment_modal .purchase_product_payment_modal_header {
    min-height: 70px;
    padding: 18px 18px 14px;
    font-size: 17px;
  }

  .purchase_product_payment_modal .purchase_product_payment_modal_body {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 16px 16px 16px;
  }

  .purchase_product_payment_modal .payment_method_box.purchase_product_method_box,
  .purchase_product_payment_modal .purchase_product_method_item {
    min-height: 62px;
  }

  .purchase_product_payment_modal .purchase_product_method_label {
    font-size: 15px;
  }

  .purchase_product_payment_modal .purchase_product_payment_modal_footer {
    padding: 14px 16px 16px;
  }

  .purchase_product_payment_modal .purchase_product_payment_modal_cancel {
    width: 100%;
    min-height: 44px;
    border-radius: 14px;
  }
}

.purchase_point_payment_modal .purchase_premium_header.purchase_point_modal_header,
.purchase_point_payment_modal .purchase_premium_header.purchase_point_bank_header {
  padding: 24px;
  background: linear-gradient(180deg, #f6f9fe 0%, #f2f6fc 100%);
  border-bottom: 1px solid #e7edf6;
}

.purchase_point_payment_modal .purchase_point_modal_header_copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: center;
}

.purchase_point_payment_modal .purchase_point_modal_title,
.purchase_point_payment_modal .purchase_point_bank_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #182033;
}

.purchase_point_payment_modal .purchase_point_modal_summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #67748d;
}

.purchase_point_payment_modal .purchase_point_modal_summary_points {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f65169;
}

.purchase_point_payment_modal .purchase_point_modal_summary_icon svg {
  width: 14px;
  height: 14px;
  fill: #f65169;
}

.purchase_point_payment_modal .purchase_post_details {
  padding: 20px 20px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.purchase_point_payment_modal .tax_notice {
  margin-bottom: 12px;
  padding: 12px 14px;
  border: 1px solid #dde6f3;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: #63728d;
  font-size: 13px;
  line-height: 1.5;
}

.purchase_point_payment_modal .purchase_point_method_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.purchase_point_payment_modal .payment_method_box.purchase_point_method_box {
  width: 100%;
  padding: 0;
}

.purchase_point_payment_modal .payment_method_box.purchase_point_method_box:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.purchase_point_payment_modal .payment_method_box.purchase_point_method_box:hover {
  transform: none;
  box-shadow: none;
}

.purchase_point_payment_modal .payment_method_item.purchase_point_method_item {
  min-height: 72px;
  padding: 18px;
  border: 1px solid #dde6f3;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  align-items: center;
  justify-content: center;
}

.purchase_point_payment_modal .payment_method_item.purchase_point_method_item:hover {
  border-color: #c8d6ea;
  background: #ffffff;
}

.purchase_point_payment_modal .purchase_point_method_brand {
  display: none;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.purchase_point_payment_modal .purchase_point_method_brand.bankaccount {
  width: 32px;
  height: 26px;
}

.purchase_point_payment_modal .purchase_point_method_label {
  min-width: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #182033;
}

.purchase_point_payment_modal .i_modal_g_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 20px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.purchase_point_payment_modal .alertBtnLeft.no-del {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  min-width: 132px;
  min-height: 48px;
  border-radius: 16px;
  box-shadow: none;
}

.purchase_point_payment_modal .purchase_point_bank_container {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.purchase_point_payment_modal .purchase_not_.purchase_point_bank_note,
.purchase_point_payment_modal .purchase_not_.purchase_point_bank_wait_note {
  padding: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}

.purchase_point_payment_modal .purchase_point_bank_note {
  margin-bottom: 12px;
}

.purchase_point_payment_modal .purchase_sw_details.purchase_point_bank_details {
  padding: 20px 22px;
  border: 1px solid #dde6f3;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  text-align: left;
  color: #182033;
  font-size: 15px;
  line-height: 1.8;
}

.purchase_point_payment_modal .purchase_point_bank_upload {
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  background: #ffffff;
}

.purchase_point_payment_modal .purchase_point_bank_upload_box label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff2f5 0%, #ffecef 100%);
  color: #f65169;
  font-weight: 700;
}

.purchase_point_payment_modal .purchase_point_bank_upload_box svg {
  width: 18px;
  height: 18px;
  fill: #f65169;
}

.purchase_point_payment_modal .purchase_point_bank_upload_note {
  margin-top: 12px;
  font-size: 13px;
  color: #7b88a1;
}

.purchase_point_payment_modal .purchase_point_bank_wait_note {
  margin-top: 16px;
}

.purchase_point_payment_modal .payment_success_bank {
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #182033;
  background: rgba(255, 255, 255, 0.96);
}

.purchase_point_payment_modal .point_purchase_not.purchase_point_card_notice {
  margin-top: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff5f6 0%, #fff0f2 100%);
  color: #7a3140;
  font-size: 14px;
  font-weight: 700;
}

.purchase_point_payment_modal .point_purchase_not.purchase_point_card_notice svg {
  width: 18px;
  height: 18px;
  fill: #f65169;
}

.purchase_point_payment_modal .i_payment_pop_box {
  width: min(540px, calc(100vw - 32px));
  padding: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.purchase_point_payment_modal .i_credit_card_form {
  margin: 0;
  padding: 20px;
  background: transparent;
}

.purchase_point_payment_modal #paymentResponse {
  justify-content: flex-start;
  margin-bottom: 12px;
  padding: 13px 14px;
  border: 1px solid #f6cbd2;
  border-radius: 14px;
  background: #fff4f5;
  color: #b42318;
  line-height: 1.5;
}

.purchase_point_payment_modal .pay_form_group,
.purchase_point_payment_modal .pay_form_group_plus {
  padding: 8px 0;
}

.purchase_point_payment_modal .pay_form_group > label,
.purchase_point_payment_modal .pay_form_group_plus .i_form_group_plus_extra > label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6a7893;
}

.purchase_point_payment_modal .form-control,
.purchase_point_payment_modal .i_form_group_plus_extra .form-control {
  position: relative;
}

.purchase_point_payment_modal .pay_form_group .form-control input,
.purchase_point_payment_modal .pay_form_group_plus .i_form_group_plus_extra .form-control input {
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid #dde6f3;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.purchase_point_payment_modal .form_control_icon {
  padding: 18px 16px;
}

.purchase_point_payment_modal .form_control_icon svg {
  width: 18px;
  height: 18px;
  fill: #7c8aa8;
}

.purchase_point_payment_modal .pay_subscription.point_purchase {
  min-height: 50px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #f65169;
  background: linear-gradient(135deg, #f65169 0%, #ff7a59 55%, #fab429 100%);
  box-shadow: 0 10px 22px rgba(246, 81, 105, 0.18);
}

.purchase_point_payment_modal .pay_subscription.point_purchase:hover {
  border-color: #ef4c64;
  background: linear-gradient(135deg, #ef4c64 0%, #ff744d 55%, #f59e0b 100%);
  box-shadow: 0 14px 26px rgba(246, 81, 105, 0.22);
}

.purchase_point_payment_modal .i_pay_note {
  padding: 14px 16px;
  border-radius: 16px;
  background: #5d6b87;
}

.purchase_point_payment_modal.purchase_point_payment_modal_hidden {
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 980px) {
  .purchase_points_page .buyCreditWrapper.purchase_points_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 760px) {
  .purchase_points_page .premium_plans_container.purchase_points_container {
    padding: 20px 14px 40px;
  }

  .purchase_points_page .purchase_points_header {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .purchase_points_page .purchase_points_header_copy {
    max-width: none;
  }

  .purchase_points_page .purchase_points_feature_row,
  .purchase_points_page .purchase_points_meta_note {
    width: 100%;
  }

  .purchase_points_page .purchase_points_balance_card {
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .purchase_points_page .purchase_points_balance_value {
    justify-content: flex-start;
    margin-left: 0;
  }

  .purchase_points_page .buyCreditWrapper.purchase_points_grid,
  .purchase_point_payment_modal .purchase_point_method_grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .purchase_point_payment_modal .i_sf_box,
  .purchase_point_payment_modal .i_payment_pop_box {
    width: calc(100vw - 20px);
  }

  .purchase_point_payment_modal .purchase_premium_header.purchase_point_modal_header,
  .purchase_point_payment_modal .purchase_premium_header.purchase_point_bank_header,
  .purchase_point_payment_modal .purchase_post_details,
  .purchase_point_payment_modal .i_modal_g_footer,
  .purchase_point_payment_modal .i_credit_card_form {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.communities_leaderboard {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 28px;
  padding: 0 20px;
  box-sizing: border-box;
}
.communities_leaderboard_link_only {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 28px;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
}
.communities_leaderboard_shell {
  padding: 22px;
  border-radius: 30px;
  border: 1px solid #d8e2f1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 255, 0.98) 100%);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
}
.communities_leaderboard_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.communities_leaderboard_header_actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.communities_leaderboard_note {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: #6f7e95;
  max-width: 560px;
}
.community_leaderboard_page_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #d7e1ef;
  background: rgba(255, 255, 255, 0.92);
  color: #182235;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.community_leaderboard_page_link:hover {
  border-color: #bfcee2;
  background: #f3f7fc;
  color: #101827;
  transform: translateY(-1px);
}
.communities_leaderboard_tabs {
  justify-content: flex-end;
}
.communities_leaderboard_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: flex-start;
  gap: 16px;
}
.communities_leaderboard_grid.is-hidden {
  display: none;
}
.community_leaderboard_card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 208px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid #dde6f3;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.community_leaderboard_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.1);
  border-color: #c8d7ea;
}
.community_leaderboard_rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: auto;
  padding: 7px 12px;
  border-radius: 14px;
  border: 1px solid #dbe4f1;
  background: rgba(255, 255, 255, 0.92);
  color: #182235;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.community_leaderboard_head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.community_leaderboard_avatar {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  overflow: hidden;
  background: #eef4fb;
  border: 1px solid #dbe5f2;
  flex-shrink: 0;
}
.community_leaderboard_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.community_leaderboard_identity {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.community_leaderboard_name {
  font-size: 18px;
  line-height: 1.24;
  font-weight: 800;
  color: #132033;
  word-break: break-word;
}
.community_leaderboard_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.community_leaderboard_tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf4ff;
  color: #2558c9;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.community_leaderboard_tag_muted {
  background: #f5f7fb;
  color: #71809a;
}
.community_leaderboard_stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}
.community_leaderboard_stat {
  padding: 12px 10px;
  border-radius: 18px;
  border: 1px solid #e1e8f3;
  background: rgba(255, 255, 255, 0.86);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}
.community_leaderboard_stat strong {
  font-size: 18px;
  line-height: 1.05;
  color: #132033;
  font-variant-numeric: tabular-nums;
}
.community_leaderboard_stat span {
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #6f7d95;
  font-weight: 700;
  line-height: 1.3;
}
.community_admin_composer {
  padding: 16px 18px 18px;
  border: 1px solid #dbe4f1;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.98) 100%);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.07);
}
.community_admin_composer .i_post_form {
  align-items: flex-start;
  gap: 12px;
  padding: 6px 8px;
  border-radius: 18px;
}
.community_admin_composer .i_post_creator_avatar {
  flex: 0 0 auto;
  padding-top: 6px;
}
.community_admin_composer .i_post_form_textarea {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-width: 0;
  position: relative;
}
.community_admin_composer .js-rich-text-source,
.i_more_text_wrapper .js-rich-text-source {
  display: none;
}
.community_rich_text_editor {
  width: 100%;
  min-height: 46px;
  max-height: 220px;
  overflow: auto;
  padding: 10px 88px 10px 14px;
  border-radius: 18px;
  border: none;
  background: transparent;
  color: #172033;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  white-space: pre-wrap;
  word-break: break-word;
}
.community_rich_text_editor:focus,
.community_rich_text_editor:not(:empty) {
  min-height: 88px;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.55;
}
.community_rich_text_editor:empty:before {
  content: attr(data-placeholder);
  color: #98a2b3;
}
.community_rich_text_editor p {
  margin: 0 0 10px;
}
.community_rich_text_editor p:last-child {
  margin-bottom: 0;
}
.community_rich_text_editor ul,
.community_rich_text_editor ol {
  margin: 0 0 10px 18px;
  padding: 0;
}
.community_rich_text_editor li {
  margin: 0 0 4px;
}
.community_admin_composer .i_post_form_textarea textarea {
  min-height: 88px;
  max-height: 160px;
  height: 88px;
  padding: 12px 14px;
}
.community_admin_composer .ccounter {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 2;
  min-width: 58px;
  padding: 8px 10px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 10px 20px rgba(255, 90, 118, 0.18);
}
.community_admin_rich_toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  padding: 8px;
  border-radius: 999px;
  background: rgba(12, 18, 31, 0.96);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.community_admin_rich_toolbar.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.community_admin_rich_toolbar .i_nex_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 40px;
  min-height: 36px;
  padding: 0;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
}
.community_admin_rich_toolbar .i_nex_btn[data-rich-action="ordered_list"] {
  width: 46px;
}
.community_admin_rich_toolbar .community_rich_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: inherit;
  line-height: 1;
}
.community_admin_rich_toolbar .community_rich_icon_bold {
  font-size: 16px;
  font-weight: 900;
}
.community_admin_rich_toolbar .community_rich_icon_italic {
  font-size: 16px;
  font-style: italic;
  font-family: Georgia, serif;
}
.community_admin_rich_toolbar .community_rich_icon_paragraph {
  font-size: 18px;
  font-weight: 700;
}
.community_admin_rich_toolbar .community_rich_icon_unordered {
  font-size: 18px;
}
.community_admin_rich_toolbar .community_rich_icon_ordered {
  font-size: 14px;
  font-weight: 800;
}
.community_admin_rich_toolbar .community_rich_icon_break {
  font-size: 17px;
  font-weight: 700;
}
.community_admin_rich_toolbar .i_nex_btn:hover {
  background: linear-gradient(135deg, #2454f3 0%, #258ef0 100%);
  color: #ffffff;
  transform: none;
}
.communities_hero_leaderboard {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e1e8f3;
}
.communities_hero_leaderboard_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  min-width: 0;
  flex: 1 1 auto;
}
.communities_hero_leaderboard_item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  background: rgba(244, 247, 255, 0.95);
  border: 1px solid rgba(209, 220, 242, 0.9);
}
.communities_hero_leaderboard_avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  overflow: hidden;
  background: #eef4fb;
  border: 2px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.1);
  flex-shrink: 0;
}
.communities_hero_leaderboard_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.communities_hero_leaderboard_name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #182235;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.communities_hero_leaderboard .community_leaderboard_page_link_hero {
  background: linear-gradient(135deg, #2454f3 0%, #258ef0 100%);
  border-color: rgba(35, 84, 243, 0.24);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
  flex-shrink: 0;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  min-height: 38px;
  white-space: nowrap;
}
.communities_hero_leaderboard .community_leaderboard_page_link_hero:hover {
  background: linear-gradient(135deg, #214de0 0%, #227fe0 100%);
  border-color: rgba(33, 77, 224, 0.28);
  color: #ffffff;
}
@media (max-width: 768px) {
  .communities_leaderboard {
    padding: 0 16px;
  }
  .communities_leaderboard_link_only {
    padding: 0 16px;
    justify-content: flex-start;
  }
  .communities_leaderboard_shell {
    padding: 18px;
  }
  .communities_leaderboard_header {
    flex-direction: column;
    align-items: flex-start;
  }
  .communities_leaderboard_header_actions {
    align-items: flex-start;
    width: 100%;
  }
  .communities_leaderboard_tabs {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
  }
  .communities_hero_leaderboard {
    flex-direction: column;
    align-items: stretch;
  }
  .communities_hero_leaderboard_list {
    gap: 10px;
  }
  .communities_hero_leaderboard .community_leaderboard_page_link_hero {
    width: 100%;
    justify-content: center;
  }
  .community_admin_rich_toolbar {
    gap: 8px;
  }
}
@media (max-width: 540px) {
  .community_leaderboard_stats {
    grid-template-columns: 1fr;
  }
  .community_admin_composer .i_post_form {
    flex-direction: column;
  }
  .community_admin_composer .i_post_creator_avatar {
    padding-top: 0;
  }
  .community_rich_text_editor {
    min-height: 44px;
    padding: 9px 74px 9px 12px;
  }
  .community_rich_text_editor:focus,
  .community_rich_text_editor:not(:empty) {
    min-height: 76px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .community_admin_composer .ccounter {
    top: 7px;
    right: 10px;
    min-width: 52px;
    padding: 7px 9px;
  }
  .community_admin_rich_toolbar {
    gap: 6px;
    padding: 7px;
  }
  .community_admin_rich_toolbar .i_nex_btn {
    width: 38px;
    min-height: 34px;
  }
  .community_admin_rich_toolbar .i_nex_btn[data-rich-action="ordered_list"] {
    width: 42px;
  }
}
.blog-detail-page .blog-comments-section {
  margin-top: 24px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid #d8e1ef;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-detail-page .blog-comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-detail-page .blog-comments-header h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  color: #152035;
  letter-spacing: -0.02em;
}
.blog-detail-page .blog-comments-count {
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5d8bff, #4361ee);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(67, 97, 238, 0.18);
}
.blog-detail-page .blog-comments-state {
  display: none;
  font-size: 14px;
  border-radius: 16px;
  padding: 12px 14px;
}
.blog-detail-page .blog-comments-state.is-success {
  display: block;
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.blog-detail-page .blog-comments-state.is-error {
  display: block;
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
}
.blog-detail-page .blog-comment-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border: 1px solid #d8e1ef;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.blog-detail-page .blog-comment-input {
  width: 100%;
  min-height: 132px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.78;
  resize: vertical;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.blog-detail-page .blog-comment-input:focus {
  border-color: transparent;
  box-shadow: none;
}
.blog-detail-page .blog-comment-actions {
  display: flex;
  justify-content: flex-end;
}
.blog-detail-page .blog-comment-submit,
.blog-detail-page .blog-comment-login-btn {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #5d8bff, #4361ee);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
  box-shadow: 0 14px 28px rgba(67, 97, 238, 0.16);
  text-decoration: none;
}
.blog-detail-page .blog-comment-submit:hover,
.blog-detail-page .blog-comment-login-btn:hover {
  transform: translateY(-1px);
}
.blog-detail-page .blog-comment-submit:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.blog-detail-page .blog-comment-login-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px dashed #d8e1ef;
  background: #f8fbff;
}
.blog-detail-page .blog-comment-login-note,
.blog-detail-page .blog-comments-disabled,
.blog-detail-page .blog-comments-unavailable,
.blog-detail-page .blog-comments-empty {
  font-size: 14px;
  line-height: 1.7;
  color: #667085;
}
.blog-detail-page .blog-comments-disabled,
.blog-detail-page .blog-comments-unavailable,
.blog-detail-page .blog-comments-empty {
  padding: 18px 20px;
  border: 1px dashed #d8e1ef;
  border-radius: 20px;
  background: #f8fbff;
}
.blog-detail-page .blog-comments-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.blog-detail-page .blog-comment-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid #e3ebf6;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: none;
}
.blog-detail-page .blog-comment-avatar {
  display: block;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #e5e7eb;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}
.blog-detail-page .blog-comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-detail-page .blog-comment-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog-detail-page .blog-comment-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-detail-page .blog-comment-author {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  color: #152035;
  text-decoration: none;
}
.blog-detail-page .blog-comment-author-name {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}
.blog-detail-page .blog-comment-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-detail-page .blog-comment-time {
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
}
.blog-detail-page .blog-comment-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #fecdd3;
  background: #fff1f2;
  color: #e11d48;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.blog-detail-page .blog-comment-delete:hover {
  background: #ffe4e6;
  border-color: #fda4af;
  transform: translateY(-1px);
  text-decoration: none;
}
.blog-detail-page .blog-comment-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
}
.blog-detail-page .blog-comment-verified svg,
.blog-detail-page .blog-comment-verified svg * {
  width: 15px;
  height: 15px;
  fill: currentColor !important;
  stroke: currentColor !important;
}
.blog-detail-page .blog-comment-content {
  color: #1f2937;
  font-size: 16px;
  line-height: 1.82;
}
.blog-detail-page .blog-comment-content.rich-content {
  margin-top: 0;
}
.blog-detail-page .blog-comment-content p {
  margin: 0 0 12px;
}
.blog-detail-page .blog-comment-content p:last-child {
  margin-bottom: 0;
}
.blog-comment-confirm-modal .blog-comment-confirm-modal_shell {
  max-width: 430px;
}
.blog-comment-confirm-modal .blog-comment-confirm-modal_content {
  padding: 24px 24px 22px;
}
.blog-comment-confirm-modal .blog-comment-confirm-modal_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-comment-confirm-modal .blog-comment-confirm-modal_title {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  color: #152035;
}
.blog-comment-confirm-modal .blog-comment-confirm-modal_close {
  border: none;
  background: transparent;
  color: #71839f;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.blog-comment-confirm-modal .blog-comment-confirm-modal_body {
  font-size: 15px;
  line-height: 1.7;
  color: #607089;
}
.blog-comment-confirm-modal .blog-comment-confirm-modal_actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}
.blog-comment-confirm-modal .blog-comment-confirm-modal_btn {
  border: none;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.blog-comment-confirm-modal .blog-comment-confirm-modal_btn.is-cancel {
  background: #edf3ff;
  color: #35507f;
}
.blog-comment-confirm-modal .blog-comment-confirm-modal_btn.is-confirm {
  background: linear-gradient(135deg, #5d8bff, #4361ee);
  color: #ffffff;
}
.blog-comment-confirm-modal .blog-comment-confirm-modal_btn:hover {
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .blog-detail-page .blog-comments-section {
    padding: 18px;
    border-radius: 22px;
  }

  .blog-detail-page .blog-comment-form {
    padding: 14px;
    border-radius: 20px;
  }

  .blog-detail-page .blog-comment-login-box {
    align-items: flex-start;
    padding: 16px;
  }

  .blog-detail-page .blog-comments-disabled,
  .blog-detail-page .blog-comments-unavailable,
  .blog-detail-page .blog-comments-empty {
    padding: 16px;
  }

  .blog-detail-page .blog-comment-item {
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .blog-detail-page .blog-comment-avatar {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .blog-detail-page .blog-comment-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-detail-page .blog-comment-author-name {
    font-size: 16px;
  }

  .blog-detail-page .blog-comment-content {
    font-size: 15px;
  }
}
.blog-index-page .blog-filter-row{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-top:16px;}
.blog-index-page .blog-category-row{margin-top:22px;}
.blog-index-page .blog-filter-chip,.blog-index-page .blog-tag-chip,.blog-detail-page .blog-tag-chip,.blog-detail-page .blog-taxonomy-chip,.blog-index-page .blog-active-filter,.blog-index-page .blog-card-category{display:inline-flex;align-items:center;gap:8px;min-height:38px;padding:0 14px;border-radius:999px;border:1px solid #dbe3f0;background:#fff;color:#334155;font-size:13px;font-weight:700;line-height:1;text-decoration:none;transition:all .2s ease;}
.blog-index-page .blog-filter-chip em{font-style:normal;font-size:11px;color:#64748b;}
.blog-index-page .blog-filter-chip:hover,.blog-index-page .blog-tag-chip:hover,.blog-detail-page .blog-tag-chip:hover,.blog-detail-page .blog-taxonomy-chip:hover,.blog-index-page .blog-active-filter:hover,.blog-index-page .blog-card-category:hover{border-color:#94a3b8;color:#0f172a;transform:translateY(-1px);}
.blog-index-page .blog-filter-chip.is-active,.blog-index-page .blog-tag-chip.is-active{background:#111827;border-color:#111827;color:#fff;box-shadow:0 12px 24px rgba(15,23,42,0.14);}
.blog-index-page .blog-active-filters{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-top:12px;}
.blog-index-page .blog-active-filter{background:#eff6ff;border-color:#bfdbfe;color:#1d4ed8;}
.blog-index-page .blog-list-meta{display:flex;flex-wrap:wrap;gap:10px;align-items:center;}
.blog-index-page .blog-card-category{background:#f8fafc;border-color:#e2e8f0;color:#0f172a;padding:0 12px;min-height:32px;font-size:12px;}
.blog-detail-page .blog-taxonomy-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px;}
.blog-detail-page .blog-taxonomy-category{background:#111827;border-color:#111827;color:#fff;}
.blog-detail-page .blog-taxonomy-tag,.blog-detail-page .blog-tag-chip{background:#fff;border-color:#dbe3f0;color:#334155;}
.blog-detail-page .blog-aside-tags{display:flex;flex-wrap:wrap;gap:10px;}
@media (max-width:768px){.blog-index-page .blog-filter-row{justify-content:flex-start;}.blog-index-page .blog-active-filters{justify-content:flex-start;}.blog-detail-page .blog-taxonomy-row{margin-top:10px;}}
.home-blog-spotlight_mytheme{margin:24px 0 28px;padding:26px;border:none;border-radius:30px;background:radial-gradient(circle at top right,rgba(90,132,255,.16),transparent 32%),linear-gradient(135deg,#ffffff 0%,#f7faff 100%);box-shadow:none;overflow:hidden;}
.home-blog-spotlight_mytheme .home-blog-spotlight__header{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:22px;}
.home-blog-spotlight_mytheme .home-blog-spotlight__copy{display:flex;flex-direction:column;gap:8px;max-width:720px;}
.home-blog-spotlight_mytheme .home-blog-spotlight__eyebrow{display:inline-flex;align-self:flex-start;min-height:32px;padding:0 13px;border-radius:999px;background:#ffffff;border:1px solid #d9e3f5;color:#4f5d7a;font-size:11px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;align-items:center;}
.home-blog-spotlight_mytheme .home-blog-spotlight__copy h3{margin:0;font-size:30px;line-height:1.08;font-weight:800;color:#172033;}
.home-blog-spotlight_mytheme .home-blog-spotlight__copy p{margin:0;color:#66758f;font-size:14px;line-height:1.7;}
.home-blog-spotlight_mytheme .home-blog-spotlight__cta{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 20px;border-radius:999px;background:linear-gradient(135deg,#4f82ff 0%,#345fe7 100%);border:1px solid #4f82ff;color:#ffffff;font-size:13px;font-weight:800;letter-spacing:.03em;text-decoration:none;white-space:nowrap;box-shadow:0 14px 32px rgba(79,130,255,.26);transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;}
.home-blog-spotlight_mytheme .home-blog-spotlight__cta:hover{transform:translateY(-1px);box-shadow:0 18px 36px rgba(79,130,255,.3);filter:saturate(1.05);color:#ffffff;}
.home-blog-spotlight_mytheme .home-blog-spotlight__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:18px;}
.home-blog-spotlight_mytheme .home-blog-card{display:flex;flex-direction:column;min-width:0;border:1px solid #dfe7f4;border-radius:26px;background:rgba(255,255,255,.88);backdrop-filter:blur(8px);overflow:hidden;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;}
.home-blog-spotlight_mytheme .home-blog-card:hover{transform:translateY(-3px);border-color:#c8d5ee;box-shadow:0 18px 38px rgba(59,81,133,.12);}
.home-blog-spotlight_mytheme .home-blog-card__media{display:block;aspect-ratio:1.55/1;background:#eef3fb;overflow:hidden;}
.home-blog-spotlight_mytheme .home-blog-card__media img{width:100%;height:100%;object-fit:cover;display:block;}
.home-blog-spotlight_mytheme .home-blog-card__body{display:flex;flex-direction:column;gap:12px;padding:18px 18px 16px;}
.home-blog-spotlight_mytheme .home-blog-card__meta{display:flex;flex-wrap:wrap;align-items:center;gap:10px;}
.home-blog-spotlight_mytheme .home-blog-card__chip{display:inline-flex;align-items:center;min-height:28px;padding:0 10px;border-radius:999px;background:#edf4ff;border:1px solid #d5e4ff;color:#3558a8;font-size:11px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;}
.home-blog-spotlight_mytheme .home-blog-card__date{font-size:12px;font-weight:600;color:#71839f;}
.home-blog-spotlight_mytheme .home-blog-card h4{margin:0;font-size:20px;line-height:1.28;font-weight:800;color:#172033;}
.home-blog-spotlight_mytheme .home-blog-card h4 a{color:inherit;text-decoration:none;}
.home-blog-spotlight_mytheme .home-blog-card h4 a:hover{text-decoration:underline;}
.home-blog-spotlight_mytheme .home-blog-card p{margin:0;color:#6d7d97;font-size:14px;line-height:1.72;}
.home-blog-spotlight_mytheme .home-blog-card__author{display:flex;align-items:center;gap:10px;margin-top:auto;padding-top:4px;color:#172033;font-size:13px;font-weight:700;}
.home-blog-spotlight_mytheme .home-blog-card__author img{width:32px;height:32px;border-radius:50%;object-fit:cover;display:block;border:2px solid rgba(255,255,255,.7);}
.home-blog-spotlight_mytheme.home-blog-spotlight_sidebar{margin:18px 0 22px;padding:18px;border-radius:24px;}
.home-blog-spotlight_mytheme.home-blog-spotlight_sidebar .home-blog-spotlight__header{align-items:flex-start;justify-content:flex-start;gap:12px;margin-bottom:16px;}
.home-blog-spotlight_mytheme.home-blog-spotlight_sidebar .home-blog-spotlight__copy{display:flex;flex-direction:column;align-items:flex-start;gap:10px;max-width:none;}
.home-blog-spotlight_mytheme.home-blog-spotlight_sidebar .home-blog-spotlight__cta{min-height:34px;padding:0 12px;font-size:11px;box-shadow:none;}
.home-blog-spotlight_mytheme.home-blog-spotlight_sidebar .home-blog-spotlight__grid{grid-template-columns:1fr;gap:14px;}
.home-blog-spotlight_mytheme.home-blog-spotlight_sidebar .home-blog-card{border-radius:22px;}
.home-blog-spotlight_mytheme.home-blog-spotlight_sidebar .home-blog-card__media{aspect-ratio:1.42/1;}
.home-blog-spotlight_mytheme.home-blog-spotlight_sidebar .home-blog-card__body{gap:10px;padding:15px 15px 14px;}
.home-blog-spotlight_mytheme.home-blog-spotlight_sidebar .home-blog-card h4{font-size:18px;line-height:1.3;}
.home-blog-spotlight_mytheme.home-blog-spotlight_sidebar .home-blog-card p{font-size:13px;line-height:1.62;}
.home-blog-spotlight_mytheme .home-blog-spotlight__cta_sidebar{display:flex;width:100%;margin-top:14px;padding-left:16px;padding-right:16px;}
.home-blog-spotlight_mytheme .home-blog-spotlight__cta_sidebar .home-blog-spotlight__cta_icon{display:inline-flex;align-items:center;justify-content:center;margin-left:auto;}
.home-blog-spotlight_mytheme .home-blog-spotlight__cta_sidebar .home-blog-spotlight__cta_icon svg{width:16px;height:16px;display:block;}
.home-blog-spotlight_mytheme .home-blog-spotlight__cta_sidebar .home-blog-spotlight__cta_icon svg,
.home-blog-spotlight_mytheme .home-blog-spotlight__cta_sidebar .home-blog-spotlight__cta_icon svg *{fill:#ffffff !important;stroke:#ffffff !important;}
@media (max-width:768px){.home-blog-spotlight_mytheme{padding:18px;border-radius:24px;}.home-blog-spotlight_mytheme .home-blog-spotlight__header{flex-direction:column;align-items:flex-start;}.home-blog-spotlight_mytheme .home-blog-spotlight__copy h3{font-size:24px;}.home-blog-spotlight_mytheme .home-blog-spotlight__grid{grid-template-columns:1fr;}}

/* Guest dashboard refinement */
.wrapper.NotLoginYet {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 16px 0;
  box-sizing: border-box;
  gap: 30px;
  align-items: flex-start;
}

.wrapper.NotLoginYet .pageMiddle {
  max-width: 860px;
  padding-top: 0;
}

.wrapper.NotLoginYet .rightSticky {
  flex: 0 0 460px;
  max-width: 460px;
}

.wrapper.NotLoginYet .rightSticky .leftSidebarWrapper {
  padding: 18px 20px 20px;
}

.wrapper.NotLoginYet .rightSticky .btest > :first-child .i_become_creator_wrapper,
.wrapper.NotLoginYet .rightSticky .btest > .i_become_creator_wrapper:first-child {
  margin-top: 0;
}

.wrapper.NotLoginYet .pageMiddle > .sp_wrp:first-of-type {
  margin-top: 18px;
}

.i_welcomebox_guest {
  padding: 0;
  border: 1px solid #e3e9f4;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(246, 81, 105, 0.12), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 20px 48px rgba(82, 92, 122, 0.12);
}

.i_welcomebox_guest::after {
  background-position: center right;
  background-size: cover;
  opacity: 0.14;
}

.i_welcomebox_guest .i_welcomebox_in {
  display: flex;
  justify-content: flex-start;
}

.i_welcomebox_grid {
  display: flex;
  width: 100%;
  max-width: 980px;
  gap: 20px;
  align-items: flex-start;
  padding: 30px 34px;
}

.i_welcomebox_copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 920px;
}

.i_welcomebox_kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #e2e8f3;
  background: rgba(255, 255, 255, 0.9);
  color: #f65169;
  font-family: "Noto Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.i_welcomebox_guest .i_welcomebox_title {
  margin-top: 14px;
  text-align: left;
  font-size: 40px;
  line-height: 1.02;
  color: #172033;
}

.i_welcomebox_guest .i_welcomebox_slogan {
  max-width: 760px;
  padding-top: 10px;
  text-align: left;
  font-size: 16px;
  line-height: 1.75;
  color: #66758f;
}

.i_welcomebox_guest .i_welcomebox_login_signup {
  justify-content: flex-start;
  gap: 12px;
  padding-top: 22px;
}

.i_welcomebox_guest .i_welcomebox_login_signup .i_login,
.i_welcomebox_guest .i_welcomebox_login_signup .i_singup {
  margin-right: 0;
  min-width: 120px;
}

.i_welcomebox_pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
}

.i_welcomebox_pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e6ebf4;
  color: #5d6c87;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.i_register_guest {
  margin: 14px 0 24px;
  padding: 14px 18px;
  border: 1px solid #e3e9f4;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(82, 92, 122, 0.08);
  text-align: left;
}

.i_register_guest a {
  color: #5d6c87;
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
  .wrapper.NotLoginYet {
    max-width: 1380px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .wrapper.NotLoginYet .pageMiddle {
    max-width: 800px;
  }

  .wrapper.NotLoginYet .rightSticky {
    flex-basis: 400px;
    max-width: 400px;
  }

  .i_welcomebox_grid {
    max-width: 100%;
    padding: 28px 26px;
  }
}

@media screen and (max-width: 940px) {
  .wrapper.NotLoginYet {
    padding-top: 14px;
  }

  .wrapper.NotLoginYet .pageMiddle {
    max-width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .i_welcomebox_grid {
    padding: 22px 20px;
    gap: 18px;
  }

  .i_welcomebox_guest .i_welcomebox_title {
    font-size: 30px;
  }

  .i_welcomebox_guest .i_welcomebox_login_signup {
    width: 100%;
  }

  .i_welcomebox_guest .i_welcomebox_login_signup .i_login,
  .i_welcomebox_guest .i_welcomebox_login_signup .i_singup {
    width: 100%;
  }

  .i_register_guest {
    margin-bottom: 18px;
  }
}
.live_source_selector{display:flex;flex-direction:column;gap:12px;margin:12px 0 14px;}
.live_source_selector--stacked{margin-top:12px;}
.live_source_option{position:relative;display:flex;flex-direction:column;gap:6px;padding:14px 16px;border:1px solid rgba(82,92,122,0.14);border-radius:14px;background:#fff;cursor:pointer;transition:all .2s ease;}
.live_source_option--active{border-color:var(--dizzy-theme-brand-primary);box-shadow:0 0 0 3px rgba(246,81,105,0.12);}
.live_source_option--disabled{opacity:.55;cursor:not-allowed;}
.live_source_option input{position:absolute;opacity:0;pointer-events:none;}
.live_source_option_title{font-size:14px;font-weight:700;color:#1f2937;}
.live_source_option_note{font-size:12px;line-height:1.5;color:#6b7280;}
.live_source_hint{margin:0 0 14px;font-size:12px;line-height:1.5;color:#6b7280;}
.live_obs_control_panel{margin:16px 16px 0;padding:18px;border:1px solid rgba(82,92,122,0.12);border-radius:18px;background:linear-gradient(180deg,#ffffff 0%,#f9fafc 100%);}
.live_obs_control_header{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:10px;}
.live_obs_control_kicker{font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#6b7280;}
.live_obs_control_title{margin:4px 0 0;font-size:18px;font-weight:700;color:#111827;}
.live_obs_control_badge{display:inline-flex;align-items:center;justify-content:center;padding:6px 10px;border-radius:999px;background:rgba(246,81,105,0.12);color:#b42318;font-size:11px;font-weight:700;}
.live_obs_control_copy{margin:0 0 14px;font-size:13px;line-height:1.6;color:#4b5563;}
.live_obs_status_shell{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 12px;border-radius:12px;background:#f3f4f6;margin-bottom:12px;}
.live_obs_status_label{font-size:12px;font-weight:700;color:#6b7280;text-transform:uppercase;letter-spacing:.08em;}
.live_obs_status_value{font-size:13px;font-weight:700;color:#374151;}
.live_obs_status_value[data-obs-status="live"]{color:#0f9f6e;}
.live_obs_status_value[data-obs-status="error"]{color:#b42318;}
.live_obs_status_value[data-obs-status="disconnected"]{color:#b54708;}
.live_obs_error_message,.live_obs_notice{margin-bottom:12px;padding:10px 12px;border-radius:12px;font-size:12px;line-height:1.5;}
.live_obs_error_message{background:rgba(220,38,38,0.08);color:#b42318;}
.live_obs_notice{background:rgba(82,92,122,0.08);color:#4b5563;}
.live_obs_field_grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}
.live_obs_field_card{display:flex;flex-direction:column;justify-content:space-between;min-height:152px;padding:16px 18px;border-radius:16px;border:1px solid rgba(82,92,122,0.12);background:#fff;box-shadow:0 8px 20px rgba(82,92,122,0.05);}
.live_obs_field_top{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:14px;}
.live_obs_field_label{font-size:12px;font-weight:700;color:#6b7280;text-transform:uppercase;letter-spacing:.08em;}
.live_obs_field_value{display:flex;align-items:flex-end;flex:1;font-size:14px;line-height:1.7;color:#111827;word-break:break-all;min-height:64px;}
.live_obs_field_value--secret{font-family:monospace;}
.live_obs_copy_btn,.live_obs_regenerate_btn,.live_obs_refresh_btn{display:inline-flex;align-items:center;justify-content:center;min-height:40px;border:1px solid transparent;border-radius:12px;padding:0 14px;font-size:12px;font-weight:800;letter-spacing:.01em;cursor:pointer;transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;}
.live_obs_copy_btn{min-width:82px;background:#eef2ff;border-color:#e0e7ff;color:#344054;}
.live_obs_copy_btn:hover{background:#e0e7ff;border-color:#c7d2fe;transform:translateY(-1px);}
.live_obs_regenerate_btn{background:linear-gradient(135deg,#f65169 0%,#e1445d 100%);box-shadow:0 14px 28px rgba(246,81,105,0.18);color:#fff;}
.live_obs_regenerate_btn:hover{transform:translateY(-1px);box-shadow:0 18px 32px rgba(246,81,105,0.24);}
.live_obs_refresh_btn{background:#ffffff;border-color:#d0d5dd;color:#111827;}
.live_obs_refresh_btn:hover{background:#f8fafc;border-color:#98a2b3;transform:translateY(-1px);}
.live_obs_copy_btn[disabled],.live_obs_regenerate_btn[disabled],.live_obs_refresh_btn[disabled]{opacity:.5;cursor:not-allowed;}
.live_obs_action_row{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-top:16px;}
@media (max-width: 900px){.live_obs_control_panel{margin:16px 12px 0;}.live_obs_field_grid{grid-template-columns:1fr;}}

/* v5.4.4 migrated locked text/link post styles */
.locked_content_card {
  width: 100%;
  min-height: 220px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #dfe6f2;
  background: linear-gradient(135deg, rgba(246, 81, 105, 0.08), rgba(250, 180, 41, 0.08)), #ffffff;
  box-shadow: 0 14px 34px rgba(82, 92, 122, 0.12);
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.locked_content_top {
  gap: 16px;
}

.locked_content_icon {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 22px;
  background: #fff5f7;
  border: 1px solid rgba(246, 81, 105, 0.18);
  box-shadow: 0 12px 24px rgba(246, 81, 105, 0.12);
}

.locked_content_link .locked_content_icon {
  background: #f2f6ff;
  border-color: rgba(34, 118, 225, 0.16);
  box-shadow: 0 12px 24px rgba(34, 118, 225, 0.1);
}

.locked_content_icon svg {
  width: 34px;
  height: 34px;
  fill: #f65169;
}

.locked_content_link .locked_content_icon svg {
  fill: #2276e1;
}

.locked_content_meta {
  min-width: 0;
  text-align: left;
}

.locked_content_badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  margin-bottom: 9px;
  border-radius: 999px;
  background: rgba(246, 81, 105, 0.12);
  color: #f65169;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.locked_content_subscriber .locked_content_badge {
  background: rgba(34, 118, 225, 0.12);
  color: #2276e1;
}

.locked_content_title {
  color: #101827;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.2;
  margin-bottom: 7px;
}

.locked_content_desc {
  color: #657085;
  font-size: 14px;
  line-height: 1.45;
}

.locked_content_actions {
  gap: 10px;
  flex-wrap: wrap;
}

.locked_content_price,
.locked_content_button {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
}

.locked_content_price {
  background: #101827;
  color: #ffffff;
}

.locked_content_button {
  cursor: pointer;
  background: linear-gradient(90deg, #f65169, #fab429);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(246, 81, 105, 0.2);
}

.locked_content_button_secondary {
  background: #eff5ff;
  color: #2276e1;
  box-shadow: none;
}

.locked_content_button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .locked_content_card {
    min-height: 210px;
    padding: 20px;
    border-radius: 16px;
  }

  .locked_content_top {
    align-items: flex-start;
  }

  .locked_content_icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    border-radius: 18px;
  }

  .locked_content_icon svg {
    width: 28px;
    height: 28px;
  }

  .locked_content_title {
    font-size: 18px;
  }

  .locked_content_actions {
    align-items: stretch;
  }

  .locked_content_price,
  .locked_content_button {
    min-height: 40px;
    flex: 1 1 auto;
  }
}

/* v5.4.4 migrated private vault styles */
/* Dizzy v5.4.3 private vault */
.vault_page_container{width:100%;max-width:780px;margin:0 auto;padding:18px 12px 40px}
.vault_panel{background:#fff;border:1px solid #e7edf5;border-radius:8px;padding:18px;box-shadow:0 8px 24px rgba(19,34,56,.06)}
.vault_page_head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:14px}
.vault_page_head h1{font-size:26px;line-height:1.2;margin:0 0 6px;color:#111827}
.vault_page_head p{margin:0;color:#64748b;font-size:14px}
.vault_primary_btn,.vault_secondary_btn,.vault_delete_btn{border:0;border-radius:8px;cursor:pointer;font-weight:700;line-height:1}
.vault_primary_btn{background:#2468c9;color:#fff;padding:14px 20px}
.vault_secondary_btn{background:#eef4ff;color:#2468c9;padding:12px 14px}
.vault_delete_btn{background:#fff1f2;color:#e11d48;padding:9px 12px}
.vault_notice,.vault_upload_progress{padding:12px 14px;border-radius:8px;background:#fff7ed;color:#9a3412;margin:12px 0}
.vault_stats{display:flex;gap:10px;flex-wrap:wrap;color:#64748b;font-size:13px;margin-bottom:14px}
.vault_stats span{background:#f8fafc;border:1px solid #e7edf5;border-radius:999px;padding:7px 10px}
.vault_toolbar,.vault_picker_filters{display:grid;grid-template-columns:1fr 150px 180px auto;gap:10px;margin-bottom:16px}
.vault_grid,.vault_picker_grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:12px}
.vault_media_card{position:relative;border:1px solid #e7edf5;border-radius:8px;overflow:hidden;background:#fff;min-height:210px;display:flex;flex-direction:column}
.vault_thumb{aspect-ratio:1/1;background:#f1f5f9;display:flex;align-items:center;justify-content:center}
.vault_thumb img{width:100%;height:100%;object-fit:cover;display:block}
.vault_file_icon svg{width:44px;height:44px;color:#64748b}
.vault_meta{padding:10px;min-width:0}
.vault_name{font-weight:700;color:#111827;font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.vault_info{font-size:12px;color:#64748b;margin-top:4px}
.vault_media_card .vault_delete_btn{margin:0 10px 10px}
.vault_empty{grid-column:1/-1;text-align:center;color:#64748b;background:#f8fafc;border:1px dashed #cbd5e1;border-radius:8px;padding:32px}
.vault_picker_overlay{position:fixed;inset:0;z-index:99999;background:rgba(15,23,42,.58);display:flex;align-items:center;justify-content:center;padding:24px}
.vault_picker{width:min(920px,96vw);max-height:88vh;overflow:auto;background:#fff;border-radius:10px;padding:16px;box-shadow:0 24px 70px rgba(15,23,42,.28)}
.vault_picker_head,.vault_picker_actions{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:14px}
.vault_picker_close{border:0;background:transparent;font-size:30px;line-height:1;cursor:pointer;color:#111827}
.vault_pick_check{position:absolute;top:8px;left:8px;z-index:2;background:#fff;border-radius:999px;padding:4px;box-shadow:0 2px 8px rgba(15,23,42,.16)}
.dizzy-vault-open{cursor:pointer}
body.i_night .vault_panel,body.i_night .vault_media_card,body.i_night .vault_picker{background:#242526;border-color:#3a3b3c}
body.i_night .vault_page_head h1,body.i_night .vault_name,body.i_night .vault_picker_close{color:#f8fafc}
body.i_night .vault_page_head p,body.i_night .vault_info,body.i_night .vault_stats{color:#b0b3b8}
body.i_night .vault_thumb,body.i_night .vault_stats span,body.i_night .vault_empty{background:#18191a;border-color:#3a3b3c}
@media(max-width:720px){.vault_page_head{flex-direction:column}.vault_toolbar,.vault_picker_filters{grid-template-columns:1fr}.vault_page_container{padding-left:8px;padding-right:8px}}

/* Dizzy v5.4.3 private vault layout refinement */
.vault_wrapper{align-items:flex-start}
.vault_middle{min-width:0;display:flex;justify-content:center}
.vault_page_container{width:100%;max-width:1040px;margin:0 auto;padding:28px 18px 54px}
.vault_panel{border-radius:18px;padding:22px;background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);border:1px solid rgba(82,92,122,.12);box-shadow:0 18px 44px rgba(15,23,42,.08)}
.vault_page_head{align-items:center;margin-bottom:18px;padding-bottom:16px;border-bottom:1px solid #eef2f7}
.vault_page_head h1{font-size:30px;letter-spacing:0;margin-bottom:6px}
.vault_page_head p{font-size:14px;line-height:1.55;max-width:560px}
.vault_primary_btn,.vault_secondary_btn,.vault_delete_btn,.vault_view_btn{display:inline-flex;align-items:center;justify-content:center;min-height:42px;border-radius:12px;font-size:13px;font-weight:800;text-decoration:none;transition:transform .18s ease,box-shadow .18s ease,background-color .18s ease,border-color .18s ease,color .18s ease}
.vault_primary_btn{background:linear-gradient(135deg,#2468c9 0%,#1856ad 100%);box-shadow:0 12px 24px rgba(36,104,201,.18);padding:0 18px}
.vault_primary_btn:hover,.vault_secondary_btn:hover,.vault_view_btn:hover,.vault_delete_btn:hover{transform:translateY(-1px)}
.vault_stats{gap:8px;margin-bottom:14px}
.vault_stats span{border-radius:999px;background:#f8fafc;border-color:#e2e8f0;color:#53627d;font-weight:600}
.vault_dropzone{display:flex;align-items:center;gap:14px;width:100%;min-height:92px;padding:18px;margin:0 0 16px;border:1px dashed #bfd0ec;border-radius:16px;background:linear-gradient(180deg,#f8fbff 0%,#f2f7ff 100%);cursor:pointer;color:#30415f;transition:border-color .2s ease,background .2s ease,box-shadow .2s ease,transform .2s ease}
.vault_dropzone:hover,.vault_dropzone.is-dragging{border-color:#2468c9;background:#eef5ff;box-shadow:0 14px 30px rgba(36,104,201,.12);transform:translateY(-1px)}
.vault_dropzone_icon{display:flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:14px;background:#ffffff;color:#2468c9;box-shadow:0 10px 22px rgba(15,23,42,.08);flex:0 0 auto}
.vault_dropzone_icon svg{width:22px;height:22px;fill:currentColor;stroke:currentColor}
.vault_dropzone_text{font-size:15px;font-weight:800;color:#111827}
.vault_dropzone_hint{display:block;margin-top:4px;font-size:12px;line-height:1.45;color:#64748b}
.vault_toolbar{grid-template-columns:minmax(220px,1fr) 150px 190px auto;align-items:center;gap:10px;margin-bottom:14px}
.vault_toolbar .i_input,.vault_picker_filters .i_input{width:100%;min-height:42px;border:1px solid #dbe3f0;border-radius:12px;background:#fff;color:#111827;padding:0 13px;outline:none;box-shadow:none}
.vault_toolbar .i_input:focus,.vault_picker_filters .i_input:focus{border-color:#2468c9;box-shadow:0 0 0 3px rgba(36,104,201,.10)}
.vault_upload_progress{display:none;border-radius:14px;background:#eef5ff;color:#1d4ed8;border:1px solid #dbeafe;font-weight:700}
.vault_upload_progress.is-active:not(:empty){display:block}
.vault_upload_progress.is-success{background:#ecfdf5;color:#047857;border-color:#bbf7d0}
.vault_upload_progress.is-error{background:#fff1f2;color:#be123c;border-color:#fecdd3}
.vault_grid{grid-template-columns:repeat(auto-fill,minmax(178px,1fr));gap:14px}
.vault_media_card{min-height:0;border-radius:14px;border-color:#e2e8f0;box-shadow:0 10px 24px rgba(15,23,42,.05);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.vault_media_card:hover{transform:translateY(-2px);border-color:#cbd5e1;box-shadow:0 16px 34px rgba(15,23,42,.10)}
.vault_thumb{position:relative;aspect-ratio:4/3;background:#f1f5f9}
.vault_file_icon svg{width:48px;height:48px;color:#64748b}
.vault_type_badge{position:absolute;left:9px;top:9px;display:inline-flex;align-items:center;min-height:24px;padding:0 8px;border-radius:999px;background:rgba(15,23,42,.72);color:#fff;font-size:11px;font-weight:800}
.vault_meta{padding:11px 12px 8px}
.vault_name{font-size:14px;line-height:1.35}
.vault_info{font-size:12px;color:#64748b}
.vault_card_actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;padding:0 12px 12px;margin-top:auto}
.vault_view_btn{min-height:36px;background:#eef4ff;color:#2468c9}
.vault_delete_btn{min-height:36px;background:#fff1f2;color:#e11d48;padding:0 10px}
.vault_media_card .vault_delete_btn{margin:0}
.vault_empty{border-radius:16px;background:#f8fafc;padding:42px 18px;font-weight:700}
body.i_night .vault_panel{background:linear-gradient(180deg,#242526 0%,#1f2022 100%);border-color:#3a3b3c}
body.i_night .vault_page_head{border-bottom-color:#343638}
body.i_night .vault_dropzone{background:#18191a;border-color:#3a3b3c;color:#e4e6eb}
body.i_night .vault_dropzone:hover,body.i_night .vault_dropzone.is-dragging{border-color:#2468c9;background:#202734}
body.i_night .vault_dropzone_icon,body.i_night .vault_toolbar .i_input,body.i_night .vault_picker_filters .i_input{background:#242526;border-color:#3a3b3c;color:#f8fafc}
body.i_night .vault_dropzone_text{color:#f8fafc}
body.i_night .vault_dropzone_hint,body.i_night .vault_stats span{color:#b0b3b8}
body.i_night .vault_stats span{background:#18191a;border-color:#3a3b3c}
body.i_night .vault_view_btn{background:#1d2b44;color:#8ab4ff}
@media(max-width:980px){.vault_page_container{max-width:100%;padding-left:12px;padding-right:12px}.vault_toolbar{grid-template-columns:1fr 1fr}.vault_toolbar #vaultSearch{grid-column:1/-1}.vault_toolbar #vaultNewFolder{grid-column:1/-1}}
@media(max-width:980px){.vault_wrapper .leftSticky{display:none}.vault_middle{flex:1 1 100%;width:100%}.vault_page_container{padding-top:14px}}
@media(max-width:720px){.vault_page_container{padding:18px 10px 42px}.vault_panel{padding:16px;border-radius:14px}.vault_page_head{align-items:flex-start}.vault_page_head .vault_primary_btn{width:100%}.vault_dropzone{align-items:flex-start}.vault_toolbar{grid-template-columns:1fr}.vault_grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.vault_card_actions{grid-template-columns:1fr}.vault_type_badge{font-size:10px}}
.vault_viewbar{display:flex;justify-content:space-between;align-items:center;gap:10px;margin:0 0 14px;flex-wrap:wrap}
.vault_segmented{display:inline-flex;gap:4px;padding:4px;border:1px solid #dbe3f0;border-radius:14px;background:#f8fafc}
.vault_icon_btn{min-height:36px;border:0;border-radius:10px;background:#eef4ff;color:#2468c9;font-size:12px;font-weight:800;padding:0 12px;cursor:pointer}
.vault_icon_btn.is-active{background:#2468c9;color:#fff;box-shadow:0 8px 18px rgba(36,104,201,.18)}
.vault_toolbar button:disabled,.vault_toolbar button.is-disabled{opacity:.45;cursor:not-allowed;transform:none;box-shadow:none}
.vault_toolbar{grid-template-columns:minmax(220px,1.4fr) 130px 170px 130px;align-items:stretch}
.vault_toolbar button,.vault_toolbar select,.vault_toolbar input{min-width:0}
.vault_bulk_bar{display:none;align-items:center;gap:10px;margin:0 0 14px;padding:10px 12px;border:1px solid #dbeafe;border-radius:14px;background:#eef5ff;color:#1d4ed8;font-weight:800}
.vault_bulk_bar.is-active{display:flex;flex-wrap:wrap}
.vault_bulk_bar .i_input{width:auto;min-width:170px;min-height:38px;border:1px solid #bfdbfe;border-radius:10px;background:#fff;color:#111827;padding:0 10px}
.vault_pick_check{position:absolute;top:9px;right:9px;left:auto;z-index:4;background:#fff;border-radius:999px;padding:5px;box-shadow:0 6px 14px rgba(15,23,42,.16)}
.vault_pick_check input{display:block;width:16px;height:16px;margin:0}
.vault_card_actions{grid-template-columns:1fr 1fr 1fr}
.vault_usage{font-size:11px;color:#64748b;margin-top:4px}
.vault_grid_list{grid-template-columns:1fr}
.vault_grid_list .vault_media_card{display:grid;grid-template-columns:120px minmax(0,1fr) 260px;align-items:center}
.vault_grid_list .vault_thumb{aspect-ratio:1/1;min-height:120px}
.vault_grid_list .vault_card_actions{padding:12px;grid-template-columns:repeat(3,1fr)}
.vault_skeleton{min-height:230px;border-radius:14px;background:linear-gradient(90deg,#f1f5f9 25%,#e7edf5 37%,#f1f5f9 63%);background-size:400% 100%;animation:vaultSkeleton 1.4s ease infinite}
@keyframes vaultSkeleton{0%{background-position:100% 0}100%{background-position:0 0}}
.vault_empty{grid-column:1/-1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;min-height:180px;color:#64748b}
.vault_empty strong{font-size:16px;color:#111827}
.vault_empty span{font-size:13px;font-weight:500;text-align:center;max-width:360px}
.vault_picker_overlay,.vault_preview_overlay{position:fixed;inset:0;z-index:99999;background:rgba(15,23,42,.58);display:flex;align-items:center;justify-content:center;padding:24px}
.vault_preview_modal{width:min(920px,96vw);max-height:88vh;overflow:auto;background:#fff;border-radius:16px;padding:16px;box-shadow:0 24px 70px rgba(15,23,42,.28)}
.vault_preview_head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:14px}
.vault_preview_head strong{display:block;font-size:18px;color:#111827}
.vault_preview_head span{display:block;margin-top:4px;font-size:12px;line-height:1.45;color:#64748b}
.vault_preview_body{display:flex;align-items:center;justify-content:center;min-height:320px;border-radius:14px;background:#f8fafc;overflow:hidden}
.vault_preview_body img,.vault_preview_body video{display:block;max-width:100%;max-height:66vh;object-fit:contain}
.vault_preview_body audio{width:min(520px,92%)}
.vault_preview_file{display:flex;flex-direction:column;align-items:center;gap:14px;padding:40px;text-align:center;color:#111827}
.vault_preview_actions{display:flex;justify-content:flex-end;gap:10px;margin-top:14px}
body.i_night .vault_segmented,body.i_night .vault_preview_modal{background:#242526;border-color:#3a3b3c}
body.i_night .vault_icon_btn{background:#1d2b44;color:#8ab4ff}
body.i_night .vault_icon_btn.is-active{background:#2468c9;color:#fff}
body.i_night .vault_bulk_bar{background:#17233a;border-color:#25436f;color:#8ab4ff}
body.i_night .vault_bulk_bar .i_input{background:#242526;border-color:#3a3b3c;color:#f8fafc}
body.i_night .vault_preview_head strong,body.i_night .vault_empty strong{color:#f8fafc}
body.i_night .vault_preview_head span,body.i_night .vault_usage{color:#b0b3b8}
body.i_night .vault_preview_body,body.i_night .vault_empty{background:#18191a}
@media(max-width:1180px){.vault_toolbar{grid-template-columns:1fr 1fr}.vault_toolbar #vaultSearch{grid-column:1/-1}.vault_toolbar button,.vault_toolbar select{min-width:0}}
@media(max-width:760px){.vault_viewbar{align-items:stretch}.vault_segmented,.vault_viewbar .vault_secondary_btn{width:100%}.vault_segmented button{flex:1}.vault_grid_list .vault_media_card{display:flex}.vault_preview_overlay{padding:10px}.vault_preview_body{min-height:220px}.vault_preview_actions{flex-direction:column}.vault_card_actions{grid-template-columns:1fr}.vault_bulk_bar{align-items:stretch}.vault_bulk_bar .i_input,.vault_bulk_bar button{width:100%}}
.vault_share_wrap{position:relative;display:inline-flex;min-width:0}
.vault_share_menu{display:none;position:absolute;left:0;right:auto;bottom:calc(100% + 8px);z-index:12;min-width:190px;padding:8px;border-radius:12px;background:#fff;border:1px solid #dbe3f0;box-shadow:0 18px 42px rgba(15,23,42,.16)}
.vault_media_card.vault_menu_open .vault_share_menu,.vault_preview_modal.vault_menu_open .vault_share_menu,.vault_share_wrap:hover .vault_share_menu{display:grid;gap:6px}
.vault_share_target{border:0;background:#f8fafc;color:#111827;border-radius:9px;min-height:34px;padding:0 10px;text-align:left;font-size:12px;font-weight:800;cursor:pointer}
.vault_share_target:hover{background:#eef4ff;color:#2468c9}
.vault_context_btn{margin-left:8px}
.story_vault_actions{display:flex;justify-content:center;margin-top:14px;position:relative;z-index:2}
.story_vault_actions .vault_context_btn{margin-left:0;min-width:126px}
@media(max-width:760px){.vault_share_menu{left:auto;right:0;bottom:auto;top:calc(100% + 8px)}}

/* v5.4.3 Vault card usability polish */
.vault_grid{grid-template-columns:repeat(auto-fill,minmax(238px,1fr));gap:18px;align-items:start}
.vault_picker_grid{grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:16px}
.vault_media_card{border-radius:18px;overflow:visible;background:#fff;box-shadow:0 14px 32px rgba(15,23,42,.07);min-width:0}
.vault_media_card:hover{transform:translateY(-2px);box-shadow:0 18px 42px rgba(15,23,42,.11)}
.vault_thumb{overflow:hidden;border-radius:18px 18px 0 0;aspect-ratio:4/3}
.vault_meta{padding:13px 14px 10px}
.vault_name{font-size:15px;line-height:1.35}
.vault_info,.vault_usage{line-height:1.4}
.vault_card_actions{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:9px;padding:0 14px 14px;margin-top:auto;align-items:stretch}
.vault_card_actions .vault_view_btn{grid-column:1/-1}
.vault_card_actions .vault_share_wrap{display:flex;width:100%;min-width:0}
.vault_card_actions .vault_share_wrap .vault_use_btn,.vault_card_actions .vault_delete_btn,.vault_card_actions .vault_view_btn{width:100%;min-width:0;min-height:38px;padding:0 12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;border-radius:12px;transform:none}
.vault_card_actions .vault_share_wrap .vault_use_btn:hover,.vault_card_actions .vault_delete_btn:hover,.vault_card_actions .vault_view_btn:hover{transform:none;box-shadow:0 8px 18px rgba(15,23,42,.09)}
.vault_share_menu{left:0;right:auto;bottom:calc(100% + 10px);max-width:min(240px,calc(100vw - 32px))}
.vault_grid_list .vault_media_card{overflow:visible;grid-template-columns:140px minmax(0,1fr) 280px}
.vault_grid_list .vault_card_actions{grid-template-columns:1fr 1fr;padding:14px}
.vault_grid_list .vault_card_actions .vault_view_btn{grid-column:1/-1}
@media(max-width:980px){.vault_grid{grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:14px}}
@media(max-width:760px){.vault_grid{grid-template-columns:1fr}.vault_picker_grid{grid-template-columns:repeat(2,minmax(0,1fr))}.vault_card_actions{grid-template-columns:1fr}.vault_card_actions .vault_view_btn{grid-column:auto}.vault_grid_list .vault_media_card{display:flex}.vault_grid_list .vault_card_actions{grid-template-columns:1fr}}
@media(max-width:420px){.vault_picker_grid{grid-template-columns:1fr}}

/* v5.4.3 Vault share menu hover stability */
.vault_share_wrap{isolation:isolate}
.vault_share_wrap:before{content:"";display:none;position:absolute;left:0;right:0;bottom:100%;height:14px;z-index:11}
.vault_share_wrap:hover:before,.vault_media_card.vault_menu_open .vault_share_wrap:before{display:block}
.vault_share_wrap:hover .vault_share_menu,.vault_share_menu:hover,.vault_media_card.vault_menu_open .vault_share_menu{display:grid;gap:6px}
.vault_share_menu{bottom:calc(100% + 6px)}
.vault_share_target{display:flex;align-items:center;width:100%}

/* v5.4.3 Vault page three-column layout */
.vault_wrapper{align-items:flex-start}
.vault_middle{min-width:0;display:flex;justify-content:center}
.vault_page_container{max-width:860px;width:100%;padding-left:18px;padding-right:18px}
.vault_panel{width:100%}
@media(max-width:1280px){.vault_page_container{max-width:820px;padding-left:14px;padding-right:14px}}
@media(max-width:1180px){.vault_page_container{max-width:760px}.vault_stats span:last-child{flex-basis:100%}}
@media(max-width:980px){.vault_wrapper .rightSticky{display:none}.vault_page_container{max-width:100%}}

/* v5.4.3 Vault toolbar fit for right-sidebar layout */
.vault_wrapper .vault_toolbar{grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:10px;align-items:stretch}
.vault_wrapper .vault_toolbar #vaultSearch{grid-column:1/-1}
.vault_wrapper .vault_toolbar .i_input,.vault_wrapper .vault_toolbar button{width:100%;min-width:0}
.vault_wrapper .vault_dropzone{display:grid;grid-template-columns:46px minmax(110px,150px) minmax(0,1fr);align-items:center}
.vault_wrapper .vault_dropzone_text{white-space:normal;line-height:1.2}
.vault_wrapper .vault_dropzone_hint{min-width:0}
.vault_wrapper .vault_viewbar{gap:12px}
.vault_wrapper .vault_viewbar .vault_secondary_btn{margin-left:auto}
@media(max-width:620px){.vault_wrapper .vault_toolbar{grid-template-columns:1fr}.vault_wrapper .vault_dropzone{grid-template-columns:46px minmax(0,1fr)}.vault_wrapper .vault_dropzone_hint{grid-column:1/-1}}

/* v5.4.3 Vault toolbar logical order */
.vault_wrapper .vault_toolbar #vaultSearch{order:1}
.vault_wrapper .vault_toolbar #vaultType{order:2}
.vault_wrapper .vault_toolbar #vaultFolder{order:3}
.vault_wrapper .vault_toolbar #vaultSort{order:4}
.vault_wrapper .vault_toolbar #vaultUsage{order:5}
.vault_wrapper .vault_toolbar #vaultNewFolder{order:6;grid-column:1/-1}
.vault_wrapper .vault_toolbar #vaultRenameFolder{order:7}
.vault_wrapper .vault_toolbar #vaultDeleteFolder{order:8}

/* v5.4.3 Vault controls and card action polish */
.vault_wrapper .vault_toolbar{
  position:relative;
  padding:14px;
  margin:16px 0 18px;
  border:1px solid #e5edf8;
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  box-shadow:0 12px 30px rgba(15,23,42,.055);
}
.vault_wrapper .vault_toolbar .i_input{
  height:48px;
  min-height:48px;
  border:1px solid #d7e1f0;
  border-radius:14px;
  background-color:#fff;
  color:#111827;
  font-size:14px;
  font-weight:650;
  padding:0 15px;
  outline:0;
  box-shadow:0 8px 18px rgba(15,23,42,.035);
  transition:border-color .18s ease,box-shadow .18s ease,background-color .18s ease;
}
.vault_wrapper .vault_toolbar input.i_input{
  padding-left:44px;
  background-image:url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.8 18.1a7.3 7.3 0 1 1 0-14.6 7.3 7.3 0 0 1 0 14.6Z' stroke='%23869ab8' stroke-width='2'/%3E%3Cpath d='m16.2 16.3 4.1 4.1' stroke='%23869ab8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:15px center;
  background-size:18px;
}
.vault_wrapper .vault_toolbar select.i_input{
  appearance:none;
  -webkit-appearance:none;
  padding-right:42px;
  background-image:url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m7 10 5 5 5-5' stroke='%235b6b84' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:18px;
}
.vault_wrapper .vault_toolbar .i_input:hover{
  border-color:#b9c9e2;
  background-color:#fbfdff;
}
.vault_wrapper .vault_toolbar .i_input:focus{
  border-color:#2468c9;
  box-shadow:0 0 0 4px rgba(36,104,201,.12),0 12px 24px rgba(15,23,42,.055);
}
.vault_wrapper .vault_toolbar .i_input::placeholder{
  color:#8c9aae;
  font-weight:600;
}
.vault_wrapper .vault_toolbar button{
  height:48px;
  min-height:48px;
  border-radius:14px;
  border:1px solid transparent;
  font-size:14px;
  font-weight:850;
  letter-spacing:0;
  box-shadow:none;
}
.vault_wrapper #vaultNewFolder{
  background:linear-gradient(135deg,#eef5ff 0%,#e7f0ff 100%);
  color:#1f64c8;
  border-color:#dbeafe;
}
.vault_wrapper #vaultRenameFolder{
  background:#f7faff;
  color:#7da4dc;
  border-color:#e5edf8;
}
.vault_wrapper #vaultDeleteFolder{
  background:#fff5f7;
  color:#f28aa3;
  border-color:#ffe1e8;
}
.vault_wrapper #vaultNewFolder:hover,
.vault_wrapper #vaultRenameFolder:hover,
.vault_wrapper #vaultDeleteFolder:hover{
  transform:none;
  box-shadow:0 10px 22px rgba(15,23,42,.06);
}
.vault_card_actions{
  padding-top:2px;
}
.vault_card_actions .vault_view_btn{
  border:1px solid #dbe7f7!important;
  outline:0!important;
  background:linear-gradient(135deg,#eef5ff 0%,#e7f0ff 100%);
  color:#1f64c8;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.62),0 8px 16px rgba(36,104,201,.08);
}
.vault_card_actions .vault_view_btn:hover{
  background:linear-gradient(135deg,#2468c9 0%,#1856ad 100%);
  color:#fff;
  border-color:#2468c9!important;
  box-shadow:0 12px 22px rgba(36,104,201,.18);
}
.vault_card_actions .vault_view_btn:focus,
.vault_card_actions .vault_view_btn:focus-visible,
.vault_card_actions .vault_use_btn:focus,
.vault_card_actions .vault_use_btn:focus-visible,
.vault_card_actions .vault_delete_btn:focus,
.vault_card_actions .vault_delete_btn:focus-visible{
  outline:0!important;
  box-shadow:0 0 0 4px rgba(36,104,201,.14),0 10px 20px rgba(15,23,42,.08);
}
.vault_card_actions .vault_use_btn{
  border:1px solid #dbeafe;
  background:#eef5ff;
  color:#1f64c8;
}
.vault_card_actions .vault_delete_btn{
  border:1px solid #ffe1e8;
  background:#fff1f4;
  color:#d92352;
}
.vault_card_actions .vault_use_btn:hover{
  background:#e2efff;
  border-color:#bfdbfe;
}
.vault_card_actions .vault_delete_btn:hover{
  background:#ffe8ee;
  border-color:#ffc8d5;
}
.vault_media_card{
  border-color:#dfe8f5;
}
.vault_media_card:hover{
  border-color:#c8d7eb;
}
body.i_night .vault_wrapper .vault_toolbar{
  background:linear-gradient(180deg,#242526 0%,#202124 100%);
  border-color:#34383f;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}
body.i_night .vault_wrapper .vault_toolbar .i_input{
  background-color:#18191a;
  border-color:#3a3b3c;
  color:#f8fafc;
  box-shadow:none;
}
body.i_night .vault_wrapper .vault_toolbar .i_input:hover,
body.i_night .vault_wrapper .vault_toolbar .i_input:focus{
  background-color:#202124;
  border-color:#2468c9;
}
body.i_night .vault_card_actions .vault_view_btn,
body.i_night .vault_card_actions .vault_use_btn{
  background:#1d2b44;
  color:#8ab4ff;
  border-color:#29466f!important;
}
body.i_night .vault_card_actions .vault_view_btn:hover,
body.i_night .vault_card_actions .vault_use_btn:hover{
  background:#2468c9;
  color:#fff;
}
body.i_night .vault_card_actions .vault_delete_btn{
  background:#3a2028;
  color:#ff9aae;
  border-color:#55313b;
}

/* v5.4.3 Vault composer UX refinement */
.vault_picker_help{display:block;margin-top:5px;font-size:13px;line-height:1.45;color:#64748b;font-weight:500}
.vault_picker_actions{position:sticky;bottom:0;background:linear-gradient(180deg,rgba(255,255,255,.72),#fff 42%);padding-top:14px;border-top:1px solid #edf2f7}
.vault_picker_count{display:inline-flex;align-items:center;min-height:40px;padding:0 13px;border-radius:999px;background:#f8fafc;border:1px solid #dbe3f0;color:#53627d;font-size:13px;font-weight:800}
.vaultPickerUse.is-disabled,.vaultPickerUse:disabled{opacity:.52;cursor:not-allowed;box-shadow:none;transform:none}
.vault_composer_notice{margin:0 0 10px;padding:11px 13px;border-radius:12px;background:#eef6ff;border:1px solid #bfdbfe;color:#1d4ed8;font-size:13px;font-weight:800;line-height:1.35}
.vault_share_menu{min-width:230px}
.vault_share_target{min-height:42px;padding:0 12px;font-size:13px;line-height:1.25}
.vault_share_target:after{content:"";display:block;width:16px;height:16px;margin-left:auto;background:currentColor;opacity:.38;clip-path:path("M4 3h7.5L9 5.5l1.1 1.1L14.5 2 10 .5 8.9 1.6 11.1 3H4c-1.7 0-3 1.3-3 3v6h1.5V6c0-.8.7-1.5 1.5-1.5Z")}
body.i_night .vault_picker_help{color:#b0b3b8}
body.i_night .vault_picker_actions{background:linear-gradient(180deg,rgba(36,37,38,.72),#242526 42%);border-top-color:#3a3b3c}
body.i_night .vault_picker_count{background:#18191a;border-color:#3a3b3c;color:#d7dbe4}
body.i_night .vault_composer_notice{background:#17233a;border-color:#25436f;color:#8ab4ff}

/* v5.4.3 product vault upload button isolation */
.product_vault_actions{display:flex;flex-direction:column;gap:8px;margin-top:10px}.product_vault_actions .vault_secondary_btn{width:100%;min-height:42px;padding:0 10px;text-align:center}.product_vault_actions .vault_context_btn{margin-left:0}
/* v5.4.3 Vault list view layout fix */
.vault_grid.vault_grid_list{grid-template-columns:1fr!important;gap:12px!important}
.vault_grid.vault_grid_list .vault_media_card{display:grid!important;grid-template-columns:132px minmax(0,1fr) 230px;align-items:stretch;min-height:132px;overflow:visible}
.vault_grid.vault_grid_list .vault_thumb{width:132px;height:132px;min-height:0;aspect-ratio:auto;border-radius:16px 0 0 16px}
.vault_grid.vault_grid_list .vault_thumb img{width:100%;height:100%;object-fit:cover}
.vault_grid.vault_grid_list .vault_pick_check{top:12px;right:12px;left:auto}
.vault_grid.vault_grid_list .vault_meta{display:flex;flex-direction:column;justify-content:center;min-width:0;padding:16px 14px}
.vault_grid.vault_grid_list .vault_name{font-size:15px;white-space:normal;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.vault_grid.vault_grid_list .vault_info,.vault_grid.vault_grid_list .vault_usage{font-size:12px;line-height:1.45}
.vault_grid.vault_grid_list .vault_card_actions{display:grid;grid-template-columns:1fr 1fr;align-content:center;align-self:center;gap:10px;margin:0;padding:14px 16px 14px 0}
.vault_grid.vault_grid_list .vault_card_actions .vault_view_btn{grid-column:1/-1}
.vault_grid.vault_grid_list .vault_card_actions .vault_share_wrap,.vault_grid.vault_grid_list .vault_card_actions .vault_use_btn,.vault_grid.vault_grid_list .vault_card_actions .vault_delete_btn,.vault_grid.vault_grid_list .vault_card_actions .vault_view_btn{width:100%;min-width:0}
@media(max-width:760px){.vault_grid.vault_grid_list .vault_media_card{display:flex!important;flex-direction:column;min-height:0}.vault_grid.vault_grid_list .vault_thumb{width:100%;height:auto;aspect-ratio:4/3;border-radius:16px 16px 0 0}.vault_grid.vault_grid_list .vault_card_actions{padding:0 14px 14px;grid-template-columns:1fr}.vault_grid.vault_grid_list .vault_card_actions .vault_view_btn{grid-column:auto}}
/* v5.4.3 Vault folder dialog */
.vault_dialog_open{overflow:hidden}
.vault_dialog_overlay{position:fixed;inset:0;z-index:100001;display:flex;align-items:center;justify-content:center;padding:22px;background:rgba(15,23,42,.58);backdrop-filter:blur(5px)}
.vault_dialog{position:relative;width:min(440px,94vw);border-radius:18px;background:#fff;border:1px solid #e5edf8;box-shadow:0 28px 80px rgba(15,23,42,.28);padding:22px}
.vault_dialog_close{position:absolute;top:12px;right:12px;width:38px;height:38px;border:0;border-radius:12px;background:#f3f6fb;color:#111827;font-size:26px;line-height:1;cursor:pointer}
.vault_dialog_close:hover{background:#e8eef8}
.vault_dialog_form{display:flex;flex-direction:column;gap:16px}
.vault_dialog_head{padding-right:42px}
.vault_dialog_head strong{display:block;font-size:22px;line-height:1.2;color:#111827}
.vault_dialog_head span{display:block;margin-top:6px;font-size:13px;line-height:1.45;color:#64748b}
.vault_dialog_field{display:flex;flex-direction:column;gap:8px}
.vault_dialog_field span{font-size:13px;font-weight:800;color:#334155}
.vault_dialog_input{width:100%;height:52px;border:1px solid #d7e1f0;border-radius:14px;background:#fff;color:#111827;font-size:15px;font-weight:700;padding:0 15px;outline:0;box-shadow:0 8px 18px rgba(15,23,42,.035)}
.vault_dialog_input:focus{border-color:#2468c9;box-shadow:0 0 0 4px rgba(36,104,201,.12),0 12px 24px rgba(15,23,42,.055)}
.vault_dialog_input.is-error{border-color:#e11d48;box-shadow:0 0 0 4px rgba(225,29,72,.12)}
.vault_dialog_error{display:none;border-radius:12px;background:#fff1f2;border:1px solid #fecdd3;color:#be123c;font-size:13px;font-weight:800;padding:10px 12px}
.vault_dialog_error.is-visible{display:block}
.vault_dialog_actions{display:flex;justify-content:flex-end;gap:10px;margin-top:2px}
.vault_dialog_actions .vault_primary_btn,.vault_dialog_actions .vault_secondary_btn{min-width:112px;min-height:44px;border-radius:12px}
.vault_dialog_submit.is-disabled{opacity:.6;cursor:not-allowed}
body.i_night .vault_dialog{background:#242526;border-color:#3a3b3c;box-shadow:0 28px 80px rgba(0,0,0,.46)}
body.i_night .vault_dialog_close{background:#18191a;color:#f8fafc}
body.i_night .vault_dialog_head strong,body.i_night .vault_dialog_field span{color:#f8fafc}
body.i_night .vault_dialog_head span{color:#b0b3b8}
body.i_night .vault_dialog_input{background:#18191a;border-color:#3a3b3c;color:#f8fafc}
@media(max-width:520px){.vault_dialog{padding:18px}.vault_dialog_actions{flex-direction:column-reverse}.vault_dialog_actions .vault_primary_btn,.vault_dialog_actions .vault_secondary_btn{width:100%}}

/* v5.4.3 Vault video FFmpeg thumbnails */
.vault_thumb.is_video_thumb img{display:block;width:100%;height:100%;object-fit:cover}
.vault_thumb_video_icon{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:46px;height:46px;border-radius:50%;background:rgba(15,23,42,.72);color:#fff;display:flex;align-items:center;justify-content:center;font-size:18px;box-shadow:0 10px 28px rgba(15,23,42,.28);pointer-events:none}
.vault_thumb_video_icon:before{content:"";display:block;margin-left:4px;border-left:15px solid #fff;border-top:10px solid transparent;border-bottom:10px solid transparent}
.vault_media_card[data-vault-type="video"] .vault_type_badge{background:rgba(15,23,42,.82);color:#fff}
/* v5.4.3 Vault public sharing limit */
.vault_share_target.is-disabled,.vault_share_target:disabled{cursor:not-allowed;opacity:.62;background:#f1f5f9!important;color:#64748b!important;box-shadow:none!important}
.vault_share_target.is-disabled:after,.vault_share_target:disabled:after{display:none!important}
.vault_share_limit_note{display:block;margin-top:2px;font-size:10px;font-weight:800;line-height:1.2;color:#e11d48}
.vaultPickerUse.is-disabled[title]{cursor:not-allowed}
body.i_night .vault_share_target.is-disabled,body.i_night .vault_share_target:disabled{background:#18191a!important;color:#8b949e!important}
body.i_night .vault_share_limit_note{color:#fb7185}

/* v5.4.3 Vault UX polish */
.vault_wrapper .vault_page_container{max-width:860px}
.vault_wrapper .vault_panel{border-radius:14px;padding:18px;border-color:#e2e8f0;background:#fff;box-shadow:0 8px 22px rgba(15,23,42,.045)}
.vault_page_head{padding-bottom:14px;margin-bottom:14px;border-bottom-color:#edf2f7}
.vault_page_head h1{font-size:22px;line-height:1.2;font-weight:700;color:#111827}
.vault_page_head p{margin-top:5px;font-size:13px;line-height:1.45;color:#64748b;font-weight:400}
.vault_primary_btn,.vault_secondary_btn,.vault_delete_btn,.vault_view_btn,.vault_icon_btn{min-height:40px;border-radius:10px;font-size:13px;font-weight:700;box-shadow:none;transform:none;letter-spacing:0}
.vault_primary_btn{background:#2468c9;padding:0 16px;box-shadow:none}
.vault_primary_btn:hover{background:#1f5fb8;box-shadow:none;transform:none}
.vault_secondary_btn,.vault_view_btn,.vault_icon_btn{background:#f1f6ff;color:#2468c9;border:1px solid #dbe7f7}
.vault_delete_btn{background:#fff3f5;color:#d92352;border:1px solid #ffe1e8}
.vault_stats{gap:7px;margin-bottom:12px;font-size:12px;line-height:1.35}
.vault_stats span{border-radius:10px;padding:6px 9px;background:#f8fafc;border-color:#e2e8f0;color:#5d6b82;font-weight:500}
.vault_viewbar{margin-bottom:12px;gap:10px}
.vault_segmented{padding:3px;border-radius:12px;background:#f8fafc;border-color:#e2e8f0}
.vault_segmented .vault_icon_btn{min-height:34px;border:0;border-radius:9px;padding:0 12px;font-weight:700;background:transparent;color:#45607f}
.vault_segmented .vault_icon_btn.is-active{background:#2468c9;color:#fff;box-shadow:none}
.vault_wrapper .vault_dropzone{min-height:76px;padding:14px;margin-bottom:14px;border-radius:12px;border-color:#cbd9ef;background:#f8fbff;box-shadow:none;transform:none}
.vault_wrapper .vault_dropzone:hover,.vault_wrapper .vault_dropzone.is-dragging{background:#f2f7ff;border-color:#2468c9;box-shadow:none;transform:none}
.vault_dropzone_icon{width:40px;height:40px;border-radius:10px;background:#fff;box-shadow:none;border:1px solid #e2e8f0}
.vault_dropzone_text{font-size:14px;font-weight:700;color:#172033}
.vault_dropzone_hint{margin-top:2px;font-size:12px;line-height:1.35;color:#6b778e;font-weight:400}
.vault_wrapper .vault_toolbar{padding:12px;margin:14px 0 16px;border-radius:14px;background:#fff;border-color:#e2e8f0;box-shadow:none;gap:9px}
.vault_wrapper .vault_toolbar .i_input{height:42px;min-height:42px;border-radius:10px;border-color:#dbe3f0;background:#fff;color:#111827;font-size:13px;font-weight:500;padding:0 12px;box-shadow:none}
.vault_wrapper .vault_toolbar input.i_input{padding-left:38px;background-position:12px center;background-size:16px}
.vault_wrapper .vault_toolbar select.i_input{padding-right:36px;background-position:right 11px center;background-size:16px}
.vault_wrapper .vault_toolbar .i_input:hover{border-color:#c8d5e8;background:#fff}
.vault_wrapper .vault_toolbar .i_input:focus{border-color:#2468c9;box-shadow:0 0 0 3px rgba(36,104,201,.11)}
.vault_wrapper .vault_toolbar .i_input::placeholder{font-weight:400;color:#94a3b8}
.vault_wrapper .vault_toolbar button{height:42px;min-height:42px;border-radius:10px;font-size:13px;font-weight:700}
.vault_wrapper #vaultNewFolder,.vault_wrapper #vaultRenameFolder{background:#f1f6ff;color:#2468c9;border-color:#dbe7f7}
.vault_wrapper #vaultDeleteFolder{background:#fff5f7;color:#d92352;border-color:#ffe1e8}
.vault_wrapper #vaultNewFolder:hover,.vault_wrapper #vaultRenameFolder:hover,.vault_wrapper #vaultDeleteFolder:hover{box-shadow:none;transform:none}
.vault_upload_progress{position:relative;display:none;align-items:flex-start;gap:9px;margin:12px 0 14px;padding:10px 12px 10px 38px;border-radius:12px;font-size:13px;font-weight:600;line-height:1.4;box-shadow:none}
.vault_upload_progress.is-active:not(:empty){display:flex}
.vault_upload_progress:before{content:"i";position:absolute;left:12px;top:10px;display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:50%;font-size:11px;font-weight:800;background:#bfdbfe;color:#1d4ed8}
.vault_upload_progress.is-success{background:#f0fdf4;color:#166534;border-color:#bbf7d0}
.vault_upload_progress.is-success:before{content:"✓";background:#bbf7d0;color:#166534}
.vault_upload_progress.is-error{background:#fff1f2;color:#be123c;border-color:#fecdd3}
.vault_upload_progress.is-error:before{content:"!";background:#fecdd3;color:#be123c}
.vault_grid{grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:14px}
.vault_media_card{border-radius:14px;border-color:#e2e8f0;background:#fff;box-shadow:none;transition:border-color .16s ease,background-color .16s ease}
.vault_media_card:hover{transform:none;border-color:#c8d5e8;box-shadow:none}
.vault_thumb{border-radius:14px 14px 0 0;background:#f1f5f9}
.vault_type_badge{min-height:22px;padding:0 8px;border-radius:999px;font-size:10px;font-weight:700;background:rgba(15,23,42,.72)}
.vault_pick_check{top:8px;right:8px;padding:4px;box-shadow:none;border:1px solid #e2e8f0}
.vault_meta{padding:11px 12px 8px}
.vault_name{font-size:14px;line-height:1.35;font-weight:700;color:#111827}
.vault_info,.vault_usage{font-size:12px;line-height:1.35;color:#64748b;font-weight:500}
.vault_card_actions{gap:8px;padding:0 12px 12px}
.vault_card_actions .vault_share_wrap .vault_use_btn,.vault_card_actions .vault_delete_btn,.vault_card_actions .vault_view_btn{min-height:36px;border-radius:10px;font-size:13px;font-weight:700;padding:0 10px;box-shadow:none}
.vault_card_actions .vault_view_btn{background:#f1f6ff;color:#2468c9;border-color:#dbe7f7!important}
.vault_card_actions .vault_view_btn:hover,.vault_card_actions .vault_use_btn:hover{background:#e7f0ff;color:#1f5fb8;box-shadow:none;border-color:#cbdcf5!important}
.vault_card_actions .vault_delete_btn:hover{background:#ffe8ee;border-color:#ffc8d5;box-shadow:none}
.vault_share_menu{border-radius:10px;padding:6px;box-shadow:0 12px 28px rgba(15,23,42,.12);min-width:210px}
.vault_share_target{min-height:38px;padding:0 10px;border-radius:8px;font-size:12px;font-weight:700;line-height:1.25}
.vault_share_limit_note{font-size:10px;font-weight:700}
.vault_grid.vault_grid_list{gap:10px!important}
.vault_grid.vault_grid_list .vault_media_card{grid-template-columns:112px minmax(0,1fr) 210px;min-height:112px;border-radius:14px}
.vault_grid.vault_grid_list .vault_thumb{width:112px;height:112px;border-radius:14px 0 0 14px}
.vault_grid.vault_grid_list .vault_meta{padding:12px}
.vault_grid.vault_grid_list .vault_name{font-size:14px}
.vault_grid.vault_grid_list .vault_card_actions{gap:8px;padding:12px 12px 12px 0}
.vault_preview_modal,.vault_dialog{border-radius:14px;box-shadow:0 18px 48px rgba(15,23,42,.18)}
.vault_preview_modal{padding:14px}
.vault_preview_head strong{font-size:17px;font-weight:700}
.vault_preview_body{border-radius:12px;background:#f8fafc}
.vault_dialog{padding:18px}
.vault_dialog_head strong{font-size:20px;font-weight:700}
.vault_dialog_field span{font-weight:700}
.vault_dialog_input{height:46px;border-radius:10px;font-size:14px;font-weight:500;box-shadow:none}
.vault_dialog_input:focus{box-shadow:0 0 0 3px rgba(36,104,201,.11)}
.vault_dialog_error{border-radius:10px;font-weight:600}
.vault_thumb_video_icon{width:40px;height:40px;box-shadow:none;background:rgba(15,23,42,.68)}
body.i_night .vault_wrapper .vault_panel{background:#242526;border-color:#3a3b3c;box-shadow:none}
body.i_night .vault_page_head{border-bottom-color:#343638}
body.i_night .vault_page_head h1,body.i_night .vault_name,body.i_night .vault_dialog_head strong,body.i_night .vault_dialog_field span{color:#f8fafc}
body.i_night .vault_page_head p,body.i_night .vault_info,body.i_night .vault_usage,body.i_night .vault_stats span{color:#b0b3b8}
body.i_night .vault_stats span,body.i_night .vault_segmented,body.i_night .vault_wrapper .vault_toolbar,body.i_night .vault_media_card{background:#242526;border-color:#3a3b3c;box-shadow:none}
body.i_night .vault_wrapper .vault_dropzone,body.i_night .vault_wrapper .vault_toolbar .i_input,body.i_night .vault_dialog_input{background:#18191a;border-color:#3a3b3c;color:#f8fafc;box-shadow:none}
body.i_night .vault_dropzone_icon{background:#242526;border-color:#3a3b3c;box-shadow:none}
body.i_night .vault_wrapper .vault_dropzone:hover,body.i_night .vault_wrapper .vault_dropzone.is-dragging{background:#202734;border-color:#2468c9}
body.i_night .vault_media_card:hover{border-color:#4b5563;box-shadow:none}
body.i_night .vault_preview_modal,body.i_night .vault_dialog{background:#242526;border-color:#3a3b3c;box-shadow:0 18px 48px rgba(0,0,0,.34)}
body.i_night .vault_upload_progress.is-success{background:#10251c;color:#86efac;border-color:#23543d}
body.i_night .vault_upload_progress.is-error{background:#2b151b;color:#fda4af;border-color:#5a2632}
@media(max-width:760px){.vault_wrapper .vault_panel{padding:14px}.vault_grid{grid-template-columns:1fr}.vault_wrapper .vault_toolbar{padding:10px}.vault_grid.vault_grid_list .vault_media_card{display:flex!important;min-height:0}.vault_grid.vault_grid_list .vault_thumb{width:100%;height:auto;border-radius:14px 14px 0 0}.vault_grid.vault_grid_list .vault_card_actions{padding:0 12px 12px;grid-template-columns:1fr}}
/* v5.4.3 Vault share target SVG icon */
.vault_share_target:after{display:none!important}
.vault_share_target_label{min-width:0;padding-right:10px}
.vault_share_target_icon{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;margin-left:auto;flex:0 0 18px;color:currentColor;opacity:.78}
.vault_share_target_icon svg{display:block;width:18px;height:18px;max-width:18px;max-height:18px}
.vault_share_target:hover .vault_share_target_icon{opacity:1}
/* Vault picker dark mode contrast polish */
.night_mode .vault_picker,
.night-mode .vault_picker,
.dark_mode .vault_picker,
.dark-mode .vault_picker,
body.i_night .vault_picker,
body.night_mode .vault_picker,
body.night-mode .vault_picker,
body.dark_mode .vault_picker,
body.dark-mode .vault_picker,
.night_mode .vault_preview_modal,
.night-mode .vault_preview_modal,
.dark_mode .vault_preview_modal,
.dark-mode .vault_preview_modal,
body.i_night .vault_preview_modal,
body.night_mode .vault_preview_modal,
body.night-mode .vault_preview_modal,
body.dark_mode .vault_preview_modal,
body.dark-mode .vault_preview_modal {
  color: #ffffff;
}
.night_mode .vault_picker_head strong,
.night-mode .vault_picker_head strong,
.dark_mode .vault_picker_head strong,
.dark-mode .vault_picker_head strong,
body.i_night .vault_picker_head strong,
body.night_mode .vault_picker_head strong,
body.night-mode .vault_picker_head strong,
body.dark_mode .vault_picker_head strong,
body.dark-mode .vault_picker_head strong,
.night_mode .vault_empty strong,
.night-mode .vault_empty strong,
.dark_mode .vault_empty strong,
.dark-mode .vault_empty strong,
body.i_night .vault_empty strong,
body.night_mode .vault_empty strong,
body.night-mode .vault_empty strong,
body.dark_mode .vault_empty strong,
body.dark-mode .vault_empty strong {
  color: #ffffff;
}
.night_mode .vault_picker_help,
.night-mode .vault_picker_help,
.dark_mode .vault_picker_help,
.dark-mode .vault_picker_help,
body.i_night .vault_picker_help,
body.night_mode .vault_picker_help,
body.night-mode .vault_picker_help,
body.dark_mode .vault_picker_help,
body.dark-mode .vault_picker_help,
.night_mode .vault_empty,
.night-mode .vault_empty,
.dark_mode .vault_empty,
.dark-mode .vault_empty,
body.i_night .vault_empty,
body.night_mode .vault_empty,
body.night-mode .vault_empty,
body.dark_mode .vault_empty,
body.dark-mode .vault_empty,
.night_mode .vault_empty span,
.night-mode .vault_empty span,
.dark_mode .vault_empty span,
.dark-mode .vault_empty span,
body.i_night .vault_empty span,
body.night_mode .vault_empty span,
body.night-mode .vault_empty span,
body.dark_mode .vault_empty span,
body.dark-mode .vault_empty span {
  color: #f3f6ff;
}
.night_mode .vault_picker_close,
.night-mode .vault_picker_close,
.dark_mode .vault_picker_close,
.dark-mode .vault_picker_close,
body.i_night .vault_picker_close,
body.night_mode .vault_picker_close,
body.night-mode .vault_picker_close,
body.dark_mode .vault_picker_close,
body.dark-mode .vault_picker_close {
  color: #ffffff;
  opacity: 1;
}
.night_mode .vault_picker_close:hover,
.night-mode .vault_picker_close:hover,
.dark_mode .vault_picker_close:hover,
.dark-mode .vault_picker_close:hover,
body.i_night .vault_picker_close:hover,
body.night_mode .vault_picker_close:hover,
body.night-mode .vault_picker_close:hover,
body.dark_mode .vault_picker_close:hover,
body.dark-mode .vault_picker_close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.night_mode .vault_picker_filters select.i_input,
.night-mode .vault_picker_filters select.i_input,
.dark_mode .vault_picker_filters select.i_input,
.dark-mode .vault_picker_filters select.i_input,
body.i_night .vault_picker_filters select.i_input,
body.night_mode .vault_picker_filters select.i_input,
body.night-mode .vault_picker_filters select.i_input,
body.dark_mode .vault_picker_filters select.i_input,
body.dark-mode .vault_picker_filters select.i_input {
  color: #ffffff;
  padding-right: 48px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px 18px;
}
.night_mode .vault_picker_filters .i_input,
.night-mode .vault_picker_filters .i_input,
.dark_mode .vault_picker_filters .i_input,
.dark-mode .vault_picker_filters .i_input,
body.i_night .vault_picker_filters .i_input,
body.night_mode .vault_picker_filters .i_input,
body.night-mode .vault_picker_filters .i_input,
body.dark_mode .vault_picker_filters .i_input,
body.dark-mode .vault_picker_filters .i_input,
.night_mode .vault_picker_filters .i_input option,
.night-mode .vault_picker_filters .i_input option,
.dark_mode .vault_picker_filters .i_input option,
.dark-mode .vault_picker_filters .i_input option,
body.i_night .vault_picker_filters .i_input option,
body.night_mode .vault_picker_filters .i_input option,
body.night-mode .vault_picker_filters .i_input option,
body.dark_mode .vault_picker_filters .i_input option,
body.dark-mode .vault_picker_filters .i_input option {
  color: #ffffff;
}
.night_mode .vault_picker_filters .i_input::placeholder,
.night-mode .vault_picker_filters .i_input::placeholder,
.dark_mode .vault_picker_filters .i_input::placeholder,
.dark-mode .vault_picker_filters .i_input::placeholder,
body.i_night .vault_picker_filters .i_input::placeholder,
body.night_mode .vault_picker_filters .i_input::placeholder,
body.night-mode .vault_picker_filters .i_input::placeholder,
body.dark_mode .vault_picker_filters .i_input::placeholder,
body.dark-mode .vault_picker_filters .i_input::placeholder {
  color: #d7dce8;
  opacity: 1;
}
.night_mode .vault_picker_count,
.night-mode .vault_picker_count,
.dark_mode .vault_picker_count,
.dark-mode .vault_picker_count,
body.i_night .vault_picker_count,
body.night_mode .vault_picker_count,
body.night-mode .vault_picker_count,
body.dark_mode .vault_picker_count,
body.dark-mode .vault_picker_count {
  color: #ffffff;
}
.night_mode .vaultPickerSelectedCount,
.night-mode .vaultPickerSelectedCount,
.dark_mode .vaultPickerSelectedCount,
.dark-mode .vaultPickerSelectedCount,
body.i_night .vaultPickerSelectedCount,
body.night_mode .vaultPickerSelectedCount,
body.night-mode .vaultPickerSelectedCount,
body.dark_mode .vaultPickerSelectedCount,
body.dark-mode .vaultPickerSelectedCount {
  margin-right: 3px;
}
.night_mode .vaultPickerUse.is-disabled,
.night-mode .vaultPickerUse.is-disabled,
.dark_mode .vaultPickerUse.is-disabled,
.dark-mode .vaultPickerUse.is-disabled,
body.i_night .vaultPickerUse.is-disabled,
body.night_mode .vaultPickerUse.is-disabled,
body.night-mode .vaultPickerUse.is-disabled,
body.dark_mode .vaultPickerUse.is-disabled,
body.dark-mode .vaultPickerUse.is-disabled {
  color: rgba(255, 255, 255, 0.78);
}

/* Aura Vault page */
.aura_vault_page {
  --aura-vault-surface: #ffffff;
  --aura-vault-soft: #f8fafc;
  --aura-vault-muted: #f2f5f9;
  --aura-vault-border: #e1e7f0;
  --aura-vault-border-strong: #cfd8e6;
  --aura-vault-text: #141925;
  --aura-vault-subtext: #667386;
  --aura-vault-faint: #8b97a8;
  --aura-vault-brand: #f65169;
  --aura-vault-brand-2: #fab429;
  --aura-vault-blue: #2468c9;
  --aura-vault-danger: #d92352;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 16px 48px;
}

.aura_vault_shell {
  display: grid;
  gap: 14px;
  width: 100%;
}

.aura_vault_page .vault_panel,
.aura_vault_dropzone {
  border: 1px solid var(--aura-vault-border);
  border-radius: 8px;
  background: var(--aura-vault-surface);
  box-shadow: none;
}

.aura_vault_page .vault_panel {
  width: 100%;
  padding: 18px;
}

.aura_vault_hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 22px;
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246, 81, 105, .08), rgba(250, 180, 41, .10)),
    var(--aura-vault-surface);
}

.aura_vault_hero_content {
  min-width: 0;
}

.aura_vault_kicker,
.aura_vault_section_head span {
  display: block;
  margin-bottom: 7px;
  color: var(--aura-vault-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.aura_vault_page .vault_page_head,
.aura_vault_page .aura_vault_hero h1,
.aura_vault_page .aura_vault_hero p {
  border: 0;
  margin: 0;
  padding: 0;
}

.aura_vault_hero h1 {
  color: var(--aura-vault-text);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.08;
}

.aura_vault_hero p {
  max-width: 560px;
  margin-top: 10px;
  color: var(--aura-vault-subtext);
  font-size: 14px;
  line-height: 1.65;
}

.aura_vault_hero_action {
  display: grid;
  align-content: center;
  justify-items: stretch;
  gap: 12px;
  min-width: 0;
}

.aura_vault_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-left: auto;
  border: 1px solid rgba(246, 81, 105, .18);
  border-radius: 8px;
  background: #ffffff;
  color: var(--aura-vault-brand);
}

.aura_vault_icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  stroke: currentColor;
}

.aura_vault_quota {
  max-width: 520px;
  margin-top: 18px;
}

.aura_vault_quota_top,
.aura_vault_quota_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--aura-vault-subtext);
  font-size: 12px;
  font-weight: 700;
}

.aura_vault_quota_top strong {
  color: var(--aura-vault-text);
}

.aura_vault_quota_track {
  height: 8px;
  margin: 8px 0 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1f6;
}

.aura_vault_quota_track span {
  display: block;
  height: 100%;
  min-width: 8px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--aura-vault-brand), var(--aura-vault-brand-2));
}

.aura_vault_stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.aura_vault_stats span {
  display: grid;
  gap: 3px;
  min-height: 72px;
  padding: 14px;
  border: 1px solid var(--aura-vault-border);
  border-radius: 8px;
  background: var(--aura-vault-surface);
  color: var(--aura-vault-subtext);
  font-size: 12px;
  font-weight: 700;
}

.aura_vault_stats strong {
  color: var(--aura-vault-text);
  font-size: 24px;
  line-height: 1;
}

.aura_vault_dropzone {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 88px;
  margin: 0;
  padding: 16px;
  border-style: dashed;
  cursor: pointer;
  transition: border-color .16s ease, background-color .16s ease;
}

.aura_vault_dropzone:hover,
.aura_vault_dropzone.is-dragging {
  border-color: rgba(246, 81, 105, .42);
  background: #fff8f7;
  transform: none;
}

.aura_vault_page .vault_dropzone_icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(246, 81, 105, .16);
  border-radius: 8px;
  background: rgba(246, 81, 105, .08);
  color: var(--aura-vault-brand);
  box-shadow: none;
}

.aura_vault_page .vault_dropzone_icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: currentColor;
}

.vault_dropzone_copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.aura_vault_page .vault_dropzone_text {
  color: var(--aura-vault-text);
  font-size: 14px;
  font-weight: 800;
}

.aura_vault_page .vault_dropzone_hint {
  color: var(--aura-vault-subtext);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.aura_vault_section_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.aura_vault_section_head strong {
  display: block;
  color: var(--aura-vault-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.aura_vault_controls {
  display: grid;
  gap: 14px;
}

.aura_vault_page .vault_toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(118px, .8fr) minmax(130px, 1fr);
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.aura_vault_page .vault_toolbar #vaultSearch {
  grid-column: span 3;
}

.aura_vault_page .vault_toolbar .i_input,
.aura_vault_page .vault_bulk_bar .i_input,
.aura_vault_page .vault_picker_filters .i_input,
.aura_vault_page .vault_dialog_input {
  width: 100%;
  height: 42px;
  min-height: 42px;
  border: 1px solid var(--aura-vault-border);
  border-radius: 8px;
  background-color: #ffffff;
  color: var(--aura-vault-text);
  font-size: 13px;
  font-weight: 600;
  outline: 0;
  box-shadow: none;
}

.aura_vault_page .vault_toolbar .i_input:focus,
.aura_vault_page .vault_bulk_bar .i_input:focus,
.aura_vault_page .vault_picker_filters .i_input:focus,
.aura_vault_page .vault_dialog_input:focus {
  border-color: rgba(246, 81, 105, .55);
  box-shadow: 0 0 0 3px rgba(246, 81, 105, .10);
}

.aura_vault_page .vault_toolbar button {
  width: 100%;
}

.aura_vault_page .vault_primary_btn,
.aura_vault_page .vault_secondary_btn,
.aura_vault_page .vault_delete_btn,
.aura_vault_page .vault_view_btn,
.vault_preview_modal .vault_primary_btn,
.vault_preview_modal .vault_secondary_btn,
.vault_preview_modal .vault_delete_btn,
.vault_dialog .vault_primary_btn,
.vault_dialog .vault_secondary_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, opacity .16s ease;
  transform: none;
  box-shadow: none;
}

.aura_vault_page .vault_primary_btn,
.vault_preview_modal .vault_primary_btn,
.vault_dialog .vault_primary_btn {
  border-color: var(--aura-vault-brand);
  background: linear-gradient(135deg, var(--aura-vault-brand), var(--aura-vault-brand-2));
  color: #ffffff;
  padding: 0 16px;
}

.aura_vault_page .vault_secondary_btn,
.aura_vault_page .vault_view_btn,
.vault_preview_modal .vault_secondary_btn,
.vault_dialog .vault_secondary_btn {
  border-color: #f0d7dc;
  background: #fff5f7;
  color: var(--aura-vault-brand);
  padding: 0 14px;
}

.aura_vault_page .vault_delete_btn,
.vault_preview_modal .vault_delete_btn {
  border-color: #ffd4de;
  background: #fff4f6;
  color: var(--aura-vault-danger);
  padding: 0 14px;
}

.aura_vault_page .vault_primary_btn:hover,
.aura_vault_page .vault_secondary_btn:hover,
.aura_vault_page .vault_view_btn:hover,
.aura_vault_page .vault_delete_btn:hover {
  opacity: .92;
  transform: none;
  box-shadow: none;
}

.aura_vault_library {
  display: grid;
  gap: 14px;
}

.aura_vault_library_head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.aura_vault_page .vault_segmented {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--aura-vault-border);
  border-radius: 8px;
  background: var(--aura-vault-soft);
}

.aura_vault_page .vault_icon_btn {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--aura-vault-subtext);
  font-size: 12px;
  font-weight: 800;
  padding: 0 12px;
}

.aura_vault_page .vault_icon_btn.is-active {
  background: #ffffff;
  color: var(--aura-vault-text);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
}

.aura_vault_page .vault_bulk_bar {
  display: none;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 10px;
  border: 1px solid #f0d7dc;
  border-radius: 8px;
  background: #fff7f8;
  color: var(--aura-vault-brand);
  font-weight: 800;
}

.aura_vault_page .vault_bulk_bar.is-active {
  display: flex;
  flex-wrap: wrap;
}

.aura_vault_page .vault_bulk_bar .i_input {
  width: auto;
  min-width: 170px;
}

.aura_vault_page .vault_upload_progress {
  display: none;
  margin: 0;
  padding: 11px 12px;
  border: 1px solid #f0d7dc;
  border-radius: 8px;
  background: #fff7f8;
  color: var(--aura-vault-brand);
  font-size: 13px;
  font-weight: 700;
}

.aura_vault_page .vault_upload_progress.is-active:not(:empty) {
  display: block;
}

.aura_vault_page .vault_upload_progress.is-success {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.aura_vault_page .vault_upload_progress.is-error {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #be123c;
}

.aura_vault_page .vault_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(206px, 1fr));
  gap: 12px;
  align-items: start;
}

.aura_vault_page .vault_media_card,
.vault_picker .vault_media_card {
  min-width: 0;
  overflow: visible;
  border: 1px solid var(--aura-vault-border);
  border-radius: 8px;
  background: var(--aura-vault-surface);
  box-shadow: none;
  transition: border-color .16s ease, background-color .16s ease;
}

.aura_vault_page .vault_media_card:hover,
.vault_picker .vault_media_card:hover {
  border-color: var(--aura-vault-border-strong);
  background: #fffdfd;
  transform: none;
  box-shadow: none;
}

.aura_vault_page .vault_thumb,
.vault_picker .vault_thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(135deg, rgba(246, 81, 105, .08), rgba(250, 180, 41, .10)),
    var(--aura-vault-muted);
}

.aura_vault_page .vault_thumb img,
.vault_picker .vault_thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.aura_vault_page .vault_file_icon,
.vault_picker .vault_file_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--aura-vault-brand);
}

.aura_vault_page .vault_file_icon svg,
.vault_picker .vault_file_icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: currentColor;
}

.aura_vault_page .vault_type_badge,
.vault_picker .vault_type_badge,
.aura_vault_page .vault_processing_badge {
  position: absolute;
  left: 8px;
  top: 8px;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(20, 25, 37, .76);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.aura_vault_page .vault_processing_badge {
  left: auto;
  right: 8px;
  background: rgba(246, 81, 105, .90);
}

.aura_vault_page .vault_pick_check,
.vault_picker .vault_pick_check {
  position: absolute;
  top: 8px;
  right: 8px;
  left: auto;
  z-index: 4;
  padding: 4px;
  border: 1px solid var(--aura-vault-border);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: none;
}

.aura_vault_page .vault_pick_check input,
.vault_picker .vault_pick_check input {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--aura-vault-brand);
}

.aura_vault_page .vault_meta,
.vault_picker .vault_meta {
  padding: 11px 12px 9px;
}

.aura_vault_page .vault_name,
.vault_picker .vault_name {
  color: var(--aura-vault-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aura_vault_page .vault_info,
.aura_vault_page .vault_usage,
.vault_picker .vault_info,
.vault_picker .vault_usage {
  margin-top: 4px;
  color: var(--aura-vault-subtext);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.aura_vault_page .vault_card_actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 12px 12px;
}

.aura_vault_page .vault_card_actions .vault_view_btn {
  grid-column: 1 / -1;
}

.aura_vault_page .vault_card_actions .vault_share_wrap,
.aura_vault_page .vault_card_actions .vault_use_btn,
.aura_vault_page .vault_card_actions .vault_delete_btn,
.aura_vault_page .vault_card_actions .vault_view_btn {
  width: 100%;
  min-width: 0;
}

.aura_vault_page .vault_card_actions .vault_use_btn,
.aura_vault_page .vault_card_actions .vault_delete_btn,
.aura_vault_page .vault_card_actions .vault_view_btn {
  min-height: 36px;
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aura_vault_page .vault_share_menu,
.vault_preview_modal .vault_share_menu {
  left: 0;
  right: auto;
  bottom: calc(100% + 6px);
  display: none;
  min-width: 212px;
  max-width: min(250px, calc(100vw - 32px));
  padding: 6px;
  border: 1px solid var(--aura-vault-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
}

.aura_vault_page .vault_share_wrap:hover .vault_share_menu,
.aura_vault_page .vault_media_card.vault_menu_open .vault_share_menu {
  display: grid;
  gap: 6px;
}

.aura_vault_page .vault_share_target,
.vault_preview_modal .vault_share_target {
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: var(--aura-vault-soft);
  color: var(--aura-vault-text);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.aura_vault_page .vault_share_target:hover,
.vault_preview_modal .vault_share_target:hover {
  background: #fff5f7;
  color: var(--aura-vault-brand);
}

.aura_vault_page .vault_empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 220px;
  padding: 34px 18px;
  border: 1px dashed #f0c5cf;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffafa 0%, #fff7f8 100%);
  color: var(--aura-vault-subtext);
  text-align: center;
}

.aura_vault_page .vault_empty strong {
  color: var(--aura-vault-text);
  font-size: 18px;
  font-weight: 900;
}

.aura_vault_page .vault_empty span {
  max-width: 380px;
  color: var(--aura-vault-subtext);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.aura_vault_page .vault_grid.vault_grid_list {
  grid-template-columns: 1fr;
  gap: 10px;
}

.aura_vault_page .vault_grid.vault_grid_list .vault_media_card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 214px;
  align-items: center;
}

.aura_vault_page .vault_grid.vault_grid_list .vault_thumb {
  width: 118px;
  height: 118px;
  border-radius: 8px 0 0 8px;
}

.aura_vault_page .vault_grid.vault_grid_list .vault_card_actions {
  padding: 12px 12px 12px 0;
}

.vault_picker_overlay,
.vault_preview_overlay,
.vault_dialog_overlay {
  background: rgba(20, 25, 37, .62);
}

.vault_picker,
.vault_preview_modal,
.vault_dialog {
  border: 1px solid var(--aura-vault-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .22);
}

.vault_picker_head,
.vault_picker_actions,
.vault_preview_head,
.vault_preview_actions,
.vault_dialog_actions {
  gap: 10px;
}

.vault_picker_head strong,
.vault_preview_head strong,
.vault_dialog_head strong {
  color: var(--aura-vault-text);
  font-weight: 900;
}

.vault_picker_help,
.vault_preview_head span,
.vault_dialog_head span {
  color: var(--aura-vault-subtext);
  font-weight: 600;
}

.vault_picker_close,
.vault_dialog_close {
  border-radius: 8px;
  color: var(--aura-vault-text);
}

.vault_preview_body {
  border-radius: 8px;
  background: var(--aura-vault-soft);
}

.night_mode .aura_vault_page,
.night-mode .aura_vault_page,
.dark_mode .aura_vault_page,
.dark-mode .aura_vault_page,
body.i_night .aura_vault_page,
body.night_mode .aura_vault_page,
body.night-mode .aura_vault_page,
body.dark_mode .aura_vault_page,
body.dark-mode .aura_vault_page {
  --aura-vault-surface: #242526;
  --aura-vault-soft: #1d1f23;
  --aura-vault-muted: #18191c;
  --aura-vault-border: #373a42;
  --aura-vault-border-strong: #4a4f5a;
  --aura-vault-text: #f8fafc;
  --aura-vault-subtext: #b6bdca;
  --aura-vault-faint: #8f98a8;
}

.night_mode .aura_vault_hero,
.night-mode .aura_vault_hero,
.dark_mode .aura_vault_hero,
.dark-mode .aura_vault_hero,
body.i_night .aura_vault_hero,
body.night_mode .aura_vault_hero,
body.night-mode .aura_vault_hero,
body.dark_mode .aura_vault_hero,
body.dark-mode .aura_vault_hero {
  background:
    linear-gradient(135deg, rgba(246, 81, 105, .14), rgba(250, 180, 41, .08)),
    var(--aura-vault-surface);
}

.night_mode .aura_vault_icon,
.night-mode .aura_vault_icon,
.dark_mode .aura_vault_icon,
.dark-mode .aura_vault_icon,
body.i_night .aura_vault_icon,
body.night_mode .aura_vault_icon,
body.night-mode .aura_vault_icon,
body.dark_mode .aura_vault_icon,
body.dark-mode .aura_vault_icon,
.night_mode .aura_vault_page .vault_file_icon,
.night-mode .aura_vault_page .vault_file_icon,
.dark_mode .aura_vault_page .vault_file_icon,
.dark-mode .aura_vault_page .vault_file_icon,
body.i_night .aura_vault_page .vault_file_icon {
  background: #1d1f23;
  border-color: #373a42;
}

.night_mode .aura_vault_quota_track,
.night-mode .aura_vault_quota_track,
.dark_mode .aura_vault_quota_track,
.dark-mode .aura_vault_quota_track,
body.i_night .aura_vault_quota_track {
  background: #18191c;
}

.night_mode .aura_vault_dropzone:hover,
.night-mode .aura_vault_dropzone:hover,
.dark_mode .aura_vault_dropzone:hover,
.dark-mode .aura_vault_dropzone:hover,
body.i_night .aura_vault_dropzone:hover,
body.i_night .aura_vault_dropzone.is-dragging {
  background: #2a2428;
}

.night_mode .aura_vault_page .vault_toolbar .i_input,
.night-mode .aura_vault_page .vault_toolbar .i_input,
.dark_mode .aura_vault_page .vault_toolbar .i_input,
.dark-mode .aura_vault_page .vault_toolbar .i_input,
body.i_night .aura_vault_page .vault_toolbar .i_input,
body.i_night .aura_vault_page .vault_bulk_bar .i_input,
body.i_night .aura_vault_page .vault_dialog_input {
  background: #18191c;
  color: #f8fafc;
}

.night_mode .aura_vault_page .vault_icon_btn.is-active,
.night-mode .aura_vault_page .vault_icon_btn.is-active,
.dark_mode .aura_vault_page .vault_icon_btn.is-active,
.dark-mode .aura_vault_page .vault_icon_btn.is-active,
body.i_night .aura_vault_page .vault_icon_btn.is-active {
  background: #30333b;
  color: #ffffff;
}

.night_mode .aura_vault_page .vault_media_card:hover,
.night-mode .aura_vault_page .vault_media_card:hover,
.dark_mode .aura_vault_page .vault_media_card:hover,
.dark-mode .aura_vault_page .vault_media_card:hover,
body.i_night .aura_vault_page .vault_media_card:hover {
  background: #27292f;
}

.night_mode .aura_vault_page .vault_empty,
.night-mode .aura_vault_page .vault_empty,
.dark_mode .aura_vault_page .vault_empty,
.dark-mode .aura_vault_page .vault_empty,
body.i_night .aura_vault_page .vault_empty {
  border-color: #51313a;
  background: #221d21;
}

.night_mode .aura_vault_page .vault_share_menu,
.night-mode .aura_vault_page .vault_share_menu,
.dark_mode .aura_vault_page .vault_share_menu,
.dark-mode .aura_vault_page .vault_share_menu,
body.i_night .aura_vault_page .vault_share_menu,
body.i_night .vault_picker,
body.i_night .vault_preview_modal,
body.i_night .vault_dialog {
  background: #242526;
  border-color: #373a42;
}

@media (max-width: 1180px) {
  .aura_vault_page {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 760px) {
  .aura_vault_page {
    padding: 14px 10px 72px;
  }

  .aura_vault_page .vault_panel {
    padding: 14px;
  }

  .aura_vault_hero,
  .aura_vault_stats,
  .aura_vault_page .vault_toolbar,
  .aura_vault_library_head {
    grid-template-columns: 1fr;
  }

  .aura_vault_page .vault_toolbar #vaultSearch {
    grid-column: auto;
  }

  .aura_vault_hero_action {
    justify-items: stretch;
  }

  .aura_vault_icon {
    display: none;
  }

  .aura_vault_page .vault_grid {
    grid-template-columns: 1fr;
  }

  .aura_vault_page .vault_grid.vault_grid_list .vault_media_card {
    display: flex;
  }

  .aura_vault_page .vault_grid.vault_grid_list .vault_thumb {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
  }

  .aura_vault_page .vault_grid.vault_grid_list .vault_card_actions,
  .aura_vault_page .vault_card_actions {
    grid-template-columns: 1fr;
    padding: 0 12px 12px;
  }

  .aura_vault_page .vault_card_actions .vault_view_btn {
    grid-column: auto;
  }

  .aura_vault_page .vault_bulk_bar {
    align-items: stretch;
  }

  .aura_vault_page .vault_bulk_bar .i_input,
  .aura_vault_page .vault_bulk_bar button,
  .aura_vault_page .vault_segmented,
  .aura_vault_page #vaultCleanupUnused {
    width: 100%;
  }

  .aura_vault_page .vault_segmented button {
    flex: 1;
  }
}

/* Aura Vault priority fixes */
.vault_wrapper .aura_vault_page {
  max-width: 900px;
}

.aura_vault_page .aura_vault_hero {
  background:
    linear-gradient(135deg, rgba(246, 81, 105, .08), rgba(250, 180, 41, .10)),
    var(--aura-vault-surface);
}

.night_mode .aura_vault_page .aura_vault_hero,
.night-mode .aura_vault_page .aura_vault_hero,
.dark_mode .aura_vault_page .aura_vault_hero,
.dark-mode .aura_vault_page .aura_vault_hero,
body.i_night .aura_vault_page .aura_vault_hero,
body.night_mode .aura_vault_page .aura_vault_hero,
body.night-mode .aura_vault_page .aura_vault_hero,
body.dark_mode .aura_vault_page .aura_vault_hero,
body.dark-mode .aura_vault_page .aura_vault_hero {
  background:
    linear-gradient(135deg, rgba(246, 81, 105, .14), rgba(250, 180, 41, .08)),
    var(--aura-vault-surface);
}

@media (max-width: 1180px) {
  .vault_wrapper .aura_vault_page {
    max-width: 100%;
  }
}

/* Aura Vault action color overrides */
.aura_vault_page #vaultNewFolder,
.aura_vault_page #vaultRenameFolder,
.aura_vault_page #vaultCleanupUnused,
.aura_vault_page #vaultBulkMove,
.aura_vault_page #vaultClearSelection {
  border-color: #f0d7dc;
  background: #fff5f7;
  color: var(--aura-vault-brand);
  box-shadow: none;
}

.aura_vault_page #vaultNewFolder:hover,
.aura_vault_page #vaultRenameFolder:hover,
.aura_vault_page #vaultCleanupUnused:hover,
.aura_vault_page #vaultBulkMove:hover,
.aura_vault_page #vaultClearSelection:hover {
  border-color: #edc4cc;
  background: #ffeef2;
  color: var(--aura-vault-brand);
  transform: none;
  box-shadow: none;
}

.aura_vault_page #vaultDeleteFolder,
.aura_vault_page #vaultBulkDelete {
  border-color: #ffd4de;
  background: #fff4f6;
  color: var(--aura-vault-danger);
  box-shadow: none;
}

.aura_vault_page #vaultDeleteFolder:hover,
.aura_vault_page #vaultBulkDelete:hover {
  border-color: #ffc4d1;
  background: #ffe9ee;
  color: var(--aura-vault-danger);
  transform: none;
  box-shadow: none;
}

/* Aura Vault color harmonization */
.aura_vault_page {
  --aura-vault-surface: #ffffff;
  --aura-vault-soft: #f7f9fc;
  --aura-vault-muted: #eef2f7;
  --aura-vault-border: #dfe6f0;
  --aura-vault-border-strong: #cfd8e6;
  --aura-vault-text: #141925;
  --aura-vault-subtext: #667386;
  --aura-vault-brand: #3f5edb;
  --aura-vault-brand-2: #6177e8;
  --aura-vault-primary: #111827;
  --aura-vault-primary-hover: #1d2433;
  --aura-vault-danger: #b94a5d;
}

.vault_wrapper .aura_vault_page .vault_panel,
.vault_wrapper .aura_vault_dropzone {
  background: #ffffff;
  border-color: #dfe6f0;
}

.vault_wrapper .aura_vault_page .aura_vault_hero {
  background: #ffffff;
}

.vault_wrapper .aura_vault_kicker,
.vault_wrapper .aura_vault_section_head span {
  color: #3f5edb;
}

.vault_wrapper .aura_vault_quota_track {
  background: #edf1f6;
}

.vault_wrapper .aura_vault_quota_track span {
  background: #3f5edb;
}

.vault_wrapper .aura_vault_icon,
.vault_wrapper .aura_vault_page .vault_dropzone_icon,
.vault_wrapper .aura_vault_page .vault_file_icon {
  background: #f0f4ff;
  border-color: #d9e2ff;
  color: #3f5edb;
}

.vault_wrapper .aura_vault_dropzone {
  background: #f8fafc;
  border-color: #d6deea;
}

.vault_wrapper .aura_vault_dropzone:hover,
.vault_wrapper .aura_vault_dropzone.is-dragging {
  background: #f4f7fb;
  border-color: #bfc9dc;
}

.vault_wrapper .aura_vault_page .vault_primary_btn,
.vault_wrapper .vault_preview_modal .vault_primary_btn,
.vault_wrapper .vault_dialog .vault_primary_btn {
  background: var(--aura-vault-primary);
  border-color: var(--aura-vault-primary);
  color: #ffffff;
}

.vault_wrapper .aura_vault_page .vault_primary_btn:hover,
.vault_wrapper .vault_preview_modal .vault_primary_btn:hover,
.vault_wrapper .vault_dialog .vault_primary_btn:hover {
  background: var(--aura-vault-primary-hover);
  border-color: var(--aura-vault-primary-hover);
}

.vault_wrapper .aura_vault_page .vault_secondary_btn,
.vault_wrapper .aura_vault_page .vault_view_btn,
.vault_wrapper .aura_vault_page #vaultNewFolder,
.vault_wrapper .aura_vault_page #vaultRenameFolder,
.vault_wrapper .aura_vault_page #vaultCleanupUnused,
.vault_wrapper .aura_vault_page #vaultBulkMove,
.vault_wrapper .aura_vault_page #vaultClearSelection {
  background: #f7f9fc;
  border-color: #dfe6f0;
  color: #303a4f;
}

.vault_wrapper .aura_vault_page .vault_secondary_btn:hover,
.vault_wrapper .aura_vault_page .vault_view_btn:hover,
.vault_wrapper .aura_vault_page #vaultNewFolder:hover,
.vault_wrapper .aura_vault_page #vaultRenameFolder:hover,
.vault_wrapper .aura_vault_page #vaultCleanupUnused:hover,
.vault_wrapper .aura_vault_page #vaultBulkMove:hover,
.vault_wrapper .aura_vault_page #vaultClearSelection:hover {
  background: #eef2f7;
  border-color: #cfd8e6;
  color: #141925;
}

.vault_wrapper .aura_vault_page #vaultDeleteFolder,
.vault_wrapper .aura_vault_page #vaultBulkDelete,
.vault_wrapper .aura_vault_page .vault_delete_btn {
  background: #fff7f8;
  border-color: #efd6dc;
  color: var(--aura-vault-danger);
}

.vault_wrapper .aura_vault_page #vaultDeleteFolder:hover,
.vault_wrapper .aura_vault_page #vaultBulkDelete:hover,
.vault_wrapper .aura_vault_page .vault_delete_btn:hover {
  background: #fff0f3;
  border-color: #e7c4cc;
  color: var(--aura-vault-danger);
}

.vault_wrapper .aura_vault_page .vault_segmented {
  background: #f4f7fb;
  border-color: #dfe6f0;
}

.vault_wrapper .aura_vault_page .vault_icon_btn {
  color: #667386;
}

.vault_wrapper .aura_vault_page .vault_icon_btn.is-active {
  background: #ffffff;
  color: #141925;
  border: 1px solid #dfe6f0;
}

.vault_wrapper .aura_vault_page .vault_empty {
  background: #fbfcff;
  border-color: #d6deea;
}

.vault_wrapper .aura_vault_page .vault_type_badge,
.vault_wrapper .vault_picker .vault_type_badge {
  background: rgba(17, 24, 39, .78);
}

/* Aura Vault radius harmonization */
.aura_vault_page {
  --aura-vault-radius-shell: 24px;
  --aura-vault-radius-panel: 20px;
  --aura-vault-radius-control: 16px;
  --aura-vault-radius-small: 12px;
}

.vault_wrapper .aura_vault_page .vault_panel,
.vault_wrapper .aura_vault_page .aura_vault_hero,
.vault_wrapper .aura_vault_dropzone,
.vault_wrapper .aura_vault_stats span,
.vault_wrapper .aura_vault_page .vault_empty {
  border-radius: var(--aura-vault-radius-panel);
}

.vault_wrapper .aura_vault_page .vault_toolbar .i_input,
.vault_wrapper .aura_vault_page .vault_bulk_bar .i_input,
.vault_wrapper .aura_vault_page .vault_picker_filters .i_input,
.vault_wrapper .aura_vault_page .vault_dialog_input,
.vault_wrapper .aura_vault_page .vault_primary_btn,
.vault_wrapper .aura_vault_page .vault_secondary_btn,
.vault_wrapper .aura_vault_page .vault_delete_btn,
.vault_wrapper .aura_vault_page .vault_view_btn,
.vault_wrapper .aura_vault_page #vaultNewFolder,
.vault_wrapper .aura_vault_page #vaultRenameFolder,
.vault_wrapper .aura_vault_page #vaultCleanupUnused,
.vault_wrapper .aura_vault_page #vaultDeleteFolder,
.vault_wrapper .aura_vault_page #vaultBulkMove,
.vault_wrapper .aura_vault_page #vaultBulkDelete,
.vault_wrapper .aura_vault_page #vaultClearSelection {
  border-radius: var(--aura-vault-radius-control);
}

.vault_wrapper .aura_vault_icon,
.vault_wrapper .aura_vault_page .vault_dropzone_icon,
.vault_wrapper .aura_vault_page .vault_file_icon,
.vault_wrapper .aura_vault_page .vault_segmented,
.vault_wrapper .aura_vault_page .vault_icon_btn {
  border-radius: var(--aura-vault-radius-control);
}

.vault_wrapper .aura_vault_page .vault_media_card,
.vault_wrapper .vault_picker .vault_media_card {
  border-radius: var(--aura-vault-radius-panel);
}

.vault_wrapper .aura_vault_page .vault_thumb,
.vault_wrapper .vault_picker .vault_thumb {
  border-radius: var(--aura-vault-radius-panel) var(--aura-vault-radius-panel) 0 0;
}

.vault_wrapper .aura_vault_page .vault_grid.vault_grid_list .vault_thumb {
  border-radius: var(--aura-vault-radius-panel) 0 0 var(--aura-vault-radius-panel);
}

.vault_wrapper .aura_vault_page .vault_pick_check,
.vault_wrapper .vault_picker .vault_pick_check,
.vault_wrapper .aura_vault_page .vault_type_badge,
.vault_wrapper .vault_picker .vault_type_badge,
.vault_wrapper .aura_vault_page .vault_processing_badge {
  border-radius: 999px;
}

.vault_wrapper .aura_vault_page .vault_share_menu,
.vault_wrapper .aura_vault_page .vault_share_target,
.vault_wrapper .vault_preview_modal .vault_share_menu,
.vault_wrapper .vault_preview_modal .vault_share_target {
  border-radius: var(--aura-vault-radius-small);
}

.vault_picker,
.vault_preview_modal,
.vault_dialog {
  border-radius: var(--aura-vault-radius-shell);
}

.vault_preview_body,
.vault_dialog_error,
.vault_upload_progress,
.aura_vault_page .vault_upload_progress {
  border-radius: var(--aura-vault-radius-control);
}

.vault_skeleton {
  border-radius: var(--aura-vault-radius-panel);
}

@media (max-width: 760px) {
  .vault_wrapper .aura_vault_page .vault_grid.vault_grid_list .vault_thumb {
    border-radius: var(--aura-vault-radius-panel) var(--aura-vault-radius-panel) 0 0;
  }
}

/* Aura Audio Rooms surface polish */
.audio-rooms-page,
.audio-room-page {
  --aura-audio-panel: #ffffff;
  --aura-audio-soft: #f7f9fc;
  --aura-audio-soft-strong: #eef3fb;
  --aura-audio-border: #dfe6f0;
  --aura-audio-text: #172033;
  --aura-audio-muted: #68758d;
  --aura-audio-primary: #101827;
  --aura-audio-primary-hover: #182235;
  --aura-audio-primary-text: #ffffff;
  --aura-audio-accent: #3f5edb;
  --aura-audio-accent-soft: #f2f5ff;
  --aura-audio-live: #f05d72;
  --aura-audio-live-soft: #fff4f6;
  --aura-audio-danger: #b94a5d;
  --aura-audio-danger-soft: #fff7f8;
  --aura-audio-shadow: 0 18px 46px rgba(15, 23, 42, .08);
  --aura-audio-radius-panel: 20px;
  --aura-audio-radius-control: 16px;
  --aura-audio-radius-small: 12px;
}

.audio-rooms-hero,
.audio-rooms-toolbar,
.audio-room-card,
.audio-room-empty-state,
.audio-room-main,
.audio-room-side,
.audio-room-requests,
.audio-room-modal-card,
.audio-room-audience-card,
.audio-room-participants-card {
  background: var(--aura-audio-panel) !important;
  border: 1px solid var(--aura-audio-border) !important;
  border-radius: var(--aura-audio-radius-panel) !important;
  box-shadow: none !important;
}

.audio-room-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.audio-room-main {
  min-width: 0;
  padding: 18px;
}

.audio-rooms-hero {
  padding: 26px !important;
  background: linear-gradient(135deg, #fbfcff 0%, #f7f9fc 100%) !important;
}

.audio-rooms-eyebrow,
.audio-room-title-block span,
.audio-room-modal-kicker {
  color: var(--aura-audio-live) !important;
  font-weight: 900;
  letter-spacing: 0;
}

.audio-rooms-hero h1,
.audio-room-title-block h1,
.audio-room-modal-card h2,
.audio-room-empty-state h2,
.audio-room-card h2,
.audio-room-section-head h2,
.audio-room-side h2,
.audio-room-requests h2,
.audio-room-participants-card h2 {
  color: var(--aura-audio-text) !important;
  letter-spacing: 0;
}

.audio-rooms-hero p,
.audio-room-card p,
.audio-room-empty-state p,
.audio-room-modal-intro,
.audio-room-form-note,
.audio-room-setting-copy,
.audio-room-setting-head > div > span,
.audio-room-person span,
.audio-room-chat-item span {
  color: var(--aura-audio-muted) !important;
}

.audio-rooms-hero-pills span,
.audio-room-card-top span,
.audio-room-card-meta span,
.audio-room-modal-summary span,
.audio-room-setting-status {
  border: 1px solid var(--aura-audio-border);
  border-radius: 999px;
  background: var(--aura-audio-soft) !important;
  color: var(--aura-audio-muted) !important;
}

.audio-rooms-live-preview {
  border-color: var(--aura-audio-border) !important;
  border-radius: var(--aura-audio-radius-panel) !important;
  background: var(--aura-audio-panel) !important;
  box-shadow: var(--aura-audio-shadow) !important;
}

.audio-rooms-preview-identity {
  display: flex;
  margin-top: 18px;
}

.audio-rooms-preview-identity .audio-rooms-feature-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--aura-audio-border);
  border-radius: 50%;
  background: var(--aura-audio-soft);
  color: var(--aura-audio-text);
}

.audio-rooms-preview-identity .audio-rooms-feature-icon svg {
  width: 34px !important;
  height: 34px !important;
  display: block;
  fill: currentColor !important;
}

.audio-rooms-live-badge,
.audio-room-option-badge {
  background: var(--aura-audio-live-soft) !important;
  color: var(--aura-audio-live) !important;
}

.audio-rooms-live-badge:before,
.audio-rooms-wave span,
.audio-room-empty-visual span {
  background: var(--aura-audio-live) !important;
}

.audio-rooms-avatar-stack span {
  border-color: var(--aura-audio-panel);
  background: var(--aura-audio-soft-strong);
}

.audio-rooms-preview-meta strong,
.audio-rooms-toolbar strong,
.audio-room-field-label,
.audio-room-setting-head .audio-room-field-label,
.audio-room-toggle-line span,
.audio-room-option-title,
.audio-room-option-card,
.audio-room-option-card strong,
.audio-room-timebar span,
.audio-room-person strong,
.audio-room-chat-item strong {
  color: var(--aura-audio-text) !important;
}

.audio-rooms-toolbar {
  padding: 12px !important;
  gap: 12px;
}

.audio-rooms-toolbar > div,
.audio-room-timebar,
.audio-room-chat-list,
.audio-room-create-loading,
.audio-room-schedule-picker,
.audio-room-payment-note {
  border: 1px solid var(--aura-audio-border) !important;
  border-radius: var(--aura-audio-radius-control) !important;
  background: var(--aura-audio-soft) !important;
}

.audio-room-stat-icon,
.audio-room-empty-visual {
  border-radius: var(--aura-audio-radius-control) !important;
  background: var(--aura-audio-accent-soft) !important;
}

.audio-room-stat-icon svg,
.audio-room-empty-visual svg {
  fill: var(--aura-audio-accent) !important;
}

.audio-room-primary,
.audio-room-chat-form button,
.audio-room-person-actions button,
.audio-room-request-row button {
  min-height: 46px;
  border-radius: var(--aura-audio-radius-control) !important;
  background: var(--aura-audio-primary) !important;
  color: var(--aura-audio-primary-text) !important;
  font-weight: 800;
  box-shadow: none !important;
}

.audio-room-primary:hover,
.audio-room-chat-form button:hover,
.audio-room-person-actions button:hover,
.audio-room-request-row button:hover {
  background: var(--aura-audio-primary-hover) !important;
  transform: translateY(-1px);
}

.audio-room-control {
  min-height: 42px;
  border-radius: var(--aura-audio-radius-control) !important;
  background: var(--aura-audio-soft-strong) !important;
  color: var(--aura-audio-text) !important;
  font-weight: 800;
}

.audio-room-control.danger {
  background: var(--aura-audio-danger-soft) !important;
  color: var(--aura-audio-danger) !important;
  border: 1px solid #efd6dc;
}

.audio-room-button-icon {
  border-radius: 12px;
  background: rgba(255, 255, 255, .18);
}

.audio-room-option-card,
.audio-room-create-panel,
.audio-room-audience-user,
.audio-room-person {
  border-color: var(--aura-audio-border) !important;
  border-radius: var(--aura-audio-radius-control) !important;
  background: var(--aura-audio-panel) !important;
}

.audio-room-option-card:hover,
.audio-room-option-card:focus,
.audio-room-option-card.is-selected,
.audio-room-segmented button.is-selected,
.audio-room-secondary:hover {
  border-color: rgba(63, 94, 219, .42) !important;
  background: var(--aura-audio-accent-soft) !important;
  color: var(--aura-audio-accent) !important;
  box-shadow: none !important;
}

.audio-room-create-panel,
.audio-room-schedule-picker {
  padding: 16px;
}

.audio-room-title-field input,
.audio-room-create-panel select,
.audio-room-create-panel input[type="date"],
.audio-room-create-panel input[type="time"],
.audio-room-create-panel input[type="number"],
.audio-room-chat-form input,
.audio-room-segmented button,
.audio-room-secondary {
  border-color: var(--aura-audio-border) !important;
  border-radius: var(--aura-audio-radius-control) !important;
  background: var(--aura-audio-soft) !important;
  color: var(--aura-audio-text) !important;
}

.audio-room-title-field input:focus,
.audio-room-chat-form input:focus {
  border-color: rgba(63, 94, 219, .46) !important;
  background: var(--aura-audio-panel) !important;
  box-shadow: 0 0 0 3px rgba(63, 94, 219, .10) !important;
}

.audio-room-modal {
  background: rgba(15, 23, 42, .42) !important;
}

.audio-room-modal-card,
.audio-room-audience-card,
.audio-room-participants-card {
  border-radius: 24px !important;
  box-shadow: 0 28px 72px rgba(15, 23, 42, .22) !important;
}

.audio-room-modal-close {
  width: 40px;
  height: 40px;
  right: 14px;
  top: 14px;
  border: 1px solid var(--aura-audio-border) !important;
  border-radius: var(--aura-audio-radius-control) !important;
  background: var(--aura-audio-soft) !important;
  color: var(--aura-audio-muted) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.audio-room-title-block {
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid var(--aura-audio-border);
  border-radius: var(--aura-audio-radius-panel);
  background: linear-gradient(135deg, #fbfcff 0%, #f7f9fc 100%);
}

.audio-room-statusbar {
  margin-bottom: 12px;
}

.audio-room-back {
  color: var(--aura-audio-accent) !important;
  font-weight: 800;
}

.audio-room-statusbar [data-audio-room-connection] {
  background: var(--aura-audio-live-soft) !important;
  color: var(--aura-audio-live) !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .12) !important;
}

.audio-room-timebar.is-warning,
.audio-room-payment-note {
  border-color: rgba(240, 93, 114, .28) !important;
  background: var(--aura-audio-live-soft) !important;
}

.audio-room-person {
  background: var(--aura-audio-soft) !important;
}

.audio-room-person img,
.audio-room-person-fallback {
  border: 3px solid var(--aura-audio-panel);
}

.audio-room-speaking-indicator {
  background: #f0fbf5 !important;
  color: #26734d !important;
}

.audio-room-chat-form {
  align-items: center;
}

.audio-room-chat-form input {
  min-height: 42px;
}

@media (max-width: 640px) {
  .audio-room-main {
    padding: 14px;
  }

  .audio-rooms-hero {
    padding: 20px !important;
  }
}

/* v5.4.4 migrated audio rooms styles */
/* Audio Rooms */
.audio-room-page-middle {
  max-width: 1040px;
  width: 100%;
}
.audio-rooms-page,
.audio-room-page {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
}
.audio-rooms-hero,
.audio-room-shell,
.audio-rooms-toolbar,
.audio-room-card,
.audio-room-side,
.audio-room-requests,
.audio-room-modal-card {
  background: var(--dizzy-theme-panel-background, #fff);
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .10));
  border-radius: 8px;
}
.audio-rooms-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 280px);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246, 81, 105, .08), rgba(74, 144, 226, .08)),
    var(--dizzy-theme-panel-background, #fff);
}
.audio-rooms-hero-content {
  min-width: 0;
}
.audio-rooms-eyebrow,
.audio-room-title-block span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dizzy-theme-brand-primary, #f65169);
  margin-bottom: 6px;
}
.audio-rooms-hero h1,
.audio-room-title-block h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  color: var(--dizzy-theme-text-primary, #000);
}
.audio-rooms-hero p {
  margin: 12px 0 0;
  color: var(--dizzy-theme-text-muted, #525c7a);
  line-height: 1.5;
  max-width: 720px;
}
.audio-rooms-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.audio-rooms-hero-pills span {
  border: 1px solid rgba(82, 92, 122, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}
.audio-rooms-hero-action {
  display: grid;
  gap: 14px;
  justify-items: stretch;
}
.audio-rooms-live-preview {
  position: relative;
  min-height: 150px;
  border: 1px solid rgba(82, 92, 122, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  padding: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}
.audio-rooms-live-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  background: rgba(246, 81, 105, .12);
  color: var(--dizzy-theme-brand-primary, #f65169);
  font-size: 11px;
  font-weight: 900;
  padding: 0 9px;
  text-transform: uppercase;
}
.audio-rooms-live-badge:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dizzy-theme-brand-primary, #f65169);
  margin-right: 6px;
}
.audio-rooms-avatar-stack {
  display: flex;
  margin-top: 18px;
}
.audio-rooms-avatar-stack span {
  width: 42px;
  height: 42px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--dizzy-theme-hover-surface, #e0e3eb);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  overflow: hidden;
}
.audio-rooms-avatar-stack span:first-child {
  margin-left: 0;
}
.audio-rooms-avatar-stack img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.audio-rooms-wave {
  position: absolute;
  right: 18px;
  top: 58px;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 48px;
}
.audio-rooms-wave span,
.audio-room-empty-visual span {
  width: 6px;
  border-radius: 999px;
  background: var(--dizzy-theme-brand-primary, #f65169);
  animation: audioRoomWave 1.25s ease-in-out infinite;
}
.audio-rooms-wave span:nth-child(1),
.audio-room-empty-visual span:nth-child(1) {
  height: 18px;
}
.audio-rooms-wave span:nth-child(2),
.audio-room-empty-visual span:nth-child(2) {
  height: 34px;
  animation-delay: .1s;
}
.audio-rooms-wave span:nth-child(3),
.audio-room-empty-visual span:nth-child(3) {
  height: 46px;
  animation-delay: .2s;
}
.audio-rooms-wave span:nth-child(4),
.audio-room-empty-visual span:nth-child(4) {
  height: 28px;
  animation-delay: .3s;
}
.audio-rooms-wave span:nth-child(5) {
  height: 38px;
  animation-delay: .4s;
}
.audio-rooms-preview-meta {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 18px;
}
.audio-rooms-preview-meta strong {
  color: var(--dizzy-theme-text-primary, #000);
  font-size: 26px;
}
.audio-rooms-preview-meta span {
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 13px;
  font-weight: 800;
}
@keyframes audioRoomWave {
  0%, 100% {
    transform: scaleY(.65);
    opacity: .7;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
.audio-room-primary,
.audio-room-control,
.audio-room-chat-form button,
.audio-room-person-actions button,
.audio-room-request-row button {
  border: 0;
  border-radius: 6px;
  background: var(--dizzy-theme-brand-primary, #f65169);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.audio-room-primary:hover {
  box-shadow: 0 12px 26px rgba(246, 81, 105, .24);
  transform: translateY(-1px);
}
.audio-room-primary:disabled {
  cursor: not-allowed;
  opacity: .55;
  transform: none;
  box-shadow: none;
}
.audio-room-button-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 17px;
  line-height: 1;
}
.audio-room-button-icon svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}
.audio-room-create-cta {
  min-height: 46px;
  width: 100%;
}
.audio-room-primary[hidden],
.audio-room-control[hidden] {
  display: none;
}
.audio-room-control {
  background: var(--dizzy-theme-hover-surface, #e0e3eb);
  color: var(--dizzy-theme-text-primary, #000);
}
.audio-room-control.danger {
  background: #d93025;
  color: #fff;
}
.audio-room-control:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.audio-rooms-toolbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0;
  padding: 14px;
}
.audio-rooms-toolbar > div {
  min-width: 0;
  border-radius: 8px;
  background: var(--dizzy-theme-page-background, #f3f5f9);
  padding: 14px;
}
.audio-rooms-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.audio-room-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(246, 81, 105, .12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: relative;
}
.audio-room-stat-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: var(--dizzy-theme-brand-primary, #f65169);
}
.audio-rooms-toolbar strong,
.audio-rooms-toolbar .audio-rooms-stat > div > span {
  display: block;
}
.audio-rooms-toolbar strong {
  color: var(--dizzy-theme-text-primary, #000);
  font-size: 18px;
  line-height: 1.2;
}
.audio-rooms-toolbar span:not(.audio-room-stat-icon) {
  margin-top: 4px;
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 12px;
  font-weight: 800;
}
.audio-rooms-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.audio-room-card {
  display: flex;
  flex-direction: column;
  min-height: 168px;
  padding: 16px;
}
.audio-room-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 12px;
}
.audio-room-card-top span {
  border-radius: 999px;
  background: var(--dizzy-theme-page-background, #f3f5f9);
  padding: 5px 9px;
}
.audio-room-card h2 {
  margin: 12px 0 6px;
  font-size: 18px;
  line-height: 1.3;
  color: var(--dizzy-theme-text-primary, #000);
}
.audio-room-card p {
  margin: 0 0 14px;
  color: var(--dizzy-theme-text-muted, #525c7a);
}
.audio-room-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}
.audio-room-card-meta span {
  border-radius: 999px;
  background: var(--dizzy-theme-page-background, #f3f5f9);
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 11px;
  font-weight: 900;
  padding: 6px 8px;
}
.audio-room-card .audio-room-primary {
  align-self: flex-start;
  margin-top: auto;
}
.audio-room-empty {
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
  color: var(--dizzy-theme-text-muted, #525c7a);
}
.audio-room-empty-state {
  border: 1px dashed rgba(82, 92, 122, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .38)),
    var(--dizzy-theme-panel-background, #fff);
  padding: 44px 24px;
}
.audio-room-empty-visual {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(246, 81, 105, .10);
  margin-bottom: 18px;
}
.audio-room-empty-visual svg {
  width: 38px;
  height: 38px;
  display: block;
  fill: var(--dizzy-theme-brand-primary, #f65169);
}
.audio-room-empty-state h2 {
  margin: 0;
  color: var(--dizzy-theme-text-primary, #000);
  font-size: 22px;
}
.audio-room-empty-state p {
  max-width: 420px;
  margin: 8px auto 0;
  line-height: 1.5;
}
.audio-room-empty-cta {
  margin-top: 18px;
}
.audio-room-login-notice {
  margin-top: 14px;
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .10));
  border-radius: 8px;
  background: var(--dizzy-theme-panel-background, #fff);
}
.audio-room-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.audio-room-modal[hidden] {
  display: none;
}
.audio-room-modal-card {
  width: min(640px, 100%);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 28px;
  position: relative;
  box-shadow: 0 22px 70px rgba(15, 23, 42, .22);
}
.audio-room-modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: var(--dizzy-theme-text-primary, #000);
}
.audio-room-modal-close svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}
.audio-room-modal-card h2 {
  margin: 0 36px 8px 0;
  font-size: 28px;
  line-height: 1.15;
}
.audio-room-modal-kicker {
  display: block;
  color: var(--dizzy-theme-brand-primary, #f65169);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.audio-room-modal-intro {
  margin: 0 36px 18px 0;
  color: var(--dizzy-theme-text-muted, #525c7a);
  line-height: 1.45;
}
.audio-room-modal-card label,
.audio-room-form-note {
  display: block;
  margin-bottom: 8px;
}
.audio-room-modal-card label {
  color: var(--dizzy-theme-text-primary, #000);
  font-weight: 800;
}
.audio-room-title-field {
  position: relative;
}
.audio-room-title-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 78px 0 16px;
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .14));
  border-radius: 8px;
  background: var(--dizzy-theme-page-background, #f3f5f9);
  color: var(--dizzy-theme-text-primary, #000);
  font-size: 15px;
  font-weight: 700;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.audio-room-title-field input:focus {
  border-color: var(--dizzy-theme-brand-primary, #f65169);
  box-shadow: 0 0 0 3px rgba(246, 81, 105, .12);
  background: var(--dizzy-theme-panel-background, #fff);
}
.audio-room-title-field span {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 12px;
  font-weight: 800;
}
.audio-room-title-field span.is-invalid,
.audio-room-form-note.is-invalid {
  color: #d93025;
}
.audio-room-form-note {
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 13px;
  margin-top: 8px;
}
.audio-room-modal-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}
.audio-room-modal-summary span {
  min-width: 0;
  border-radius: 8px;
  background: var(--dizzy-theme-page-background, #f3f5f9);
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 12px;
  font-weight: 800;
  padding: 9px 10px;
  text-align: center;
}
.audio-room-create-options {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.audio-room-create-loading,
.audio-room-create-denied {
  border-radius: 8px;
  background: var(--dizzy-theme-page-background, #f3f5f9);
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 13px;
  font-weight: 800;
  padding: 12px;
}
.audio-room-create-denied {
  background: rgba(217, 48, 37, .10);
  color: #b42318;
}
.audio-room-option-title {
  color: var(--dizzy-theme-text-primary, #000);
  font-size: 14px;
  font-weight: 900;
}
.audio-room-package-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.audio-room-option-card {
  width: 100%;
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .14));
  border-radius: 8px;
  background: var(--dizzy-theme-panel-background, #fff);
  color: var(--dizzy-theme-text-primary, #000);
  cursor: pointer;
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px;
  text-align: left;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.audio-room-option-card:hover,
.audio-room-option-card:focus,
.audio-room-option-card.is-selected {
  border-color: var(--dizzy-theme-brand-primary, #f65169);
  box-shadow: 0 12px 28px rgba(246, 81, 105, .12);
  outline: none;
}
.audio-room-option-card.is-selected {
  background: rgba(246, 81, 105, .05);
}
.audio-room-option-card strong,
.audio-room-option-card small,
.audio-room-option-card em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-room-option-card strong {
  font-size: 15px;
  line-height: 1.25;
}
.audio-room-option-card small,
.audio-room-option-card em {
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}
.audio-room-option-badge {
  width: fit-content;
  border-radius: 999px;
  background: rgba(246, 81, 105, .12);
  color: var(--dizzy-theme-brand-primary, #f65169);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  padding: 6px 9px;
}
.audio-room-create-panel {
  margin-top: 14px;
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .14));
  border-radius: 8px;
  background: var(--dizzy-theme-panel-background, #fff);
  padding: 16px;
}
.audio-room-create-panel[hidden],
.audio-room-schedule-fields[hidden],
.audio-room-ticket-fields[hidden],
.audio-room-audience-modal[hidden] {
  display: none;
}
.audio-room-segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.audio-room-segmented button,
.audio-room-secondary {
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .14));
  border-radius: 8px;
  background: var(--dizzy-theme-page-background, #f3f5f9);
  color: var(--dizzy-theme-text-primary, #000);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  min-height: 42px;
  padding: 0 12px;
}
.audio-room-segmented button.is-selected,
.audio-room-secondary:hover {
  border-color: var(--dizzy-theme-brand-primary, #f65169);
  background: rgba(246, 81, 105, .08);
  color: var(--dizzy-theme-brand-primary, #f65169);
}
.audio-room-ticket-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.audio-room-schedule-fields {
  margin-top: 14px;
}
.audio-room-schedule-picker {
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .14));
  border-radius: 8px;
  background: var(--dizzy-theme-page-background, #f3f5f9);
  padding: 14px;
}
.audio-room-schedule-picker-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.audio-room-schedule-picker-head strong,
.audio-room-field-label {
  color: var(--dizzy-theme-text-primary, #000);
}
.audio-room-schedule-picker-head strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}
.audio-room-schedule-picker-head span {
  border-radius: 999px;
  background: rgba(246, 81, 105, .10);
  color: var(--dizzy-theme-brand-primary, #f65169);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  padding: 7px 9px;
  white-space: nowrap;
}
.audio-room-schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(92px, .8fr) minmax(92px, .8fr);
  gap: 10px;
}
.audio-room-schedule-field {
  display: grid !important;
  gap: 6px;
  margin: 0 !important;
}
.audio-room-schedule-field span,
.audio-room-ticket-fields label span {
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24px;
  text-transform: uppercase;
}
.audio-room-schedule-preview {
  border: 1px solid rgba(246, 81, 105, .18);
  border-radius: 8px;
  background: rgba(246, 81, 105, .07);
  color: var(--dizzy-theme-text-primary, #000);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  margin-top: 12px;
  padding: 10px 12px;
}
.audio-room-schedule-preview.is-invalid {
  border-color: rgba(217, 48, 37, .24);
  background: rgba(217, 48, 37, .08);
  color: #b42318;
}
.audio-room-create-panel select,
.audio-room-create-panel input[type="date"],
.audio-room-create-panel input[type="time"],
.audio-room-create-panel input[type="number"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .14));
  border-radius: 8px;
  background: var(--dizzy-theme-page-background, #f3f5f9);
  color: var(--dizzy-theme-text-primary, #000);
  font-weight: 800;
  padding: 0 12px;
}
.audio-room-create-panel select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
.audio-room-setting-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.audio-room-setting-head-toggle {
  align-items: center;
}
.audio-room-setting-head .audio-room-field-label,
.audio-room-toggle-line span {
  display: block;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}
.audio-room-setting-head > div > span,
.audio-room-setting-copy {
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 13px;
  line-height: 1.4;
  margin-top: 5px;
}
.audio-room-setting-copy {
  margin: -4px 0 12px;
}
.audio-room-setting-status {
  border: 1px solid rgba(82, 92, 122, .12);
  border-radius: 999px;
  background: var(--dizzy-theme-page-background, #f3f5f9);
  color: var(--dizzy-theme-text-muted, #525c7a);
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  max-width: 48%;
  overflow: hidden;
  padding: 8px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.audio-room-setting-status.has-selection {
  border-color: rgba(246, 81, 105, .24);
  background: rgba(246, 81, 105, .10);
  color: var(--dizzy-theme-brand-primary, #f65169);
}
.audio-room-select-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.audio-room-toggle-line {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
}
.audio-room-toggle-line input {
  appearance: none;
  -webkit-appearance: none;
  width: 42px;
  height: 24px;
  border: 1px solid rgba(82, 92, 122, .20);
  border-radius: 999px;
  background: var(--dizzy-theme-page-background, #f3f5f9);
  cursor: pointer;
  flex: 0 0 auto;
  position: relative;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.audio-room-toggle-line input:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .18);
  transition: transform .18s ease;
}
.audio-room-toggle-line input:checked {
  border-color: var(--dizzy-theme-brand-primary, #f65169);
  background: var(--dizzy-theme-brand-primary, #f65169);
  box-shadow: 0 0 0 3px rgba(246, 81, 105, .12);
}
.audio-room-toggle-line input:checked:before {
  transform: translateX(18px);
}
.audio-room-secondary[hidden] {
  display: none;
}
.audio-room-audience-modal {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, .38);
}
.audio-room-audience-card {
  width: min(520px, 100%);
  max-height: min(680px, 90vh);
  overflow: auto;
  border-radius: 8px;
  background: var(--dizzy-theme-panel-background, #fff);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .22);
  padding: 24px;
  position: relative;
}
.audio-room-audience-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  max-height: 360px;
  overflow: auto;
}

.audio-room-audience-card [data-audio-room-apply-audience] {
  display: flex;
  width: auto;
  min-width: 108px;
  min-height: 46px;
  margin: 18px 0 0 auto;
  padding: 0 24px;
  border-radius: var(--aura-audio-radius-control, 16px);
}

.audio-room-audience-user {
  display: grid !important;
  grid-template-columns: 18px 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .14));
  border-radius: 8px;
  padding: 9px;
  margin: 0 !important;
}
.audio-room-audience-user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.audio-room-audience-user span {
  min-width: 0;
  display: grid;
}
.audio-room-audience-user strong,
.audio-room-audience-user em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.audio-room-audience-user em {
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 12px;
  font-style: normal;
}
.audio-room-payment-note {
  margin-top: 12px;
  border: 1px solid rgba(246, 81, 105, .24);
  border-radius: 8px;
  background: rgba(246, 81, 105, .08);
  color: var(--dizzy-theme-text-primary, #000);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  padding: 12px;
}
.audio-room-payment-note[hidden] {
  display: none;
}
.audio-room-modal-card .audio-room-primary {
  width: 100%;
  margin-top: 18px;
  min-height: 46px;
}
.audio-room-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
}
.audio-room-main {
  min-width: 0;
}
.audio-room-statusbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--dizzy-theme-text-muted, #525c7a);
  margin-bottom: 14px;
}
.audio-room-statusbar [data-audio-room-connection] {
  position: fixed;
  right: 22px;
  top: 86px;
  z-index: 9999;
  border-radius: 999px;
  background: rgba(246, 81, 105, .10);
  color: var(--dizzy-theme-brand-primary, #f65169);
  font-weight: 700;
  padding: 6px 10px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .14);
}
.audio-room-statusbar [data-audio-room-connection][hidden] {
  display: none;
}
.audio-room-back {
  color: var(--dizzy-theme-brand-primary, #f65169);
  font-weight: 700;
  text-decoration: none;
}
.audio-room-title-block {
  margin-bottom: 18px;
}
.audio-room-timebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .10));
  border-radius: 8px;
  background: var(--dizzy-theme-page-background, #f3f5f9);
  margin-bottom: 18px;
  padding: 12px 14px;
}
.audio-room-timebar[hidden] {
  display: none;
}
.audio-room-timebar strong,
.audio-room-timebar span {
  display: block;
}
.audio-room-timebar strong {
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.audio-room-timebar span {
  color: var(--dizzy-theme-text-primary, #000);
  font-size: 20px;
  font-weight: 900;
  margin-top: 3px;
}
.audio-room-timebar.is-warning {
  border-color: rgba(246, 81, 105, .24);
  background: rgba(246, 81, 105, .07);
}
.audio-room-participant-section {
  min-width: 0;
}
.audio-room-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.audio-room-section-head h2 {
  margin: 0;
  font-size: 16px;
  text-transform: capitalize;
}
.audio-room-list-toggle {
  border: 0;
  border-radius: 999px;
  background: var(--dizzy-theme-hover-surface, #e0e3eb);
  color: var(--dizzy-theme-text-primary, #000);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  min-height: 30px;
  padding: 0 12px;
  white-space: nowrap;
}
.audio-room-list-toggle[hidden] {
  display: none;
}
.audio-room-stage-grid,
.audio-room-listener-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  justify-content: flex-start;
  gap: 12px;
}
.audio-room-listener-list {
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
}
.audio-room-person {
  min-width: 0;
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .10));
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  position: relative;
}
.audio-room-person-compact {
  padding: 10px;
}
.audio-room-person.is-speaking {
  border-color: rgba(76, 194, 130, .55);
  box-shadow: 0 12px 28px rgba(37, 150, 99, .12);
}
.audio-room-person-compact img,
.audio-room-person-compact .audio-room-person-fallback {
  width: 48px;
  height: 48px;
}
.audio-room-person img,
.audio-room-person-fallback {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 8px;
  object-fit: cover;
}
.audio-room-person.is-speaking img,
.audio-room-person.is-speaking .audio-room-person-fallback {
  box-shadow: 0 0 0 3px rgba(76, 194, 130, .22), 0 0 0 7px rgba(76, 194, 130, .10);
  animation: audioRoomSpeakingPulse 1.3s ease-out infinite;
}
.audio-room-person-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--dizzy-theme-hover-surface, #e0e3eb);
  font-weight: 800;
}
.audio-room-person img[src=""] {
  display: none;
}
.audio-room-person img[src=""] + .audio-room-person-fallback {
  display: flex;
}
.audio-room-person strong,
.audio-room-person span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.audio-room-person span {
  margin-top: 4px;
  color: var(--dizzy-theme-text-muted, #525c7a);
  font-size: 12px;
}
.audio-room-speaking-indicator {
  display: none;
  width: fit-content;
  max-width: 100%;
  margin: 8px auto 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(76, 194, 130, .12);
  color: #228d5d;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}
.audio-room-person.is-speaking .audio-room-speaking-indicator {
  display: block;
}
@keyframes audioRoomSpeakingPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 194, 130, .28), 0 0 0 5px rgba(76, 194, 130, .10);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(76, 194, 130, 0), 0 0 0 13px rgba(76, 194, 130, 0);
  }
}
.audio-room-person-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}
.audio-room-person-actions button,
.audio-room-request-row button {
  min-height: 30px;
  padding: 0 8px;
  font-size: 12px;
  line-height: 1.15;
  min-width: 0;
  white-space: normal;
}
.audio-room-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.audio-room-side {
  padding: 14px;
  min-width: 0;
}
.audio-room-listeners {
  min-height: 96px;
}
.audio-room-side h2,
.audio-room-requests h2 {
  margin: 0 0 12px;
  font-size: 16px;
}
.audio-room-side .audio-room-section-head h2 {
  margin: 0;
}
.audio-room-chat {
  grid-column: 1 / -1;
}
.audio-room-chat-list {
  height: 230px;
  overflow: auto;
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .10));
  border-radius: 8px;
  padding: 10px;
}
.audio-room-chat-item {
  margin-bottom: 10px;
}
.audio-room-chat-item strong {
  display: block;
  font-size: 13px;
}
.audio-room-chat-item span {
  color: var(--dizzy-theme-text-muted, #525c7a);
}
.audio-room-chat-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.audio-room-chat-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .10));
  border-radius: 6px;
  padding: 0 12px;
  min-height: 38px;
  background: transparent;
  color: var(--dizzy-theme-text-primary, #000);
}
.audio-room-requests {
  padding: 14px;
  margin-top: 16px;
}
.audio-room-request-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}
.audio-room-empty-compact {
  padding: 14px;
}
.audio-room-participants-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,.42);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.audio-room-participants-modal[hidden] {
  display: none;
}
.audio-room-participants-card {
  width: min(620px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  position: relative;
  border: 1px solid var(--dizzy-theme-panel-border, rgba(82, 92, 122, .10));
  border-radius: 8px;
  background: var(--dizzy-theme-panel-background, #fff);
  padding: 22px;
}
.audio-room-participants-card h2 {
  margin: 0 36px 16px 0;
  text-transform: capitalize;
}
.audio-room-participants-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
@media (max-width: 900px) {
  .audio-room-shell {
    grid-template-columns: 1fr;
  }
  .audio-rooms-hero {
    grid-template-columns: 1fr;
  }
  .audio-rooms-hero-action {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
    align-items: stretch;
  }
  .audio-rooms-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .audio-rooms-page,
  .audio-room-page {
    padding: 10px;
  }
  .audio-rooms-hero {
    align-items: stretch;
    gap: 18px;
    padding: 20px;
  }
  .audio-rooms-page .audio-rooms-hero + .audio-rooms-list,
  .audio-rooms-page .audio-rooms-hero + .audio-room-login-notice {
    margin-top: 14px !important;
  }
  .audio-rooms-hero h1,
  .audio-room-title-block h1 {
    font-size: 28px;
  }
  .audio-rooms-hero-action,
  .audio-rooms-toolbar,
  .audio-room-modal-summary {
    grid-template-columns: 1fr;
  }
  .audio-room-package-options {
    grid-template-columns: 1fr;
  }
  .audio-room-schedule-fields,
  .audio-room-ticket-fields,
  .audio-room-segmented {
    grid-template-columns: 1fr;
  }
  .audio-room-schedule-grid,
  .audio-room-select-row {
    grid-template-columns: 1fr;
  }
  .audio-room-schedule-picker-head,
  .audio-room-setting-head {
    align-items: stretch;
    flex-direction: column;
  }
  .audio-room-setting-head-toggle {
    align-items: flex-start;
  }
  .audio-room-setting-status {
    max-width: 100%;
    width: fit-content;
  }
  .audio-room-select-row .audio-room-secondary {
    width: 100%;
  }
  .audio-room-audience-card {
    max-height: calc(100vh - 48px);
    padding: 20px;
  }
  .audio-room-audience-card [data-audio-room-apply-audience] {
    min-width: 104px;
    margin-top: 16px;
  }
  .audio-room-timebar {
    align-items: stretch;
    flex-direction: column;
  }
  .audio-room-timebar .audio-room-control {
    width: 100%;
  }
  .audio-rooms-live-preview {
    min-height: 132px;
  }
  .audio-rooms-toolbar {
    padding: 10px;
  }
  .audio-room-stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .audio-room-listener-list {
    grid-template-columns: 1fr;
  }
  .audio-room-person-actions {
    grid-template-columns: 1fr;
  }
  .audio-room-controls .audio-room-control {
    flex: 1 1 calc(50% - 8px);
  }
  .audio-room-modal {
    align-items: flex-start;
    padding: 12px;
  }
  .audio-room-modal-card {
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    padding: 22px;
  }
  .audio-room-modal-card h2 {
    font-size: 24px;
  }
  .audio-room-participants-card {
    padding: 18px;
  }
  .audio-room-participants-list {
    grid-template-columns: 1fr;
  }
  .audio-room-chat-form {
    flex-direction: column;
  }
}

/* Aura Vault upload and card radius polish */
.vault_wrapper .aura_vault_page {
  --aura-vault-radius-shell: 24px;
  --aura-vault-radius-panel: 20px;
  --aura-vault-radius-control: 16px;
  --aura-vault-radius-small: 12px;
}

.vault_wrapper .aura_vault_page .vault_panel,
.vault_wrapper .aura_vault_page .aura_vault_hero,
.vault_wrapper .aura_vault_page .aura_vault_dropzone,
.vault_wrapper .aura_vault_page .aura_vault_stats span,
.vault_wrapper .aura_vault_page .vault_empty,
.vault_wrapper .aura_vault_page .vault_skeleton {
  border-radius: var(--aura-vault-radius-panel);
}

.vault_wrapper .aura_vault_page .aura_vault_dropzone {
  grid-template-columns: 48px minmax(0, 1fr);
}

.vault_wrapper .aura_vault_page .vault_dropzone_copy,
.vault_wrapper .aura_vault_page .vault_dropzone_hint {
  width: 100%;
  max-width: none;
}

.vault_wrapper .aura_vault_page .vault_toolbar .i_input,
.vault_wrapper .aura_vault_page .vault_bulk_bar .i_input,
.vault_wrapper .aura_vault_page .vault_picker_filters .i_input,
.vault_wrapper .aura_vault_page .vault_dialog_input,
.vault_wrapper .aura_vault_page .vault_primary_btn,
.vault_wrapper .aura_vault_page .vault_secondary_btn,
.vault_wrapper .aura_vault_page .vault_delete_btn,
.vault_wrapper .aura_vault_page .vault_view_btn,
.vault_wrapper .aura_vault_page #vaultNewFolder,
.vault_wrapper .aura_vault_page #vaultRenameFolder,
.vault_wrapper .aura_vault_page #vaultCleanupUnused,
.vault_wrapper .aura_vault_page #vaultDeleteFolder,
.vault_wrapper .aura_vault_page #vaultBulkMove,
.vault_wrapper .aura_vault_page #vaultBulkDelete,
.vault_wrapper .aura_vault_page #vaultClearSelection {
  border-radius: var(--aura-vault-radius-control);
}

.vault_wrapper .aura_vault_page .vault_media_card,
.vault_wrapper .vault_picker .vault_media_card {
  overflow: visible;
  border-radius: var(--aura-vault-radius-panel);
}

.vault_wrapper .aura_vault_page .vault_thumb,
.vault_wrapper .vault_picker .vault_thumb {
  overflow: hidden;
  border-radius: var(--aura-vault-radius-panel) var(--aura-vault-radius-panel) 0 0;
}

.vault_wrapper .aura_vault_page .vault_grid.vault_grid_list .vault_thumb {
  border-radius: var(--aura-vault-radius-panel) 0 0 var(--aura-vault-radius-panel);
}

.vault_wrapper .aura_vault_page .vault_card_actions .vault_use_btn,
.vault_wrapper .aura_vault_page .vault_card_actions .vault_delete_btn,
.vault_wrapper .aura_vault_page .vault_card_actions .vault_view_btn,
.vault_wrapper .aura_vault_page .vault_share_target,
.vault_wrapper .vault_preview_modal .vault_share_target {
  border-radius: 14px;
}

.vault_wrapper .aura_vault_page .vault_upload_progress {
  position: relative;
  display: none;
  align-items: center;
  min-height: 52px;
  margin: 0 0 14px;
  padding: 13px 16px 13px 48px;
  border: 1px solid #dfe6f0;
  border-radius: var(--aura-vault-radius-control);
  background: #f7f9fc;
  color: #303a4f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: none;
}

.vault_wrapper .aura_vault_page .vault_upload_progress.is-active:not(:empty) {
  display: flex;
}

.vault_wrapper .aura_vault_page .vault_upload_progress:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-radius: 999px;
  background: #3f5edb;
  box-shadow: inset 0 0 0 5px #eef2ff;
}

.vault_wrapper .aura_vault_page .vault_upload_progress.is-success {
  border-color: #cfe4d8;
  background: #f6fbf8;
  color: #216343;
}

.vault_wrapper .aura_vault_page .vault_upload_progress.is-success:before {
  background: #45b36b;
  box-shadow: inset 0 0 0 5px #e5f5eb;
}

.vault_wrapper .aura_vault_page .vault_upload_progress.is-error {
  border-color: #efd6dc;
  background: #fff7f8;
  color: #b94a5d;
}

.vault_wrapper .aura_vault_page .vault_upload_progress.is-error:before {
  background: #b94a5d;
  box-shadow: inset 0 0 0 5px #ffe8ed;
}

.vault_wrapper .aura_vault_page .vault_share_menu,
.vault_wrapper .vault_preview_modal .vault_share_menu,
.vault_picker,
.vault_preview_modal,
.vault_dialog {
  border-radius: var(--aura-vault-radius-shell);
}

.vault_wrapper .aura_vault_page .vault_pick_check,
.vault_wrapper .vault_picker .vault_pick_check,
.vault_wrapper .aura_vault_page .vault_type_badge,
.vault_wrapper .vault_picker .vault_type_badge,
.vault_wrapper .aura_vault_page .vault_processing_badge {
  border-radius: 999px;
}

.vault_preview_body,
.vault_dialog_error {
  border-radius: var(--aura-vault-radius-control);
}

@media (max-width: 760px) {
  .vault_wrapper .aura_vault_page .vault_grid.vault_grid_list .vault_thumb {
    border-radius: var(--aura-vault-radius-panel) var(--aura-vault-radius-panel) 0 0;
  }
}

/* Aura Audio Rooms final cascade guards */
.audio-rooms-page .audio-rooms-hero,
.audio-rooms-page .audio-rooms-toolbar,
.audio-rooms-page .audio-room-card,
.audio-rooms-page .audio-room-empty-state,
.audio-room-page .audio-room-main,
.audio-room-page .audio-room-side,
.audio-room-page .audio-room-requests {
  border-radius: var(--aura-audio-radius-panel) !important;
}

.audio-room-page .audio-room-shell {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.audio-rooms-page .audio-rooms-hero + .audio-rooms-list,
.audio-rooms-page .audio-rooms-hero + .audio-room-login-notice {
  margin-top: 20px !important;
}

@media (max-width: 640px) {
  .audio-rooms-page .audio-rooms-hero + .audio-rooms-list,
  .audio-rooms-page .audio-rooms-hero + .audio-room-login-notice {
    margin-top: 14px !important;
  }
}

.audio-room-page .audio-room-control,
.audio-room-page .audio-room-chat-form input,
.audio-room-page .audio-room-chat-form button {
  min-height: 42px !important;
  height: 42px !important;
  border-radius: var(--aura-audio-radius-control) !important;
}

.audio-rooms-page .audio-room-primary,
.audio-room-page .audio-room-primary,
.audio-room-modal .audio-room-primary {
  min-height: 46px !important;
  border-radius: var(--aura-audio-radius-control) !important;
}

.audio-room-create-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.audio-room-create-panel-schedule {
  grid-column: 1 / -1;
}

.audio-room-create-actions {
  position: sticky;
  bottom: 0;
  z-index: 3;
  display: grid;
  gap: 10px;
  margin: 14px -24px 0;
  padding: 12px 24px;
  border-top: 1px solid var(--aura-audio-border, #dde6f2);
  background: var(--aura-audio-panel, #ffffff);
}

.audio-room-modal-card:has(.audio-room-create-actions) {
  padding-bottom: 0;
}

.audio-room-modal:has(.audio-room-audience-modal:not([hidden])) .audio-room-create-actions {
  visibility: hidden;
  pointer-events: none;
}

.audio-room-modal-card .audio-room-primary {
  width: 100%;
  margin-top: 0;
}

.audio-room-ended-card {
  text-align: center;
}

.audio-room-ended-card .audio-room-modal-intro,
.audio-room-wait-card .audio-room-modal-intro {
  margin-right: 0;
}

.audio-room-wait-card {
  width: min(520px, 100%);
}

.audio-room-wait-time {
  border: 1px solid rgba(246, 81, 105, 0.22);
  border-radius: var(--aura-audio-radius-control);
  background: rgba(246, 81, 105, 0.08);
  color: var(--aura-audio-text, #1b2232);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  margin-top: 16px;
  padding: 12px 14px;
}

.audio-room-wait-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.audio-room-wait-actions .audio-room-primary,
.audio-room-wait-actions .audio-room-secondary {
  margin: 0;
  min-height: 46px;
  width: 100%;
}

.audio-room-ended-note {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 16px;
  border: 1px solid var(--aura-audio-border, #dde6f2);
  border-radius: var(--aura-audio-radius-control);
  background: var(--aura-audio-soft, #f6f8fc);
  color: var(--aura-audio-muted, #66738a);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  padding: 10px 14px;
}

@media (max-width: 640px) {
  .audio-room-create-controls {
    grid-template-columns: 1fr;
  }

  .audio-room-create-actions {
    position: static;
    margin: 14px 0 0;
    padding: 0;
    border-top: 0;
    background: transparent;
  }

  .audio-room-create-actions .audio-room-modal-summary {
    display: none;
  }

  .audio-room-wait-actions {
    grid-template-columns: 1fr;
  }
}

/* Aura profile footer polish */
.profile_wrapper .pageMiddleRow .pageMiddleInfo .footer_container {
  position: relative;
  bottom: auto;
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(82, 92, 122, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
  color: #5f6674;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.profile_wrapper .pageMiddleRow .pageMiddleInfo .footer_social_links_container {
  gap: 12px;
  padding: 14px 6px 0;
}

.profile_wrapper .pageMiddleRow .pageMiddleInfo .footer_container .footer_social_links_container .i_wsocial_link_,
.profile_wrapper .pageMiddleRow .pageMiddleInfo .footer_social_links_container .i_wsocial_link_ {
  padding: 0 !important;
}

.profile_wrapper .pageMiddleRow .pageMiddleInfo .footer_social_links_container .i_iw_social_icon {
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 740px) {
  .profile_wrapper .pageMiddleRow .pageMiddleInfo .footer_container {
    margin: 12px 0 0;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.55;
  }

  .profile_wrapper .pageMiddleRow .pageMiddleInfo .footer_social_links_container {
    width: 100%;
    margin: 0;
    gap: 9px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 2px 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .profile_wrapper .pageMiddleRow .pageMiddleInfo .footer_social_links_container::-webkit-scrollbar {
    display: none;
  }
}

/* Aura Audio modal theme */
.audio-room-modal,
.audio-room-audience-modal,
.audio-room-participants-modal {
  --aura-audio-modal-backdrop: rgba(17, 24, 39, .46);
  --aura-audio-modal-panel: #ffffff;
  --aura-audio-modal-surface: #f7f9fc;
  --aura-audio-modal-surface-strong: #eef3fb;
  --aura-audio-modal-border: #dfe6f0;
  --aura-audio-modal-text: #172033;
  --aura-audio-modal-muted: #68758d;
  --aura-audio-modal-accent: #4f6df5;
  --aura-audio-modal-accent-soft: #f2f5ff;
  --aura-audio-modal-accent-border: rgba(79, 109, 245, .36);
  --aura-audio-modal-live: #f05d72;
  --aura-audio-modal-live-soft: #fff4f6;
  --aura-audio-modal-danger: #b94a5d;
  --aura-audio-modal-danger-soft: #fff7f8;
  --aura-audio-modal-radius-panel: 24px;
  --aura-audio-modal-radius-control: 16px;
  background: var(--aura-audio-modal-backdrop) !important;
}

.audio-room-modal-card,
.audio-room-audience-card,
.audio-room-participants-card {
  border: 1px solid var(--aura-audio-modal-border) !important;
  border-radius: var(--aura-audio-modal-radius-panel) !important;
  background: var(--aura-audio-modal-panel) !important;
  color: var(--aura-audio-modal-text) !important;
  box-shadow: 0 28px 72px rgba(15, 23, 42, .22) !important;
}

.audio-room-modal-card h2,
.audio-room-audience-card h2,
.audio-room-participants-card h2,
.audio-room-modal-card label,
.audio-room-field-label,
.audio-room-setting-head .audio-room-field-label,
.audio-room-toggle-line span,
.audio-room-option-title,
.audio-room-option-card strong,
.audio-room-schedule-picker-head strong {
  color: var(--aura-audio-modal-text) !important;
}

.audio-room-modal-kicker,
.audio-room-option-badge {
  background: var(--aura-audio-modal-live-soft) !important;
  color: var(--aura-audio-modal-live) !important;
}

.audio-room-modal-kicker {
  display: inline-flex !important;
  align-items: center;
  min-height: 26px;
  width: fit-content;
  border-radius: 999px;
  padding: 0 10px;
}

.audio-room-modal-intro,
.audio-room-form-note,
.audio-room-setting-copy,
.audio-room-setting-head > div > span,
.audio-room-option-card small,
.audio-room-option-card em,
.audio-room-audience-user em,
.audio-room-schedule-field span,
.audio-room-ticket-fields label span {
  color: var(--aura-audio-modal-muted) !important;
}

.audio-room-title-field input,
.audio-room-create-panel select,
.audio-room-create-panel input[type="date"],
.audio-room-create-panel input[type="time"],
.audio-room-create-panel input[type="number"],
.audio-room-segmented button,
.audio-room-secondary,
.audio-room-setting-status,
.audio-room-modal-summary span {
  border: 1px solid var(--aura-audio-modal-border) !important;
  border-radius: var(--aura-audio-modal-radius-control) !important;
  background-color: var(--aura-audio-modal-surface) !important;
  color: var(--aura-audio-modal-text) !important;
}

.audio-room-title-field input:focus,
.audio-room-create-panel select:focus,
.audio-room-create-panel input[type="date"]:focus,
.audio-room-create-panel input[type="time"]:focus,
.audio-room-create-panel input[type="number"]:focus {
  border-color: var(--aura-audio-modal-accent-border) !important;
  background-color: var(--aura-audio-modal-panel) !important;
  box-shadow: 0 0 0 3px rgba(79, 109, 245, .12) !important;
  outline: 0 !important;
}

.audio-room-create-panel,
.audio-room-schedule-picker,
.audio-room-payment-note,
.audio-room-option-card,
.audio-room-audience-user {
  border: 1px solid var(--aura-audio-modal-border) !important;
  border-radius: var(--aura-audio-modal-radius-control) !important;
  background: var(--aura-audio-modal-panel) !important;
  color: var(--aura-audio-modal-text) !important;
}

.audio-room-schedule-picker,
.audio-room-payment-note {
  background: var(--aura-audio-modal-surface) !important;
}

.audio-room-option-card:hover,
.audio-room-option-card:focus,
.audio-room-option-card.is-selected,
.audio-room-segmented button.is-selected,
.audio-room-secondary:hover,
.audio-room-setting-status.has-selection {
  border-color: var(--aura-audio-modal-accent-border) !important;
  background: var(--aura-audio-modal-accent-soft) !important;
  color: var(--aura-audio-modal-accent) !important;
  box-shadow: none !important;
}

.audio-room-option-card.is-selected strong,
.audio-room-segmented button.is-selected,
.audio-room-secondary:hover {
  color: var(--aura-audio-modal-accent) !important;
}

.audio-room-schedule-picker-head span,
.audio-room-schedule-preview {
  border: 1px solid var(--aura-audio-modal-accent-border) !important;
  border-radius: var(--aura-audio-modal-radius-control) !important;
  background: var(--aura-audio-modal-accent-soft) !important;
  color: var(--aura-audio-modal-accent) !important;
}

.audio-room-schedule-preview.is-invalid,
.audio-room-create-denied {
  border-color: rgba(185, 74, 93, .28) !important;
  background: var(--aura-audio-modal-danger-soft) !important;
  color: var(--aura-audio-modal-danger) !important;
}

.audio-room-create-panel select {
  appearance: none !important;
  -webkit-appearance: none !important;
  padding-right: 48px !important;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%) !important;
  background-position: calc(100% - 24px) 50%, calc(100% - 17px) 50% !important;
  background-repeat: no-repeat !important;
  background-size: 7px 7px, 7px 7px !important;
}

.audio-room-toggle-line input {
  border-color: var(--aura-audio-modal-border) !important;
  background: var(--aura-audio-modal-surface-strong) !important;
}

.audio-room-toggle-line input:checked {
  border-color: var(--aura-audio-modal-accent-border) !important;
  background: var(--aura-audio-modal-accent) !important;
  box-shadow: 0 0 0 3px rgba(79, 109, 245, .12) !important;
}

.audio-room-modal-close {
  border: 1px solid var(--aura-audio-modal-border) !important;
  border-radius: 14px !important;
  background: var(--aura-audio-modal-surface) !important;
  color: var(--aura-audio-modal-muted) !important;
}

.audio-room-modal-card .audio-room-primary {
  background: var(--aura-audio-primary, #101827) !important;
  color: var(--aura-audio-primary-text, #ffffff) !important;
}

/* Aura Audio Room dark-mode parity polish */
body.night_mode .audio-room-page,
body.night-mode .audio-room-page,
body.dark_mode .audio-room-page,
body.dark-mode .audio-room-page {
  --aura-audio-panel: #0f141d;
  --aura-audio-surface: #141a25;
  --aura-audio-surface-strong: #1a2130;
  --aura-audio-border: rgba(144, 158, 190, .22);
  --aura-audio-border-soft: rgba(144, 158, 190, .14);
  --aura-audio-text: #f7f9fd;
  --aura-audio-muted: #aeb8c9;
  --aura-audio-accent: #94b2ff;
  --aura-audio-live: #ff8aa0;
  --aura-audio-live-soft: rgba(246, 81, 105, .16);
  --aura-audio-danger: #ff9aab;
  --aura-audio-danger-soft: rgba(246, 81, 105, .14);
}

body.night_mode .audio-room-page .audio-room-main,
body.night-mode .audio-room-page .audio-room-main,
body.dark_mode .audio-room-page .audio-room-main,
body.dark-mode .audio-room-page .audio-room-main,
body.night_mode .audio-room-page .audio-room-side,
body.night-mode .audio-room-page .audio-room-side,
body.dark_mode .audio-room-page .audio-room-side,
body.dark-mode .audio-room-page .audio-room-side,
body.night_mode .audio-room-page .audio-room-requests,
body.night-mode .audio-room-page .audio-room-requests,
body.dark_mode .audio-room-page .audio-room-requests,
body.dark-mode .audio-room-page .audio-room-requests {
  background: var(--aura-audio-panel) !important;
  border-color: var(--aura-audio-border) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18) !important;
}

body.night_mode .audio-room-page .audio-room-title-block,
body.night-mode .audio-room-page .audio-room-title-block,
body.dark_mode .audio-room-page .audio-room-title-block,
body.dark-mode .audio-room-page .audio-room-title-block,
body.night_mode .audio-room-page .audio-room-timebar,
body.night-mode .audio-room-page .audio-room-timebar,
body.dark_mode .audio-room-page .audio-room-timebar,
body.dark-mode .audio-room-page .audio-room-timebar,
body.night_mode .audio-room-page .audio-room-person,
body.night-mode .audio-room-page .audio-room-person,
body.dark_mode .audio-room-page .audio-room-person,
body.dark-mode .audio-room-page .audio-room-person,
body.night_mode .audio-room-page .audio-room-chat-list,
body.night-mode .audio-room-page .audio-room-chat-list,
body.dark_mode .audio-room-page .audio-room-chat-list,
body.dark-mode .audio-room-page .audio-room-chat-list {
  background: var(--aura-audio-surface) !important;
  border-color: var(--aura-audio-border) !important;
}

body.night_mode .audio-room-page .audio-room-title-block,
body.night-mode .audio-room-page .audio-room-title-block,
body.dark_mode .audio-room-page .audio-room-title-block,
body.dark-mode .audio-room-page .audio-room-title-block {
  background: linear-gradient(135deg, rgba(20, 26, 37, .98), rgba(16, 22, 33, .98)) !important;
}

body.night_mode .audio-room-page .audio-room-back,
body.night-mode .audio-room-page .audio-room-back,
body.dark_mode .audio-room-page .audio-room-back,
body.dark-mode .audio-room-page .audio-room-back {
  color: var(--aura-audio-accent) !important;
  text-decoration: none !important;
}

body.night_mode .audio-room-page .audio-room-title-block span,
body.night-mode .audio-room-page .audio-room-title-block span,
body.dark_mode .audio-room-page .audio-room-title-block span,
body.dark-mode .audio-room-page .audio-room-title-block span {
  color: var(--aura-audio-live) !important;
}

body.night_mode .audio-room-page .audio-room-title-block h1,
body.night-mode .audio-room-page .audio-room-title-block h1,
body.dark_mode .audio-room-page .audio-room-title-block h1,
body.dark-mode .audio-room-page .audio-room-title-block h1,
body.night_mode .audio-room-page .audio-room-section-head h2,
body.night-mode .audio-room-page .audio-room-section-head h2,
body.dark_mode .audio-room-page .audio-room-section-head h2,
body.dark-mode .audio-room-page .audio-room-section-head h2,
body.night_mode .audio-room-page .audio-room-person strong,
body.night-mode .audio-room-page .audio-room-person strong,
body.dark_mode .audio-room-page .audio-room-person strong,
body.dark-mode .audio-room-page .audio-room-person strong {
  color: var(--aura-audio-text) !important;
}

body.night_mode .audio-room-page .audio-room-person span,
body.night-mode .audio-room-page .audio-room-person span,
body.dark_mode .audio-room-page .audio-room-person span,
body.dark-mode .audio-room-page .audio-room-person span,
body.night_mode .audio-room-page .audio-room-listeners,
body.night-mode .audio-room-page .audio-room-listeners,
body.dark_mode .audio-room-page .audio-room-listeners,
body.dark-mode .audio-room-page .audio-room-listeners {
  color: var(--aura-audio-muted) !important;
}

body.night_mode .audio-room-page .audio-room-section-head,
body.night-mode .audio-room-page .audio-room-section-head,
body.dark_mode .audio-room-page .audio-room-section-head,
body.dark-mode .audio-room-page .audio-room-section-head {
  justify-content: space-between !important;
  width: 100%;
}

body.night_mode .audio-room-page .audio-room-list-toggle,
body.night-mode .audio-room-page .audio-room-list-toggle,
body.dark_mode .audio-room-page .audio-room-list-toggle,
body.dark-mode .audio-room-page .audio-room-list-toggle,
body.night_mode .audio-room-page .audio-room-control,
body.night-mode .audio-room-page .audio-room-control,
body.dark_mode .audio-room-page .audio-room-control,
body.dark-mode .audio-room-page .audio-room-control {
  background: var(--aura-audio-surface-strong) !important;
  border: 1px solid var(--aura-audio-border-soft) !important;
  color: var(--aura-audio-text) !important;
}

body.night_mode .audio-room-page .audio-room-control.danger,
body.night-mode .audio-room-page .audio-room-control.danger,
body.dark_mode .audio-room-page .audio-room-control.danger,
body.dark-mode .audio-room-page .audio-room-control.danger {
  background: var(--aura-audio-danger-soft) !important;
  border-color: rgba(255, 138, 160, .36) !important;
  color: var(--aura-audio-danger) !important;
}

body.night_mode .audio-room-page .audio-room-timebar strong,
body.night-mode .audio-room-page .audio-room-timebar strong,
body.dark_mode .audio-room-page .audio-room-timebar strong,
body.dark-mode .audio-room-page .audio-room-timebar strong {
  color: #d4dbea !important;
}

body.night_mode .audio-room-page .audio-room-statusbar [data-audio-room-connection],
body.night-mode .audio-room-page .audio-room-statusbar [data-audio-room-connection],
body.dark_mode .audio-room-page .audio-room-statusbar [data-audio-room-connection],
body.dark-mode .audio-room-page .audio-room-statusbar [data-audio-room-connection] {
  background: var(--aura-audio-live-soft) !important;
  border: 1px solid rgba(255, 138, 160, .32) !important;
  color: var(--aura-audio-live) !important;
  box-shadow: none !important;
}

/* Aura Audio Room detail dark-mode clean parity */
body.night_mode .audio-room-page,
body.night-mode .audio-room-page,
body.dark_mode .audio-room-page,
body.dark-mode .audio-room-page {
  --aura-audio-panel: #0f141d;
  --aura-audio-panel-2: #111827;
  --aura-audio-surface: #151c28;
  --aura-audio-surface-strong: #1b2433;
  --aura-audio-border: rgba(158, 174, 205, .22);
  --aura-audio-border-soft: rgba(158, 174, 205, .14);
  --aura-audio-text: #f8fafc;
  --aura-audio-muted: #b8c2d4;
  --aura-audio-muted-2: #8f9bb1;
  --aura-audio-accent: #9ab6ff;
  --aura-audio-accent-soft: rgba(98, 125, 255, .13);
  --aura-audio-live: #ff8aa0;
  --aura-audio-live-soft: rgba(246, 81, 105, .15);
  --aura-audio-danger: #ff9daf;
  --aura-audio-danger-soft: rgba(246, 81, 105, .13);
  color: var(--aura-audio-text) !important;
}

body.night_mode .audio-room-page .audio-room-shell,
body.night-mode .audio-room-page .audio-room-shell,
body.dark_mode .audio-room-page .audio-room-shell,
body.dark-mode .audio-room-page .audio-room-shell {
  gap: 18px !important;
}

body.night_mode .audio-room-page .audio-room-main,
body.night-mode .audio-room-page .audio-room-main,
body.dark_mode .audio-room-page .audio-room-main,
body.dark-mode .audio-room-page .audio-room-main,
body.night_mode .audio-room-page .audio-room-side,
body.night-mode .audio-room-page .audio-room-side,
body.dark_mode .audio-room-page .audio-room-side,
body.dark-mode .audio-room-page .audio-room-side,
body.night_mode .audio-room-page .audio-room-requests,
body.night-mode .audio-room-page .audio-room-requests,
body.dark_mode .audio-room-page .audio-room-requests,
body.dark-mode .audio-room-page .audio-room-requests {
  padding: 22px !important;
  border-color: var(--aura-audio-border) !important;
  background: linear-gradient(180deg, var(--aura-audio-panel-2), var(--aura-audio-panel)) !important;
  box-shadow: none !important;
}

body.night_mode .audio-room-page a.audio-room-back,
body.night-mode .audio-room-page a.audio-room-back,
body.dark_mode .audio-room-page a.audio-room-back,
body.dark-mode .audio-room-page a.audio-room-back,
body.night_mode .audio-room-page a.audio-room-back:visited,
body.night-mode .audio-room-page a.audio-room-back:visited,
body.dark_mode .audio-room-page a.audio-room-back:visited,
body.dark-mode .audio-room-page a.audio-room-back:visited {
  color: var(--aura-audio-accent) !important;
  text-decoration: none !important;
}

body.night_mode .audio-room-page .audio-room-title-block,
body.night-mode .audio-room-page .audio-room-title-block,
body.dark_mode .audio-room-page .audio-room-title-block,
body.dark-mode .audio-room-page .audio-room-title-block {
  margin-bottom: 20px !important;
  padding: 24px !important;
  border-color: var(--aura-audio-border) !important;
  background:
    linear-gradient(135deg, rgba(154, 182, 255, .08), rgba(255, 138, 160, .05)),
    var(--aura-audio-surface) !important;
}

body.night_mode .audio-room-page .audio-room-title-block h1,
body.night-mode .audio-room-page .audio-room-title-block h1,
body.dark_mode .audio-room-page .audio-room-title-block h1,
body.dark-mode .audio-room-page .audio-room-title-block h1 {
  color: var(--aura-audio-text) !important;
}

body.night_mode .audio-room-page .audio-room-timebar,
body.night-mode .audio-room-page .audio-room-timebar,
body.dark_mode .audio-room-page .audio-room-timebar,
body.dark-mode .audio-room-page .audio-room-timebar {
  margin-bottom: 22px !important;
  padding: 14px 16px !important;
  border-color: var(--aura-audio-border-soft) !important;
  background: var(--aura-audio-surface) !important;
}

body.night_mode .audio-room-page .audio-room-timebar strong,
body.night-mode .audio-room-page .audio-room-timebar strong,
body.dark_mode .audio-room-page .audio-room-timebar strong,
body.dark-mode .audio-room-page .audio-room-timebar strong {
  color: var(--aura-audio-muted) !important;
}

body.night_mode .audio-room-page .audio-room-timebar span,
body.night-mode .audio-room-page .audio-room-timebar span,
body.dark_mode .audio-room-page .audio-room-timebar span,
body.dark-mode .audio-room-page .audio-room-timebar span {
  color: var(--aura-audio-text) !important;
}

body.night_mode .audio-room-page .audio-room-section-head,
body.night-mode .audio-room-page .audio-room-section-head,
body.dark_mode .audio-room-page .audio-room-section-head,
body.dark-mode .audio-room-page .audio-room-section-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  width: 100% !important;
  margin-bottom: 16px !important;
}

body.night_mode .audio-room-page .audio-room-section-head h2,
body.night-mode .audio-room-page .audio-room-section-head h2,
body.dark_mode .audio-room-page .audio-room-section-head h2,
body.dark-mode .audio-room-page .audio-room-section-head h2,
body.night_mode .audio-room-page .audio-room-side h2,
body.night-mode .audio-room-page .audio-room-side h2,
body.dark_mode .audio-room-page .audio-room-side h2,
body.dark-mode .audio-room-page .audio-room-side h2 {
  color: var(--aura-audio-text) !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
}

body.night_mode .audio-room-page .audio-room-list-toggle,
body.night-mode .audio-room-page .audio-room-list-toggle,
body.dark_mode .audio-room-page .audio-room-list-toggle,
body.dark-mode .audio-room-page .audio-room-list-toggle {
  min-height: 34px !important;
  padding: 0 16px !important;
  border: 1px solid var(--aura-audio-border-soft) !important;
  background: var(--aura-audio-surface-strong) !important;
  color: var(--aura-audio-text) !important;
}

body.night_mode .audio-room-page .audio-room-person,
body.night-mode .audio-room-page .audio-room-person,
body.dark_mode .audio-room-page .audio-room-person,
body.dark-mode .audio-room-page .audio-room-person {
  padding: 18px !important;
  border-color: var(--aura-audio-border-soft) !important;
  background: var(--aura-audio-surface) !important;
}

body.night_mode .audio-room-page .audio-room-person span,
body.night-mode .audio-room-page .audio-room-person span,
body.dark_mode .audio-room-page .audio-room-person span,
body.dark-mode .audio-room-page .audio-room-person span,
body.night_mode .audio-room-page .audio-room-empty-compact,
body.night-mode .audio-room-page .audio-room-empty-compact,
body.dark_mode .audio-room-page .audio-room-empty-compact,
body.dark-mode .audio-room-page .audio-room-empty-compact {
  color: var(--aura-audio-muted) !important;
}

body.night_mode .audio-room-page .audio-room-controls,
body.night-mode .audio-room-page .audio-room-controls,
body.dark_mode .audio-room-page .audio-room-controls,
body.dark-mode .audio-room-page .audio-room-controls {
  gap: 10px !important;
  margin-top: 20px !important;
}

body.night_mode .audio-room-page .audio-room-control,
body.night-mode .audio-room-page .audio-room-control,
body.dark_mode .audio-room-page .audio-room-control,
body.dark-mode .audio-room-page .audio-room-control {
  min-height: 46px !important;
  height: 46px !important;
  padding: 0 18px !important;
  border-color: var(--aura-audio-border-soft) !important;
  background: var(--aura-audio-surface-strong) !important;
  color: var(--aura-audio-text) !important;
}

body.night_mode .audio-room-page .audio-room-control.danger,
body.night-mode .audio-room-page .audio-room-control.danger,
body.dark_mode .audio-room-page .audio-room-control.danger,
body.dark-mode .audio-room-page .audio-room-control.danger {
  border-color: rgba(255, 138, 160, .34) !important;
  background: var(--aura-audio-danger-soft) !important;
  color: var(--aura-audio-danger) !important;
}

body.night_mode .audio-room-page .audio-room-side,
body.night-mode .audio-room-page .audio-room-side,
body.dark_mode .audio-room-page .audio-room-side,
body.dark-mode .audio-room-page .audio-room-side {
  min-height: 230px;
}

body.night_mode .audio-room-page .audio-room-listeners .audio-room-listener-list,
body.night-mode .audio-room-page .audio-room-listeners .audio-room-listener-list,
body.dark_mode .audio-room-page .audio-room-listeners .audio-room-listener-list,
body.dark-mode .audio-room-page .audio-room-listeners .audio-room-listener-list {
  min-height: 132px;
  align-items: center;
}

body.night_mode .audio-room-page .audio-room-chat-list,
body.night-mode .audio-room-page .audio-room-chat-list,
body.dark_mode .audio-room-page .audio-room-chat-list,
body.dark-mode .audio-room-page .audio-room-chat-list,
body.night_mode .audio-room-page .audio-room-chat-form input,
body.night-mode .audio-room-page .audio-room-chat-form input,
body.dark_mode .audio-room-page .audio-room-chat-form input,
body.dark-mode .audio-room-page .audio-room-chat-form input {
  border-color: var(--aura-audio-border-soft) !important;
  background: var(--aura-audio-surface) !important;
  color: var(--aura-audio-text) !important;
}

body.night_mode .audio-room-page .audio-room-chat-form input::placeholder,
body.night-mode .audio-room-page .audio-room-chat-form input::placeholder,
body.dark_mode .audio-room-page .audio-room-chat-form input::placeholder,
body.dark-mode .audio-room-page .audio-room-chat-form input::placeholder {
  color: var(--aura-audio-muted-2) !important;
}

@media (max-width: 640px) {
  body.night_mode .audio-room-page .audio-room-main,
  body.night-mode .audio-room-page .audio-room-main,
  body.dark_mode .audio-room-page .audio-room-main,
  body.dark-mode .audio-room-page .audio-room-main,
  body.night_mode .audio-room-page .audio-room-side,
  body.night-mode .audio-room-page .audio-room-side,
  body.dark_mode .audio-room-page .audio-room-side,
  body.dark-mode .audio-room-page .audio-room-side,
  body.night_mode .audio-room-page .audio-room-requests,
  body.night-mode .audio-room-page .audio-room-requests,
  body.dark_mode .audio-room-page .audio-room-requests,
  body.dark-mode .audio-room-page .audio-room-requests {
    padding: 18px !important;
  }
}

/* Header popover empty states */
.i_general_box_message_notifications_container.generalBox .no_not_here,
.i_general_box_notifications_container.generalBox .no_not_here {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  min-height: 180px !important;
  height: auto !important;
  margin: 10px 0 2px !important;
  padding: 34px 18px !important;
  overflow: hidden !important;
  background: #f7f9fc !important;
  background-image: none !important;
  border: 1px dashed #dfe6f2 !important;
  border-radius: 18px !important;
  box-shadow: none !important;
  color: #303858 !important;
}

.i_general_box_message_notifications_container.generalBox .no_not_here::before,
.i_general_box_notifications_container.generalBox .no_not_here::before {
  content: "" !important;
  position: absolute !important;
  width: 74px !important;
  height: 74px !important;
  border-radius: 999px !important;
  background: #eef2f8 !important;
  border: 1px solid #dfe6f2 !important;
  box-shadow: none !important;
}

.i_general_box_message_notifications_container.generalBox .no_not_here svg,
.i_general_box_message_notifications_container.generalBox .no_not_here svg *,
.i_general_box_notifications_container.generalBox .no_not_here svg,
.i_general_box_notifications_container.generalBox .no_not_here svg * {
  position: relative !important;
  z-index: 1 !important;
  width: 38px !important;
  height: 38px !important;
  color: #6b7894 !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

@media screen and (max-width: 700px) {
  .i_general_box_message_notifications_container.generalBox .no_not_here,
  .i_general_box_notifications_container.generalBox .no_not_here {
    min-height: 156px !important;
    padding: 28px 16px !important;
  }
}

/* Header popover fixed footer layout */
.i_general_box_container.generalBox,
.i_general_box_message_notifications_container.generalBox,
.i_general_box_notifications_container.generalBox {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.i_general_box_container.generalBox .btest,
.i_general_box_message_notifications_container.generalBox .btest,
.i_general_box_notifications_container.generalBox .btest {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  max-height: calc(100vh - 92px) !important;
  overflow: hidden !important;
}

.i_general_box_container.generalBox .i_user_details,
.i_general_box_message_notifications_container.generalBox .i_user_details,
.i_general_box_notifications_container.generalBox .i_user_details {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.i_general_box_container.generalBox .footer_container,
.i_general_box_message_notifications_container.generalBox .footer_container,
.i_general_box_notifications_container.generalBox .footer_container {
  position: relative !important;
  inset: auto !important;
  flex: 0 0 auto !important;
  z-index: 2 !important;
}

.i_general_box_container.generalBox .footer_container .point_pr,
.i_general_box_message_notifications_container.generalBox .footer_container.messages,
.i_general_box_notifications_container.generalBox .footer_container.messages {
  width: 100% !important;
}

.i_general_box_container.generalBox .footer_container .point_pr a,
.i_general_box_message_notifications_container.generalBox .footer_container.messages a,
.i_general_box_notifications_container.generalBox .footer_container.messages a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 54px !important;
  width: 100% !important;
  padding: 0 18px !important;
  line-height: 1.1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: .02em !important;
  transition: color .18s ease !important;
}

.i_general_box_message_notifications_container.generalBox .footer_container.messages a:hover,
.i_general_box_message_notifications_container.generalBox .footer_container.messages a:focus-visible,
.i_general_box_notifications_container.generalBox .footer_container.messages a:hover,
.i_general_box_notifications_container.generalBox .footer_container.messages a:focus-visible {
  color: #c7652f !important;
}

.i_general_box_container.generalBox .i_message_full_screen,
.i_general_box_container.generalBox .i_message_full_screen a,
.i_general_box_message_notifications_container.generalBox .i_message_full_screen,
.i_general_box_message_notifications_container.generalBox .i_message_full_screen a,
.i_general_box_notifications_container.generalBox .i_message_full_screen,
.i_general_box_notifications_container.generalBox .i_message_full_screen a {
  color: #111827 !important;
}

.i_general_box_container.generalBox .i_message_full_screen svg,
.i_general_box_message_notifications_container.generalBox .i_message_full_screen svg,
.i_general_box_notifications_container.generalBox .i_message_full_screen svg {
  color: currentColor !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

.i_general_box_container.generalBox .i_message_full_screen svg *,
.i_general_box_message_notifications_container.generalBox .i_message_full_screen svg *,
.i_general_box_notifications_container.generalBox .i_message_full_screen svg * {
  color: inherit !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

.i_general_box_container.generalBox .i_message_full_screen svg [fill="none"],
.i_general_box_message_notifications_container.generalBox .i_message_full_screen svg [fill="none"],
.i_general_box_notifications_container.generalBox .i_message_full_screen svg [fill="none"] {
  fill: none !important;
}

/* Aura feed empty state */
.wrapper .th_middle .pageMiddle .pageMiddlePosts #moreType > .noPost.optional_width,
.profile_wrapper .pageMiddlePosts .noPost {
  width: 100%;
  min-height: 224px;
  margin: 0 0 18px;
  padding: 38px 30px;
  gap: 14px;
  border: 1px solid color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 64%, transparent);
  border-radius: 14px;
  -webkit-border-radius: 14px;
  background: var(--dizzy-theme-panel-background, #ffffff);
  box-shadow: none;
  overflow: hidden;
}

.wrapper .th_middle .pageMiddle .pageMiddlePosts #moreType > .noPost.optional_width .noPostIcon,
.profile_wrapper .pageMiddlePosts .noPost .noPostIcon {
  width: 84px;
  height: 84px;
  min-width: 84px;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 72%, transparent);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: color-mix(in srgb, var(--dizzy-theme-hover-surface, #edf4ff) 42%, #ffffff);
  color: var(--dizzy-theme-menu-icon, #53627c);
}

.wrapper .th_middle .pageMiddle .pageMiddlePosts #moreType > .noPost.optional_width .noPostIcon svg,
.profile_wrapper .pageMiddlePosts .noPost .noPostIcon svg {
  display: block;
  width: 50px;
  height: 50px;
  color: inherit;
  fill: none;
  stroke: currentColor;
}

.wrapper .th_middle .pageMiddle .pageMiddlePosts #moreType > .noPost.optional_width .noPostIcon svg *,
.profile_wrapper .pageMiddlePosts .noPost .noPostIcon svg * {
  color: inherit;
  stroke: currentColor !important;
}

.wrapper .th_middle .pageMiddle .pageMiddlePosts #moreType > .noPost.optional_width .noPostNote,
.profile_wrapper .pageMiddlePosts .noPost .noPostNote {
  display: block;
  max-width: 690px;
  margin: 0 auto;
  color: var(--dizzy-theme-text-muted, #6f7d92);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
}

@media screen and (max-width: 700px) {
  .wrapper .th_middle .pageMiddle .pageMiddlePosts #moreType > .noPost.optional_width,
  .profile_wrapper .pageMiddlePosts .noPost {
    min-height: 190px;
    padding: 28px 18px;
    gap: 12px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
  }

  .wrapper .th_middle .pageMiddle .pageMiddlePosts #moreType > .noPost.optional_width .noPostIcon,
  .profile_wrapper .pageMiddlePosts .noPost .noPostIcon {
    width: 68px;
    height: 68px;
    min-width: 68px;
  }

  .wrapper .th_middle .pageMiddle .pageMiddlePosts #moreType > .noPost.optional_width .noPostIcon svg,
  .profile_wrapper .pageMiddlePosts .noPost .noPostIcon svg {
    width: 40px;
    height: 40px;
  }

  .wrapper .th_middle .pageMiddle .pageMiddlePosts #moreType > .noPost.optional_width .noPostNote,
  .profile_wrapper .pageMiddlePosts .noPost .noPostNote {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Aura saved page */
.saved_page_aura #moreType[data-type="savedpost"] {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 16px;
}

.saved_page_aura .i_postSavedHeader.saved_page_header {
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 94px;
  margin: 0;
  padding: 18px 20px 18px 24px;
  border: 1px solid color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 74%, transparent);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  background: var(--dizzy-theme-panel-background, #ffffff);
  box-shadow: none;
  overflow: hidden;
  color: var(--dizzy-theme-text-primary, #111827);
}

.saved_page_aura .i_postSavedHeader.saved_page_header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  -webkit-border-radius: 0 999px 999px 0;
  background: var(--dizzy-theme-brand-primary, #f65169);
}

.saved_page_aura .i_postSavedHeader.saved_page_header::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 54px;
  height: 54px;
  border: 1px solid color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 70%, transparent);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: color-mix(in srgb, var(--dizzy-theme-hover-surface, #eef2f8) 44%, #ffffff);
  opacity: .52;
}

.saved_page_aura .saved_page_icon {
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border: 1px solid color-mix(in srgb, var(--dizzy-theme-brand-primary, #f65169) 18%, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)));
  border-radius: 15px;
  -webkit-border-radius: 15px;
  background: color-mix(in srgb, var(--dizzy-theme-brand-primary, #f65169) 10%, #ffffff);
  color: var(--dizzy-theme-brand-primary, #f65169);
}

.saved_page_aura .saved_page_icon svg {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0;
  color: inherit;
  fill: currentColor;
  stroke: currentColor;
}

.saved_page_aura .saved_page_icon svg * {
  color: inherit;
  fill: currentColor;
  stroke: currentColor;
}

.saved_page_aura .saved_page_copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.saved_page_aura .saved_page_label {
  color: var(--dizzy-theme-text-muted, #667085);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.saved_page_aura .saved_page_title {
  margin-top: 4px;
  color: var(--dizzy-theme-text-primary, #111827);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0;
}

.saved_page_aura #moreType[data-type="savedpost"] > .i_post_body {
  margin-top: 0;
}

.saved_page_aura #moreType[data-type="savedpost"] > .noPost.optional_width {
  margin: 0 0 18px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
}

@media screen and (max-width: 700px) {
  .saved_page_aura #moreType[data-type="savedpost"] {
    gap: 12px;
  }

  .saved_page_aura .i_postSavedHeader.saved_page_header {
    min-height: 82px;
    padding: 15px 16px 15px 20px;
    border-radius: 14px;
    -webkit-border-radius: 14px;
  }

  .saved_page_aura .i_postSavedHeader.saved_page_header::before {
    top: 15px;
    bottom: 15px;
  }

  .saved_page_aura .i_postSavedHeader.saved_page_header::after {
    right: 14px;
    top: 14px;
    width: 44px;
    height: 44px;
  }

  .saved_page_aura .saved_page_icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 13px;
    -webkit-border-radius: 13px;
  }

  .saved_page_aura .saved_page_icon svg {
    width: 24px;
    height: 24px;
  }

  .saved_page_aura .saved_page_label {
    font-size: 11px;
  }

  .saved_page_aura .saved_page_title {
    font-size: 19px;
  }
}

/* Aura marketplace catalog refresh */
.marketplace-page-body {
  background: var(--dizzy-theme-page-background, #f0f2f5);
  background-image: none;
}

.marketplace-page.marketplace-page--aura {
  gap: 18px;
  padding-top: 22px;
}

.marketplace-page--aura .shopping_left_menu {
  flex: 0 0 304px;
  max-width: 304px;
}

.marketplace-page--aura .i_shopping_menu_wrapper,
.marketplace-page--aura .settings_mobile_menu_container,
.marketplace-page--aura .marketplace-hero,
.marketplace-page--aura .marketplace-card,
.marketplace-page--aura .marketplace-empty-card {
  background: var(--dizzy-theme-panel-background, #ffffff);
  background-image: none;
  border: 1px solid color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 76%, transparent);
  box-shadow: none;
}

.marketplace-page--aura .i_shopping_menu_wrapper {
  padding: 12px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
}

.marketplace-page--aura .i_shop_title {
  padding: 2px 4px 12px;
  margin: 0 0 8px;
  color: var(--dizzy-theme-text-muted, #667085);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .08em;
}

.marketplace-page--aura .i_sh_menu_wrapper {
  gap: 6px;
}

.marketplace-page--aura .i_sp_menu_box {
  position: relative;
  min-height: 46px;
  padding: 10px 12px 10px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: transparent;
  color: var(--dizzy-theme-text-primary, #111827);
  font-size: 13px;
  font-weight: 650;
  box-shadow: none;
  transform: none;
}

.marketplace-page--aura .i_sp_menu_box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 999px 999px 0;
  -webkit-border-radius: 0 999px 999px 0;
  background: transparent;
}

.marketplace-page--aura .i_sp_menu_box:hover {
  background: color-mix(in srgb, var(--dizzy-theme-hover-surface, #eef2f8) 56%, #ffffff);
  border-color: color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 82%, transparent);
  box-shadow: none;
  transform: none;
  color: var(--dizzy-theme-text-primary, #111827);
}

.marketplace-page--aura .shopping_left_menu .active_p {
  background: color-mix(in srgb, var(--dizzy-theme-brand-primary, #f65169) 9%, #ffffff);
  border-color: color-mix(in srgb, var(--dizzy-theme-brand-primary, #f65169) 24%, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)));
  color: var(--dizzy-theme-text-primary, #111827) !important;
  box-shadow: none;
}

.marketplace-page--aura .shopping_left_menu .active_p::before {
  background: var(--dizzy-theme-brand-primary, #f65169);
}

.marketplace-page--aura .i_sp_menu_box svg,
.marketplace-page--aura .shopping_left_menu .active_p svg {
  width: 20px;
  height: 20px;
  margin-right: 0;
  color: inherit;
  fill: currentColor !important;
}

.marketplace-page--aura .shop_main_wrapper_container {
  gap: 14px;
}

.marketplace-page--aura .marketplace-hero {
  min-height: 112px;
  padding: 18px 20px 18px 24px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}

.marketplace-page--aura .marketplace-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  -webkit-border-radius: 0 999px 999px 0;
  background: var(--dizzy-theme-brand-primary, #f65169);
}

.marketplace-page--aura .marketplace-hero::after {
  right: 18px;
  top: 18px;
  bottom: auto;
  width: 54px;
  height: 54px;
  border: 1px solid color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 70%, transparent);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: color-mix(in srgb, var(--dizzy-theme-hover-surface, #eef2f8) 44%, #ffffff);
  opacity: .52;
  transform: none;
}

.marketplace-page--aura .marketplace-hero__content {
  gap: 14px;
  align-items: center;
}

.marketplace-page--aura .marketplace-hero__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border: 1px solid color-mix(in srgb, var(--dizzy-theme-brand-primary, #f65169) 18%, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)));
  border-radius: 15px;
  -webkit-border-radius: 15px;
  background: color-mix(in srgb, var(--dizzy-theme-brand-primary, #f65169) 10%, #ffffff);
  color: var(--dizzy-theme-brand-primary, #f65169);
}

.marketplace-page--aura .marketplace-hero__icon svg {
  width: 26px;
  height: 26px;
  color: inherit;
  fill: currentColor;
}

.marketplace-page--aura .marketplace-hero__eyebrow {
  color: var(--dizzy-theme-text-muted, #667085);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
}

.marketplace-page--aura .marketplace-hero__title {
  color: var(--dizzy-theme-text-primary, #111827);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: 0;
}

.marketplace-page--aura .marketplace-hero__subtitle {
  color: var(--dizzy-theme-text-muted, #667085);
  font-size: 13px;
  font-weight: 500;
}

.marketplace-page--aura .marketplace-hero__highlights {
  margin-left: auto;
  max-width: 260px;
}

.marketplace-page--aura .hero-highlight {
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 76%, transparent);
  border-radius: 999px;
  -webkit-border-radius: 999px;
  background: color-mix(in srgb, var(--dizzy-theme-hover-surface, #eef2f8) 38%, #ffffff);
  box-shadow: none;
  color: var(--dizzy-theme-text-primary, #111827);
  font-size: 12px;
  font-weight: 650;
}

.marketplace-page--aura .pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--dizzy-theme-brand-primary, #f65169);
  box-shadow: none;
}

.marketplace-page--aura .marketplace-grid,
.marketplace-page--aura #moreType[data-po="products"] {
  display: grid;
  display: -ms-grid;
  gap: 14px;
  padding: 0 0 8px;
  justify-items: stretch;
}

.marketplace-page--aura .marketplace-grid .s_p_product_container,
.marketplace-page--aura #moreType[data-po="products"] .s_p_product_container {
  width: 100%;
  max-width: none;
}

.marketplace-page--aura .marketplace-card {
  border-radius: 14px;
  -webkit-border-radius: 14px;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.marketplace-page--aura .marketplace-card:hover {
  border-color: color-mix(in srgb, var(--dizzy-theme-brand-primary, #f65169) 26%, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)));
  box-shadow: none;
  transform: translateY(-2px);
}

.marketplace-page--aura .marketplace-card .product_image {
  aspect-ratio: 16 / 11;
  height: auto;
  border-radius: 14px 14px 0 0;
  -webkit-border-radius: 14px 14px 0 0;
  background: color-mix(in srgb, var(--dizzy-theme-hover-surface, #eef2f8) 54%, #ffffff);
}

.marketplace-page--aura .marketplace-card .product_image img {
  border-radius: 0;
  -webkit-border-radius: 0;
}

.marketplace-page--aura .marketplace-card:hover .product_image img {
  transform: scale(1.02);
}

.marketplace-page--aura .marketplace-card .image_tag,
.marketplace-page--aura .marketplace-card .s_p_product_type {
  border-radius: 999px;
  -webkit-border-radius: 999px;
  box-shadow: none;
}

.marketplace-page--aura .marketplace-card .s_p_details {
  padding: 13px 14px 14px;
  gap: 9px;
}

.marketplace-page--aura .marketplace-card .s_p_title {
  min-height: 40px;
  color: var(--dizzy-theme-text-primary, #111827);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
}

.marketplace-page--aura .s_p_chip,
.marketplace-page--aura .s_p_chip.soft {
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 76%, transparent);
  background: color-mix(in srgb, var(--dizzy-theme-hover-surface, #eef2f8) 34%, #ffffff);
  box-shadow: none;
  color: var(--dizzy-theme-text-muted, #667085);
  font-size: 11px;
  font-weight: 650;
}

.marketplace-page--aura .s_p_meta {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 58%, transparent);
}

.marketplace-page--aura .marketplace-price {
  color: var(--dizzy-theme-text-primary, #111827);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.marketplace-page--aura .marketplace-empty-card {
  width: 100%;
  min-height: 232px;
  padding: 34px 26px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
}

.marketplace-page--aura .marketplace-empty-card__badge {
  background: color-mix(in srgb, var(--dizzy-theme-brand-primary, #f65169) 9%, #ffffff);
  color: var(--dizzy-theme-text-primary, #111827);
  box-shadow: none;
}

.marketplace-page--aura .marketplace-empty-card__icon {
  width: 56px;
  height: 56px;
  border: 1px solid color-mix(in srgb, var(--dizzy-theme-brand-primary, #f65169) 18%, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)));
  border-radius: 15px;
  -webkit-border-radius: 15px;
  background: color-mix(in srgb, var(--dizzy-theme-brand-primary, #f65169) 10%, #ffffff);
  box-shadow: none;
  color: var(--dizzy-theme-brand-primary, #f65169);
}

.marketplace-page--aura .marketplace-empty-card__icon svg {
  color: inherit;
  fill: currentColor;
}

.marketplace-page--aura .marketplace-empty-card__title {
  color: var(--dizzy-theme-text-primary, #111827);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0;
}

.marketplace-page--aura .marketplace-empty-card__subtitle {
  color: var(--dizzy-theme-text-muted, #667085);
}

.marketplace-page--aura .marketplace-empty-card__cta {
  background: var(--dizzy-theme-text-primary, #111827);
  background-image: none;
  box-shadow: none;
  color: var(--dizzy-theme-panel-background, #ffffff);
}

.marketplace-page--aura .marketplace-empty-card__cta:hover {
  background: var(--dizzy-theme-brand-primary, #f65169);
  box-shadow: none;
  transform: none;
}

@media screen and (max-width: 1024px) {
  .marketplace-page.marketplace-page--aura {
    gap: 12px;
    padding-top: 16px;
  }

  .marketplace-page--aura .shopping_left_menu {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .marketplace-page--aura .settings_mobile_ope_menu {
    display: none;
  }

  .marketplace-page--aura .i_shopping_menu_wrapper {
    display: block;
    position: static;
    top: auto;
    padding: 8px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    overflow: hidden;
  }

  .marketplace-page--aura .i_shop_title {
    display: none;
  }

  .marketplace-page--aura .i_sh_menus {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .marketplace-page--aura .i_sh_menu_wrapper {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    gap: 8px;
    width: max-content;
    min-width: 100%;
  }

  .marketplace-page--aura .i_sh_menu_wrapper a {
    flex: 0 0 auto;
    text-decoration: none;
  }

  .marketplace-page--aura .i_sp_menu_box {
    min-height: 42px;
    white-space: nowrap;
  }

  .marketplace-page--aura .i_sp_menu_box::before {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 0;
    width: auto;
    height: 3px;
    border-radius: 999px 999px 0 0;
    -webkit-border-radius: 999px 999px 0 0;
  }

  .marketplace-page--aura .marketplace-hero {
    min-height: 96px;
    padding: 16px 16px 16px 20px;
    border-radius: 14px;
    -webkit-border-radius: 14px;
  }

  .marketplace-page--aura .marketplace-hero__highlights {
    display: none;
  }
}

@media screen and (max-width: 680px) {
  .marketplace-page--aura .marketplace-hero__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 13px;
    -webkit-border-radius: 13px;
  }

  .marketplace-page--aura .marketplace-hero__icon svg {
    width: 23px;
    height: 23px;
  }

  .marketplace-page--aura .marketplace-hero__title {
    font-size: 20px;
  }

  .marketplace-page--aura .marketplace-hero__subtitle {
    font-size: 12px;
  }

  .marketplace-page--aura .marketplace-card .product_image {
    aspect-ratio: 16 / 10.5;
  }

  .marketplace-page--aura .marketplace-empty-card {
    min-height: 216px;
    padding: 30px 18px;
  }
}

@media screen and (min-width: 1025px) {
  .marketplace-page--aura .shopping_left_menu {
    flex: 0 0 330px;
    max-width: 330px;
    position: relative;
    top: auto;
  }

  .marketplace-page--aura .shop_main_wrapper {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-left: 0;
    min-width: 0;
  }

  .marketplace-page--aura .marketplace-hero {
    min-height: 148px;
    height: auto;
    padding: 22px 24px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background: var(--dizzy-theme-panel-background, #ffffff);
    background-image: none;
    border-color: color-mix(in srgb, var(--dizzy-theme-brand-primary, #f65169) 16%, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)));
    color: var(--dizzy-theme-text-primary, #111827);
  }

  .marketplace-page--aura .marketplace-hero::before {
    top: 22px;
    bottom: 22px;
    background: var(--dizzy-theme-brand-primary, #f65169);
  }

  .marketplace-page--aura .marketplace-hero::after {
    right: 22px;
    top: 22px;
    border-color: color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 70%, transparent);
    background: color-mix(in srgb, var(--dizzy-theme-hover-surface, #eef2f8) 44%, #ffffff);
  }

  .marketplace-page--aura .marketplace-hero__content {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .marketplace-page--aura .marketplace-hero__icon {
    background: color-mix(in srgb, var(--dizzy-theme-brand-primary, #f65169) 10%, #ffffff);
    border-color: color-mix(in srgb, var(--dizzy-theme-brand-primary, #f65169) 18%, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)));
  }

  .marketplace-page--aura .marketplace-hero__eyebrow {
    color: var(--dizzy-theme-text-muted, #667085);
  }

  .marketplace-page--aura .marketplace-hero__title {
    max-width: none;
    color: var(--dizzy-theme-text-primary, #111827);
    font-size: 28px;
    line-height: 1.12;
  }

  .marketplace-page--aura .marketplace-hero__subtitle {
    max-width: 520px;
    color: var(--dizzy-theme-text-muted, #667085);
  }

  .marketplace-page--aura .marketplace-hero__highlights {
    width: auto;
    max-width: 260px;
    margin-left: auto;
    justify-content: flex-end;
  }

  .marketplace-page--aura .hero-highlight {
    background: color-mix(in srgb, var(--dizzy-theme-hover-surface, #eef2f8) 38%, #ffffff);
    border-color: color-mix(in srgb, var(--dizzy-theme-panel-border, rgba(82, 92, 122, 0.1)) 76%, transparent);
    color: var(--dizzy-theme-text-primary, #111827);
  }

  .marketplace-page--aura .shop_main_wrapper_container {
    min-width: 0;
  }

  .marketplace-page--aura .marketplace-grid,
  .marketplace-page--aura #moreType[data-po="products"] {
    height: auto;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .marketplace-page--aura .marketplace-grid .s_p_product_container.nmr,
  .marketplace-page--aura #moreType[data-po="products"] .s_p_product_container.nmr {
    grid-column: 1 / -1;
  }

  .marketplace-page--aura .marketplace-empty-card {
    min-height: 286px;
    height: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 34px 36px;
  }

  .marketplace-page--aura .marketplace-empty-card__badge {
    align-self: center;
  }

  .marketplace-page--aura .marketplace-empty-card__body {
    align-items: center;
    max-width: 430px;
  }

  .marketplace-page--aura .marketplace-empty-card__title {
    max-width: 360px;
    font-size: 22px;
    line-height: 1.18;
  }

  .marketplace-page--aura .marketplace-empty-card__subtitle {
    max-width: 360px;
  }
}

/* Chat composer final spacing and tooltip guard */
.chat_p_body .chat_middle_container .message_send_form_wrapper {
  padding: 20px 0 calc(18px + env(safe-area-inset-bottom)) !important;
  flex-basis: auto !important;
  overflow: visible !important;
}

.chat_p_body .chat_middle_container .message_send_form_wrapper > .tabing_non_justify.flex_ {
  padding: 0 24px !important;
  margin-top: 18px !important;
  box-sizing: border-box;
}

.chat_p_body .chat_middle_container .message_form_items {
  gap: 14px !important;
}

.chat_p_body .chat_middle_container .message_text_textarea {
  min-height: 58px !important;
}

.chat_p_body .chat_middle_container .message_text_textarea textarea.mSize {
  min-height: 56px !important;
  height: 56px !important;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.chat_p_body .chat_middle_container .message_form_plus.sendmes {
  min-height: 58px !important;
}

.chat_p_body .chat_middle_container .message_send_form_wrapper .nanosSend.box_not_padding_top {
  min-height: 66px !important;
  padding: 14px 24px 10px !important;
  gap: 12px !important;
  overflow: visible !important;
  box-sizing: border-box;
}

.chat_p_body .chat_middle_container .nanosSend .message_form_plus.ownTooltip {
  overflow: visible !important;
}

.chat_p_body .chat_middle_container .nanosSend .message_form_plus.ownTooltip .ownTooltipWrapper {
  display: none !important;
}

.chat_p_body .chat_middle_container .nanosSend .message_form_plus.ownTooltip::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: 62px;
  z-index: 10020;
  display: block;
  max-width: min(280px, calc(100vw - 32px));
  width: max-content;
  padding: 8px 12px;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  background: rgba(0, 0, 0, 0.86);
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  -webkit-transform: translateX(-50%) translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.chat_p_body .chat_middle_container .nanosSend .message_form_plus.ownTooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  -webkit-transform: translateX(-50%) translateY(0);
}

.chat_p_body .chat_middle_container .nanosSend .message_form_plus.chtBtns + .message_form_plus.ownTooltip::after {
  left: 0;
  transform: translateY(4px);
  -webkit-transform: translateY(4px);
}

.chat_p_body .chat_middle_container .nanosSend .message_form_plus.chtBtns + .message_form_plus.ownTooltip:hover::after {
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

@media screen and (max-width: 700px) {
  .chat_p_body .chat_middle_container .message_send_form_wrapper {
    padding: 14px 0 calc(14px + env(safe-area-inset-bottom)) !important;
  }

  .chat_p_body .chat_middle_container .message_send_form_wrapper > .tabing_non_justify.flex_ {
    padding: 0 14px !important;
    margin-top: 12px !important;
  }

  .chat_p_body .chat_middle_container .message_send_form_wrapper .nanosSend.box_not_padding_top {
    min-height: 62px !important;
    padding: 12px 14px 8px !important;
  }

  .chat_p_body .chat_middle_container .nanosSend .message_form_plus.ownTooltip .ownTooltipWrapper {
    display: none !important;
  }

  .chat_p_body .chat_middle_container .nanosSend .message_form_plus.ownTooltip::after {
    bottom: 58px;
    max-width: calc(100vw - 28px);
  }
}

/* Chat composer compact action flow */
.chat_p_body .chat_middle_container .message_send_form_wrapper:not(.blocked_not) {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  padding: 18px 24px !important;
  overflow: visible !important;
}

.chat_p_body .chat_middle_container .message_send_form_wrapper > .nanos {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 86px;
  z-index: 60;
  overflow: visible;
}

.chat_p_body .chat_middle_container .message_send_form_wrapper > .nanosSecret {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 86px;
  width: auto !important;
  z-index: 59;
  overflow: visible;
}

.chat_p_body .chat_middle_container .message_send_form_wrapper > .tabing_non_justify.flex_ {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 !important;
  margin-top: 0 !important;
}

.chat_p_body .chat_middle_container .message_send_form_wrapper .nanosSend.box_not_padding_top {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  width: auto;
  min-height: 58px !important;
  padding: 0 !important;
  gap: 10px !important;
  overflow: visible !important;
}

.chat_p_body .chat_middle_container .message_form_items {
  width: 100% !important;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.chat_p_body .chat_middle_container .message_send_text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
}

.chat_p_body .chat_middle_container .message_text_textarea {
  width: 100% !important;
  max-width: none !important;
}

.chat_p_body .chat_middle_container .message_form_plus.sendmes.send-disabled {
  display: none !important;
}

.chat_p_body .chat_middle_container .nanosSend .chatFileAction {
  display: none !important;
}

.chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .chatFileAction {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.chat_p_body .chat_middle_container .nanosSend .sendSecretMessage {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.chat_p_body .chat_middle_container .chat-composer-writing .message_form_plus.chtBtns .message_pls {
  position: relative;
}

.chat_p_body .chat_middle_container .chat-composer-writing .message_form_plus.chtBtns .message_pls svg {
  opacity: 0;
}

.chat_p_body .chat_middle_container .chat-composer-writing .message_form_plus.chtBtns .message_pls::before,
.chat_p_body .chat_middle_container .chat-composer-writing .message_form_plus.chtBtns .message_pls::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.chat_p_body .chat_middle_container .chat-composer-writing .message_form_plus.chtBtns .message_pls::after {
  width: 2px;
  height: 16px;
}

.chat_p_body .chat_middle_container .chat-composer-writing.chat-actions-open .message_form_plus.chtBtns .message_pls::after {
  opacity: 0;
}

.chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .message_form_plus:not(.chtBtns) {
  position: absolute;
  bottom: 66px;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(8px) scale(0.96);
  transform: translateY(8px) scale(0.96);
  -webkit-transition: opacity 0.16s ease, -webkit-transform 0.16s ease;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 62;
}

.chat_p_body .chat_middle_container .chat-composer-writing .nanosSend::before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: 56px;
  width: 268px;
  height: 56px;
  border: 1px solid var(--chat-border-soft, #e7edf5);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  background: var(--chat-panel-elevated, #ffffff);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(8px) scale(0.98);
  transform: translateY(8px) scale(0.98);
  -webkit-transition: opacity 0.16s ease, -webkit-transform 0.16s ease;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 61;
}

.chat_p_body .chat_middle_container .chat-composer-writing.chat-actions-open .nanosSend::before,
.chat_p_body .chat_middle_container .chat-composer-writing.chat-actions-open .nanosSend .message_form_plus:not(.chtBtns) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}

.chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .getmGifs {
  left: 48px;
}

.chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .chatFileAction {
  left: 0;
}

.chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .getmStickers {
  left: 96px;
}

.chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .sendPointMessage {
  left: 144px;
}

.chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .sendSecretMessage {
  left: 192px;
}

.chat_p_body .chat_middle_container .chat-composer-writing .message_form_plus.chtBtns > .fl_btns {
  bottom: 122px;
}

@media screen and (min-width: 701px) {
  .chat_p_body .chat_middle_container .message_send_form_wrapper:not(.blocked_not) {
    gap: 10px !important;
    padding: 14px 20px !important;
  }

  .chat_p_body .chat_middle_container .message_send_form_wrapper .nanosSend.box_not_padding_top {
    min-height: 46px !important;
    gap: 8px !important;
  }

  .chat_p_body .chat_middle_container .nanosSend .message_form_plus,
  .chat_p_body .chat_middle_container .message_form_items .message_form_plus,
  .chat_p_body .chat_middle_container .message_form_smiley_plus {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    border-radius: 15px !important;
    -webkit-border-radius: 15px !important;
  }

  .chat_p_body .chat_middle_container .message_text_textarea {
    min-height: 46px !important;
    padding: 0 46px 0 16px !important;
    border-radius: 18px !important;
    -webkit-border-radius: 18px !important;
  }

  .chat_p_body .chat_middle_container .message_text_textarea textarea.mSize {
    min-height: 44px !important;
    height: 44px !important;
    padding-top: 11px !important;
    padding-bottom: 11px !important;
    line-height: 1.35 !important;
  }

  .chat_p_body .chat_middle_container .message_smiley {
    right: 6px !important;
    top: 50% !important;
    bottom: auto !important;
    width: 34px !important;
    height: 34px !important;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .chat_p_body .chat_middle_container .message_smiley .message_form_smiley_plus {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    border-radius: 12px !important;
    -webkit-border-radius: 12px !important;
  }

  .chat_p_body .chat_middle_container .message_smiley .message_form_smiley_plus .message_pls {
    padding: 7px !important;
  }

  .chat_p_body .chat_middle_container .message_smiley .message_form_smiley_plus .message_pls svg {
    width: 18px !important;
    height: 18px !important;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .message_form_plus:not(.chtBtns) {
    bottom: 44px;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .nanosSend::before {
    bottom: 38px;
    width: 230px;
    height: 52px;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .getmGifs {
    left: 46px;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .getmStickers {
    left: 92px;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .sendPointMessage {
    left: 138px;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .sendSecretMessage {
    left: 184px;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .message_form_plus.chtBtns > .fl_btns {
    bottom: 94px;
  }
}

@media screen and (max-width: 700px) {
  .chat_p_body .chat_middle_container .message_send_form_wrapper:not(.blocked_not) {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    padding: 8px !important;
  }

  .chat_p_body .chat_middle_container .message_send_form_wrapper > .nanos {
    left: 8px;
    right: 8px;
    bottom: 58px;
  }

  .chat_p_body .chat_middle_container .message_send_form_wrapper > .nanosSecret {
    left: 8px;
    right: 8px;
    bottom: 58px;
  }

  .chat_p_body .chat_middle_container .message_form_items {
    gap: 6px !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .chat_p_body .chat_middle_container .message_text_textarea {
    min-height: 42px !important;
    padding: 0 38px 0 14px !important;
    border-radius: 17px !important;
    -webkit-border-radius: 17px !important;
  }

  .chat_p_body .chat_middle_container .message_text_textarea textarea.mSize {
    min-height: 40px !important;
    height: 40px !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .chat_p_body .chat_middle_container .message_smiley {
    right: 5px !important;
    bottom: 5px !important;
    width: 32px !important;
    height: 32px !important;
  }

  .chat_p_body .chat_middle_container .message_send_form_wrapper .nanosSend.box_not_padding_top {
    min-height: 42px !important;
    gap: 5px !important;
  }

  .chat_p_body .chat_middle_container .nanosSend .message_form_plus,
  .chat_p_body .chat_middle_container .message_form_items .message_form_plus,
  .chat_p_body .chat_middle_container .message_form_smiley_plus {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    border-radius: 12px !important;
    -webkit-border-radius: 12px !important;
  }

  .chat_p_body .chat_middle_container .message_form_plus.sendmes {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 15px !important;
    -webkit-border-radius: 15px !important;
  }

  .chat_p_body .chat_middle_container .message_pls {
    padding: 7px !important;
  }

  .chat_p_body .chat_middle_container .message_pls svg {
    width: 18px !important;
    height: 18px !important;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .message_form_plus:not(.chtBtns) {
    bottom: 46px;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .nanosSend::before {
    left: -5px;
    bottom: 40px;
    width: 192px;
    height: 42px;
    border-radius: 14px;
    -webkit-border-radius: 14px;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .chatFileAction {
    left: 0;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .getmGifs {
    left: 38px;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .getmStickers {
    left: 76px;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .sendPointMessage {
    left: 114px;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .nanosSend .sendSecretMessage {
    left: 152px;
  }

  .chat_p_body .chat_middle_container .chat-composer-writing .message_form_plus.chtBtns > .fl_btns {
    bottom: 92px;
  }
}

/* Aura desktop left menu scroll limiter */
@media screen and (min-width: 941px) {
  .left-menu-pro-v1 .i_left_container {
    left: 0;
    right: 0;
    width: 100%;
    max-height: none;
  }

  .left-menu-pro-v1 .i_left_container.ls-locked {
    position: fixed !important;
    top: var(--ls-lock-top, 72px);
    left: var(--ls-lock-left, auto);
    width: var(--ls-lock-width, auto);
    z-index: 11;
  }

  .left-menu-pro-v1 .leftSidebarWrapper {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 1120px) and (min-width: 941px) {
  .left-menu-pro-v1 .i_left_container {
    top: 0 !important;
  }
}

/* Aura sidebars hidden scrollbar */
@media screen and (min-width: 941px) {
  .left-menu-pro-v1 .leftSidebarWrapper,
  .rightSticky .leftSidebarWrapper {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .left-menu-pro-v1 .leftSidebarWrapper::-webkit-scrollbar,
  .rightSticky .leftSidebarWrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
}

/* Aura paid live final mobile action alignment */
@media (max-width: 700px) {
  .live_setup_modal.live_setup_modal--paid .live_setup_footer {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 12px 16px calc(16px + env(safe-area-inset-bottom, 0px)) !important;
    background: #ffffff !important;
  }

  .live_setup_modal.live_setup_modal--paid .live_setup_footer .alertBtnLeft,
  .live_setup_modal.live_setup_modal--paid .live_setup_footer .alertBtnRightWithIcon {
    width: auto !important;
    min-width: 0 !important;
    min-height: 44px !important;
    margin: 0 !important;
    border-radius: 14px !important;
    font-size: 14px !important;
  }
}

/* Aura live compact chat composer */
.live_send_message_box_wrapper {
  min-height: 0 !important;
  padding: 6px !important;
  border-top: 0 !important;
}

.live_send_message_box_wrapper .tabing_non_justify {
  width: 100% !important;
}

.live_send_message_box_wrapper .message_form_items {
  gap: 6px !important;
  align-items: center !important;
  padding: 0 !important;
}

.live_send_message_box_wrapper .message_send_text {
  align-items: center !important;
  padding: 0 !important;
}

.live_send_message_box_wrapper .message_text_textarea {
  min-height: 42px !important;
  padding: 0 44px 0 14px !important;
  border-radius: 18px !important;
}

.live_send_message_box_wrapper .lmSize {
  height: 40px !important;
  min-height: 40px !important;
  padding: 9px 0 !important;
  line-height: 20px !important;
}

.live_send_message_box_wrapper .message_smiley {
  right: 2px !important;
  width: 40px !important;
  height: 40px !important;
}

.live_send_message_box_wrapper .message_form_smiley_plus,
.live_send_message_box_wrapper .message_form_smiley_plus .message_pls {
  width: 40px !important;
  height: 40px !important;
  border-radius: 16px !important;
}

.live_send_message_box_wrapper .message_form_plus.livesendmes {
  flex: 0 0 40px !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 16px !important;
  background-color: #05070d !important;
}

.live_send_message_box_wrapper .message_form_plus.livesendmes:hover {
  background-color: #151922 !important;
}

.live_send_message_box_wrapper .message_form_plus.livesendmes svg,
.live_send_message_box_wrapper .message_form_plus.livesendmes svg * {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

@media screen and (max-width: 1050px) {
  .live_right_in_right_mobile {
    padding: 0 !important;
  }

  .live_right_in_right_mobile .live_right_in_right_in {
    padding: 0 8px 4px !important;
    border: 0 !important;
    background: transparent !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    padding: 4px 8px calc(4px + env(safe-area-inset-bottom, 0px)) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper .message_text_textarea {
    min-height: 42px !important;
    padding: 0 44px 0 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
  }

  .live_right_in_right_mobile
    .live_send_message_box_wrapper
    .tabing_non_justify
    .message_form_items
    .message_send_text
    .message_text_textarea {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper .lmSize {
    color: #ffffff !important;
  }

  .live_right_in_right_mobile
    .live_send_message_box_wrapper
    .tabing_non_justify
    .message_form_items
    .message_send_text
    .message_text_textarea
    .lmSize {
    color: #ffffff !important;
    border: 0 !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper .lmSize::placeholder {
    color: rgba(255, 255, 255, 0.72) !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper .message_form_smiley_plus {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
  }

  .live_right_in_right_mobile
    .live_send_message_box_wrapper
    .tabing_non_justify
    .message_form_items
    .message_send_text
    .message_text_textarea
    .message_smiley
    .message_form_smiley_plus {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper .message_form_smiley_plus:hover {
    background-color: rgba(255, 255, 255, 0.16) !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper .message_form_smiley_plus .message_pls svg {
    fill: #ffffff !important;
  }
}

/* Aura live composer edge cleanup */
.live_send_message_box_wrapper .message_form_smiley_plus,
.live_send_message_box_wrapper .message_form_smiley_plus:hover,
.live_send_message_box_wrapper .message_form_smiley_plus .message_pls {
  border: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

@media screen and (min-width: 1051px) {
  .live_right_in_right .live_right_in_right_in {
    height: calc(100% - 52px) !important;
    padding-bottom: 4px !important;
  }

  .live_right_in_right .live_send_message_box_wrapper {
    left: -14px !important;
    right: auto !important;
    bottom: -14px !important;
    width: calc(100% + 28px) !important;
    padding: 4px 6px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background-color: #ffffff !important;
  }

  .live_right_in_right .live_send_message_box_wrapper .message_text_textarea {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 1050px) {
  .live_right_in_right_mobile,
  .live_right_in_right_mobile .live_right_in_right_in,
  .live_right_in_right_mobile .live_send_message_box_wrapper {
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
  }

  .live_right_in_right_mobile {
    background-color: #000000 !important;
  }

  .live_right_in_right_mobile .live_right_in_right_in {
    padding-bottom: 0 !important;
    background-color: #000000 !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper {
    margin-top: -1px !important;
    padding: 4px 6px calc(4px + env(safe-area-inset-bottom, 0px)) !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper::before,
  .live_right_in_right_mobile .live_send_message_box_wrapper::after,
  .live_right_in_right_mobile .live_right_in_right_in::before,
  .live_right_in_right_mobile .live_right_in_right_in::after {
    display: none !important;
    content: none !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper .message_text_textarea {
    padding-right: 40px !important;
  }
}

/* Aura live mobile final line and emoji cleanup */
@media screen and (max-width: 1050px) {
  .live_right_in_right_mobile .live_send_message_box_wrapper {
    position: relative !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: -3px !important;
    height: 4px !important;
    background: #000000 !important;
    pointer-events: none !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper .message_smiley,
  .live_right_in_right_mobile .live_send_message_box_wrapper .message_form_smiley_plus,
  .live_right_in_right_mobile .live_send_message_box_wrapper .message_form_smiley_plus:hover,
  .live_right_in_right_mobile .live_send_message_box_wrapper .message_form_smiley_plus .message_pls {
    border: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }
}

/* Aura live mobile verified cleanup */
@media screen and (max-width: 1050px) {
  .live_right_in_right_mobile {
    z-index: 50 !important;
    overflow: visible !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper {
    z-index: 60 !important;
    overflow: visible !important;
    isolation: isolate !important;
  }

  .live_right_in_right_mobile .nanos {
    display: none !important;
    height: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper::before {
    top: -18px !important;
    width: 100vw !important;
    height: 20px !important;
    z-index: 3 !important;
    background: #000000 !important;
  }

  .live_right_in_right_mobile .live_send_message_box_wrapper::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    top: -28px !important;
    width: 42px !important;
    height: 30px !important;
    z-index: 4 !important;
    background: #000000 !important;
    pointer-events: none !important;
  }

  html body
    .live_right_in_right_mobile
    .live_send_message_box_wrapper
    .tabing_non_justify
    .message_form_items
    .message_send_text
    .message_text_textarea
    .message_smiley
    .message_form_smiley_plus,
  html body
    .live_right_in_right_mobile
    .live_send_message_box_wrapper
    .tabing_non_justify
    .message_form_items
    .message_send_text
    .message_text_textarea
    .message_smiley
    .message_form_smiley_plus:hover,
  html body
    .live_right_in_right_mobile
    .live_send_message_box_wrapper
    .tabing_non_justify
    .message_form_items
    .message_send_text
    .message_text_textarea
    .message_smiley
    .message_form_smiley_plus
    .message_pls {
    border: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }
}

/* Aura live right rail tools and composer polish */
.live_interaction_modules .live_module {
  border-radius: 14px !important;
  border-color: #dfe4ee !important;
  background-color: #ffffff !important;
}

.live_interaction_modules .live_module_header {
  padding: 12px 14px 8px !important;
}

.live_interaction_modules .live_module_title {
  font-size: 13px !important;
  font-weight: 700 !important;
}

.live_interaction_modules .live_module_body {
  padding: 10px 14px 14px !important;
}

.live_poll_create {
  gap: 10px !important;
}

.live_poll_options_inputs {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.live_poll_question_input,
.live_poll_option_input,
.live_qa_textarea {
  min-height: 38px !important;
  padding: 9px 12px !important;
  border-radius: 10px !important;
  border-color: #dfe4ee !important;
  background-color: #ffffff !important;
  box-sizing: border-box !important;
}

.live_qa_input {
  gap: 10px !important;
}

.live_poll_create_actions {
  gap: 8px !important;
}

@media screen and (min-width: 1051px) {
  .live_right_in_right {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
  }

  .live_right_in_right .live_right_in_right_in {
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 14px 14px 62px !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
    border-bottom: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .live_right_in_right .live_interaction_modules {
    gap: 12px !important;
    margin: 0 0 14px !important;
    padding-right: 0 !important;
  }

  .live_right_in_right:not(.live_interactions_open) .live_interaction_modules {
    display: none !important;
  }

  .live_right_in_right .live_interactions_close_btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 10px !important;
    right: 12px !important;
    z-index: 6 !important;
    width: 32px !important;
    height: 32px !important;
    border: 1px solid #dfe4ee !important;
    border-radius: 11px !important;
    background-color: rgba(255, 255, 255, 0.92) !important;
    cursor: pointer !important;
  }

  .live_right_in_right:not(.live_interactions_open) .live_interactions_close_btn {
    display: none !important;
  }

  .live_right_in_right .live_interactions_close_btn svg {
    width: 14px !important;
    height: 14px !important;
    fill: #6f7788 !important;
  }

  .live_right_in_right .live_send_message_box_wrapper {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    padding: 8px 10px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background-color: #ffffff !important;
    box-sizing: border-box !important;
  }

  .live_right_in_right .live_send_message_box_wrapper .message_form_items {
    width: 100% !important;
    min-width: 0 !important;
  }

  .live_right_in_right .live_send_message_box_wrapper .message_send_text {
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  .live_right_in_right .live_send_message_box_wrapper .message_text_textarea {
    width: 100% !important;
    min-width: 0 !important;
    padding-right: 40px !important;
  }

  .live_right_in_right .live_right_in_right_in,
  .live_right_in_right .live_send_message_box_wrapper,
  .live_right_in_right .live_send_message_box_wrapper > .nanos {
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
  }

  .live_right_in_right .live_right_in_right_in::before,
  .live_right_in_right .live_right_in_right_in::after,
  .live_right_in_right .live_send_message_box_wrapper::before,
  .live_right_in_right .live_send_message_box_wrapper::after {
    content: none !important;
    display: none !important;
  }
}

@media screen and (max-width: 1050px) {
  .live_right_in_right_mobile:not(.live_interactions_open) .live_interactions_close_btn {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .live_right_in_right_mobile .live_right_in_right_in,
  .live_right_in_right_mobile .live_send_message_box_wrapper,
  .live_right_in_right_mobile .live_send_message_box_wrapper > .nanos {
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
  }

  .live_right_in_right_mobile .live_right_in_right_in::before,
  .live_right_in_right_mobile .live_right_in_right_in::after,
  .live_right_in_right_mobile .live_send_message_box_wrapper::before,
  .live_right_in_right_mobile .live_send_message_box_wrapper::after {
    content: none !important;
    display: none !important;
  }
}

/* Aura desktop sidebar scroll-to-fixed refinement */
@media screen and (min-width: 941px) {
  .leftSticky.left-menu-pro-v1 {
    position: relative;
    align-self: flex-start;
    min-height: var(--ls-space, auto);
    padding-bottom: 0;
  }

  .left-menu-pro-v1 .i_left_container {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 72px;
    left: auto;
    right: auto;
    width: 100%;
    max-height: none;
    transform: none;
    will-change: auto;
  }

  .left-menu-pro-v1 .leftSidebarWrapper {
    height: calc(100vh - 92px);
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .rightSticky .i_right_container {
    position: relative;
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
    max-height: none;
    transform: var(--rs-shift, translateY(0));
    will-change: transform;
  }

  .rightSticky .i_right_container.rs-locked {
    position: fixed !important;
    top: var(--rs-lock-top, 88px);
    left: var(--rs-lock-left, auto);
    width: var(--rs-lock-width, auto);
    transform: none;
    z-index: 11;
  }

  .rightSticky .leftSidebarWrapper {
    height: auto;
    max-height: none;
    overflow-y: visible;
    overflow-x: visible;
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: auto;
  }

  .left-menu-pro-v1 .i_left_container.ls-locked {
    position: fixed !important;
    top: var(--ls-lock-top, 72px);
    left: var(--ls-lock-left, auto);
    width: var(--ls-lock-width, auto);
    z-index: 11;
  }
}

/* Aura desktop sidebar scroll-chain guard */
@media screen and (min-width: 941px) {
  .left-menu-pro-v1 .leftSidebarWrapper,
  .rightSticky .leftSidebarWrapper {
    overflow-y: hidden !important;
    overscroll-behavior: auto !important;
  }
}

/* Aura left menu content-height guard */
@media screen and (min-width: 941px) {
  .left-menu-pro-v1 .i_left_container:not(.ls-locked) {
    height: auto;
    min-height: 0;
  }

  .left-menu-pro-v1 .leftSidebar_in .leftSidebarWrapper,
  .left-menu-pro-v1 .leftSidebarWrapper {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .left-menu-pro-v1 .btest {
    min-height: 0;
  }
}

/* Aura audio room create modal scroll containment */
@media screen and (min-width: 641px) {
  .audio-room-modal .audio-room-modal-card:has([data-audio-room-create-form]) {
    display: flex !important;
    flex-direction: column !important;
    max-height: calc(100vh - 40px) !important;
    max-height: calc(100dvh - 40px) !important;
    overflow: hidden !important;
    padding-bottom: 0 !important;
  }

  .audio-room-modal .audio-room-modal-card:has([data-audio-room-create-form]) [data-audio-room-create-form] {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
  }

  .audio-room-modal .audio-room-create-actions {
    isolation: isolate;
    z-index: 20 !important;
    margin-bottom: 0 !important;
    background: var(--aura-audio-modal-panel, var(--aura-audio-panel, var(--dizzy-theme-panel-background, #ffffff))) !important;
  }

  .audio-room-modal .audio-room-create-actions .audio-room-modal-summary {
    margin-top: 0 !important;
  }

  .audio-room-modal .audio-room-create-actions .audio-room-primary {
    min-height: 46px !important;
    margin-top: 0 !important;
  }

  .audio-room-modal .audio-room-create-actions::before,
  .audio-room-modal .audio-room-create-actions::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    display: block;
    background: inherit;
    pointer-events: none;
  }

  .audio-room-modal .audio-room-create-actions::before {
    top: -1px;
    bottom: 0;
  }

  .audio-room-modal .audio-room-create-actions::after {
    bottom: -28px;
    height: 28px;
  }
}

/* Chat composer spacing and bottom-scroll polish */
.chat_p_body .all_messages {
  scroll-padding-bottom: 18px;
  scroll-behavior: auto !important;
  overflow-anchor: none;
}

.chat_p_body .all_messages_container {
  padding-bottom: 18px;
  overflow-anchor: none;
}

.chat_p_body .chat_middle_container .message_send_form_wrapper:not(.blocked_not) {
  padding: 14px 18px calc(16px + env(safe-area-inset-bottom, 0px)) !important;
  box-sizing: border-box;
}

.chat_p_body .chat_middle_container .message_send_form_wrapper > .tabing_non_justify.flex_ {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.chat_p_body .chat_middle_container .message_form_items {
  gap: 10px !important;
  min-width: 0;
}

.chat_p_body .chat_middle_container .message_send_text {
  min-width: 0;
}

.chat_p_body .chat_middle_container .message_text_textarea {
  padding-left: 16px !important;
  padding-right: 48px !important;
  box-sizing: border-box;
}

.chat_p_body .chat_middle_container .message_form_plus.sendmes {
  margin-right: 0 !important;
}

.chat_p_body .chat_middle_container .message_send_form_wrapper .nanosSend.box_not_padding_top {
  padding: 4px 2px 0 !important;
  gap: 8px !important;
  box-sizing: border-box;
}

@media screen and (max-width: 700px) {
  .chat_p_body .all_messages_container {
    padding-bottom: 12px;
  }

  .chat_p_body .chat_middle_container .message_send_form_wrapper:not(.blocked_not) {
    padding: 10px 12px calc(12px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .chat_p_body .chat_middle_container .message_form_items {
    gap: 8px !important;
  }

  .chat_p_body .chat_middle_container .message_text_textarea {
    padding-left: 14px !important;
    padding-right: 42px !important;
  }

.chat_p_body .chat_middle_container .message_send_form_wrapper .nanosSend.box_not_padding_top {
    padding: 2px 0 0 !important;
    gap: 6px !important;
  }
}

/* Aura v5.4.5 live sidebar polish */
.sp_wrp .sp_product_wrapper.is-featured .sp_product_body {
  gap: 0;
}

.sp_wrp .sp_product_wrapper.is-featured .sp_product_desc,
.sp_product_compact_body .sp_product_desc {
  display: none !important;
}

.sp_product_compact_card {
  min-height: 158px;
}

.sp_product_compact_media {
  align-self: stretch;
}

.sp_product_compact_content {
  min-height: 138px;
}

.sp_product_compact_body {
  margin-top: auto;
}

.aura_suggested_creators_widget {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.rightSticky .footer_container,
.rightSticky .footer_social_links_container {
  position: relative;
  z-index: 1;
}

/* Aura v5.4.5 audio/video call parity */
.audioCallStage {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(12, 16, 28, 0.94);
}
.live_pp_camera_container.audio-call-mode .friendsCam,
.live_pp_camera_container.audio-call-mode .myCam,
.live_pp_camera_container.audio-call-mode #mute-video {
  display: none !important;
}
.live_pp_camera_container.audio-call-mode .audioCallStage {
  display: flex;
}
.audioCallCard {
  width: min(360px, 86vw);
  min-height: 292px;
  padding: 32px 24px;
  border-radius: 24px;
  background: rgba(18, 24, 38, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}
.audioCallAvatar {
  width: 116px;
  height: 116px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 4px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}
.audioCallName {
  max-width: 100%;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
}
.audioCallStatus {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}
.audioCallPulse {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.audioCallPulse span {
  width: 8px;
  height: 28px;
  border-radius: 999px;
  background: #f65169;
  animation: audioCallPulse 1s ease-in-out infinite;
}
.audioCallPulse span:nth-child(2) {
  animation-delay: .14s;
}
.audioCallPulse span:nth-child(3) {
  animation-delay: .28s;
}
@keyframes audioCallPulse {
  0%, 100% {
    transform: scaleY(.45);
    opacity: .55;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
.live_pp_camera_container.audio-call-mode .videoCallButtons {
  position: absolute;
  top: 24px;
  right: 28px;
  width: auto;
  padding: 0;
  z-index: 5;
}
.live_pp_camera_container.audio-call-mode .call_footer_buttons {
  gap: 16px;
}
.live_pp_camera_container.audio-call-mode .footer_call_btn_item {
  width: auto;
  padding: 0;
}
.live_pp_camera_container.audio-call-mode .call_btn_icon,
.live_pp_camera_container.audio-call-mode .call_btn_end_icon {
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 999px;
}
.live_pp_camera_container.audio-call-mode .call_btn_end_icon {
  background-color: #c62828;
}
.live_pp_camera_container.video-call-mode .audioCallStage {
  display: none !important;
}
.live_pp_camera_container.video-call-mode #local-player,
.live_pp_camera_container.video-call-mode #remote-playerlist,
.live_pp_camera_container.video-call-mode .player,
.live_pp_camera_container.video-call-mode .player_friend,
.live_pp_camera_container.video-call-mode video,
.live_pp_camera_container.video-call-mode .agora_video_player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.i_modal_bg_in.videoCall,
.i_modal_bg_in.videoCalli {
  z-index: 2147483590 !important;
}
@media (max-width: 640px) {
  .audioCallCard {
    width: min(320px, 84vw);
    min-height: 260px;
    padding: 28px 20px;
    border-radius: 22px;
  }
  .audioCallAvatar {
    width: 96px;
    height: 96px;
  }
  .audioCallName {
    font-size: 20px;
  }
  .live_pp_camera_container.audio-call-mode .videoCallButtons {
    top: 18px;
    right: 18px;
  }
}

/* Aura v5.4.5 story editor parity */
.story_image_create_page .uploaded_storie_container.story_editor_card,
.story_text_create_page .uploaded_storie_container.story_editor_card {
  position: relative !important;
  max-width: 440px !important;
  margin: 0 auto 24px !important;
  padding: 14px !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 24px !important;
  background: #111827 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  overflow: hidden !important;
  isolation: isolate;
}

.story_image_create_page .story_editor_card .uploaded_storie_image.story_editor_preview,
.story_text_create_page .story_editor_card .uploaded_storie_image.story_editor_preview,
.story_text_create_page .story_text_workspace.story_editor_card .story_text_preview_card {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 9 / 16 !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: #0b0f19 !important;
  overflow: hidden !important;
}

.story_image_create_page .story_editor_card .uploaded_storie_image.story_editor_preview img,
.story_image_create_page .story_editor_card .uploaded_storie_image.story_editor_preview video,
.story_text_create_page .story_editor_card .uploaded_storie_image.story_editor_preview img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  background: #0b0f19 !important;
}

.story_text_create_page .story_text_workspace.story_editor_card {
  display: block !important;
}

.story_text_create_page .story_text_workspace.story_editor_card .story_text_background_panel {
  margin-bottom: 14px !important;
  padding: 14px !important;
  border-radius: 20px !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.story_text_create_page .story_text_workspace.story_editor_card .story_text_background_grid {
  display: flex !important;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.story_text_create_page .story_text_workspace.story_editor_card .story_text_background_grid::-webkit-scrollbar {
  display: none;
}

.story_text_create_page .story_text_workspace.story_editor_card .story_text_panel_heading {
  color: rgba(255, 255, 255, 0.72) !important;
}

.story_text_create_page .story_text_workspace.story_editor_card .story_text_main_stage,
.story_text_create_page .story_text_workspace.story_editor_card .story_text_main_grid,
.story_text_create_page .story_text_workspace.story_editor_card .story_text_preview_shell {
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.story_text_create_page .story_text_workspace.story_editor_card .story_text_preview_shell > .story_text_panel_heading,
.story_text_create_page .story_text_workspace.story_editor_card .story_text_preview_overlay,
.story_text_create_page .story_text_workspace.story_editor_card .text_typed,
.story_text_create_page .story_text_workspace.story_editor_card .story_text_options {
  display: none !important;
}

.story_editor_time,
.story_editor_delete,
.story_editor_tools,
.story_editor_popovers {
  position: absolute;
}

.story_editor_time {
  left: 82px;
  right: 84px;
  top: 16px;
  z-index: 5;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(17, 24, 39, 0.58) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  backdrop-filter: blur(14px);
}

.story_editor_delete {
  top: 16px !important;
  left: 16px !important;
  right: auto !important;
  z-index: 8;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.72) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(14px);
}

.story_editor_delete .i_h_in {
  width: 100%;
  height: 100%;
  border: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
}

.story_editor_delete svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.story_editor_tools {
  top: 82px;
  right: 14px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story_editor_tool_btn {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.72);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 1;
}

.story_editor_tool_btn:hover,
.story_editor_tool_btn.is-active {
  background: #138ff5;
  transform: translateY(-1px);
}

.story_editor_card .story_editor_popover {
  visibility: hidden !important;
}

.story_editor_card .story_editor_popover:not(.is-open) * {
  visibility: hidden !important;
}

.story_editor_card .story_editor_popover.is-open {
  visibility: visible !important;
}

.story_editor_card .story_editor_popover.is-open * {
  visibility: visible !important;
}

.story_editor_card .story_editor_popover_close {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  line-height: 0 !important;
  pointer-events: auto !important;
}

.story_editor_card .story_editor_popover_close_icon {
  width: 14px !important;
  height: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
}

.story_editor_card .story_editor_popover_close svg,
.story_editor_card .story_editor_popover_close_icon svg {
  width: 14px !important;
  height: 14px !important;
  display: block !important;
  fill: currentColor !important;
}

.story_editor_card .story_editor_popover_close svg path,
.story_editor_card .story_editor_popover button svg path {
  fill: currentColor !important;
}

.story_editor_card .story_editor_popover button svg {
  max-width: 18px !important;
  max-height: 18px !important;
  display: inline-block !important;
  fill: currentColor !important;
}

.story_editor_card > .story_editor_data {
  display: none !important;
}

.story_editor_popovers {
  inset: 0;
  z-index: 9;
  pointer-events: none;
}

.story_editor_popover {
  position: fixed;
  left: var(--story-editor-sheet-left, 16px);
  right: auto;
  bottom: var(--story-editor-sheet-bottom, 18px);
  width: var(--story-editor-sheet-width, min(372px, calc(100vw - 96px)));
  max-height: var(--story-editor-sheet-max-height, min(420px, calc(100vh - 120px)));
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.92);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 10020;
}

.story_editor_popover.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.story_editor_sheet_grabber {
  display: block;
  width: 34px;
  height: 4px;
  margin: -6px auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.story_editor_popover_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.story_editor_popover_head strong {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.story_editor_popover_close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.story_editor_popover_body {
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  display: grid;
  gap: 12px;
}

.story_editor_popover_body .add_a_text,
.story_editor_popover_body .story_option_group {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.story_editor_popover_body .add_my_text,
.story_editor_popover_body .story_overlay_fields input,
.story_editor_popover_body .story_quick_reply_input,
.story_editor_popover_body .story_privacy {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.story_editor_popover_body .add_my_text {
  min-height: 104px;
  max-height: 132px;
  padding: 14px;
  resize: none;
}

.story_editor_popover_body .story_option_label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story_editor_popover_body .story_overlay_fields,
.story_editor_popover_body .story_quick_reply_inputs,
.story_text_layer_controls,
.story_overlay_layer_controls {
  display: grid;
  gap: 10px;
}

.story_text_action_controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.story_text_size_control,
.story_overlay_range_control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.story_text_size_control input,
.story_overlay_range_control input {
  width: 100%;
  accent-color: #138ff5;
}

.story_text_add_layer,
.story_text_remove_layer,
.story_overlay_action_controls button,
.story_editor_popover_body .story_sticker_trigger,
.story_editor_popover_body .story_audio_trigger,
.story_editor_popover_body .story_quick_replies_trigger,
.story_editor_popover_body .story_quick_replies_remove {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.story_editor_card .story_editor_popover .add_my_text,
.story_editor_card .story_editor_popover .story_overlay_fields input,
.story_editor_card .story_editor_popover .story_quick_reply_input,
.story_editor_card .story_editor_popover .story_sticker_trigger,
.story_editor_card .story_editor_popover .story_audio_trigger,
.story_editor_card .story_editor_popover .story_quick_replies_trigger,
.story_editor_card .story_editor_popover .story_quick_replies_remove,
.story_editor_card .story_editor_popover .story_text_add_layer,
.story_editor_card .story_editor_popover .story_overlay_action_controls button,
.story_editor_card .story_editor_popover .story_text_remove_layer {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.story_overlay_action_controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 8px;
}

.story_editor_card .story_editor_popover .add_my_text::placeholder,
.story_editor_card .story_editor_popover .story_overlay_fields input::placeholder,
.story_editor_card .story_editor_popover .story_quick_reply_input::placeholder {
  color: rgba(255, 255, 255, 0.58) !important;
}

.story_editor_card .story_overlay_sticker_field,
.story_editor_card .story_audio_field {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.story_editor_card .story_sticker_preview,
.story_editor_card .story_audio_preview,
.story_editor_card .story_sticker_list,
.story_editor_card .story_audio_list {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.story_editor_card .story_sticker_img,
.story_editor_card .story_sticker_clear {
  background: transparent;
  color: #ffffff;
}

.story_editor_card .story_sticker_clear svg,
.story_editor_card .story_sticker_clear svg * {
  fill: currentColor;
  stroke: currentColor;
}

.story_editor_card .story_sticker_item {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.story_editor_card .story_sticker_item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.story_editor_card .story_sticker_list,
.story_editor_card .story_audio_list {
  max-height: min(360px, 42vh);
  padding: 12px;
  overflow: auto;
}

.story_editor_card .story_editor_popover[data-story-panel="audio"] .story_audio_trigger,
.story_editor_card .story_editor_popover[data-story-panel="replies"] .story_quick_replies_toggle,
.story_editor_card .story_editor_popover[data-story-panel="audio"] .story_audio_block:not(.has_story_audio_selected) .story_audio_field,
.story_editor_card .story_editor_popover[data-story-panel="replies"] .story_quick_replies_block.is-hidden {
  display: none;
}

.story_editor_card .story_privacy_group .story_privacy {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.story_editor_card .story_privacy_choices {
  display: grid;
  gap: 10px;
}

.story_editor_card .story_privacy_choice {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  text-align: left;
}

.story_editor_card .story_privacy_choice.is-active {
  border-color: rgba(19, 143, 245, 0.58);
  background: rgba(19, 143, 245, 0.2);
}

.story_overlay_stage {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.story_overlay_item {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 78%;
  min-width: 42px;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 12px;
  pointer-events: auto;
  touch-action: none;
  cursor: grab;
  user-select: none;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transform-origin: center center;
  overflow-wrap: break-word;
}

.story_overlay_item_text {
  width: max-content;
  max-width: min(84%, calc(100% - 28px));
  white-space: pre;
  overflow-wrap: normal;
  word-break: normal;
}

.story_overlay_item_text span {
  display: inline-block;
  max-width: 100%;
  white-space: inherit;
  overflow-wrap: inherit;
  word-break: inherit;
}

.story_overlay_item_text.is-story-text-wrapped {
  width: min(84%, calc(100% - 28px));
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.story_overlay_item_text.is-story-text-wrapped span {
  display: block;
  width: 100%;
}

.story_overlay_transform_box {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 12px;
  pointer-events: none;
}

.story_overlay_transform_handle {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  pointer-events: auto;
  touch-action: none;
}

.story_overlay_transform_icon,
.story_overlay_transform_icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.story_overlay_transform_icon svg {
  fill: none;
  color: currentColor;
  stroke: currentColor;
  pointer-events: none;
}

.story_overlay_transform_icon svg,
.story_overlay_transform_icon svg * {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.story_overlay_transform_icon svg * {
  fill: none !important;
}

.story_overlay_resize_handle {
  right: -22px;
  top: -22px;
  cursor: nesw-resize;
  transform: rotate(var(--story-layer-inverse-rotation, 0deg)) scale(var(--story-layer-inverse-scale, 1));
  transform-origin: center;
}

.story_overlay_rotate_handle {
  top: -50px;
  left: 50%;
  cursor: grab;
  transform: translateX(-50%) rotate(var(--story-layer-inverse-rotation, 0deg)) scale(var(--story-layer-inverse-scale, 1));
  transform-origin: center;
}

.story_overlay_rotate_handle .story_overlay_transform_icon svg {
  transform: rotate(-45deg);
  transform-origin: center;
}

.story_overlay_item_sticker {
  --story-sticker-size: 112px;
  width: var(--story-sticker-size, 112px);
  height: var(--story-sticker-size, 112px);
  max-width: none;
  min-width: 0;
  min-height: 0;
  padding: 0;
  background: transparent;
  line-height: 0;
  text-shadow: none;
}

.story_overlay_item_sticker img {
  display: block;
  width: var(--story-sticker-size, 112px) !important;
  height: var(--story-sticker-size, 112px) !important;
  object-fit: contain;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none;
}

.story_image_create_page .story_editor_card .uploaded_storie_image.story_editor_preview .story_overlay_item_sticker img,
.story_text_create_page .story_editor_card .uploaded_storie_image.story_editor_preview .story_overlay_item_sticker img,
.story_text_create_page .story_text_workspace.story_editor_card .story_text_preview_card .story_overlay_item_sticker img {
  width: var(--story-sticker-size, 112px) !important;
  height: var(--story-sticker-size, 112px) !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.story_overlay_item_badge {
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.76);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.story_overlay_item_link {
  background: rgba(19, 143, 245, 0.9);
}

.story_overlay_item_quick_replies {
  width: min(300px, 86vw);
  display: grid;
  gap: 0;
  padding: 0;
  border-radius: 22px;
  background: transparent !important;
  text-shadow: none;
}

.story_overlay_quick_reply_title {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px 12px;
  border-radius: 28px 28px 0 0;
  background: #0d1320;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.story_overlay_quick_reply_choices {
  width: 100%;
  box-sizing: border-box;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 0 0 28px 28px;
  background: #ffffff;
}

.story_overlay_quick_reply_choice {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 16px;
  border: 0;
  border-radius: 18px;
  background: #eef2f7;
  color: #101828;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
  box-sizing: border-box;
}

.story_overlay_item_quick_replies .story_overlay_quick_reply_choice:hover {
  background: #dfe4ec;
  color: #101828;
}

.story_editor_card .share_story_btn_cnt,
.story_editor_card .share_text_story {
  width: auto;
  min-height: 48px;
  margin: 14px 0 0;
  border-radius: 999px;
  background: #138ff5;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .story_image_create_page .story_editor_card,
  .story_text_create_page .story_editor_card {
    max-width: 100% !important;
    padding: 12px !important;
    border-radius: 20px !important;
  }

  .story_editor_tools {
    top: 72px;
    right: 10px;
    gap: 8px;
  }

  .story_editor_tool_btn {
    width: 46px;
    height: 46px;
    font-size: 13px;
  }

  .story_editor_popover {
    left: var(--story-editor-sheet-left, 14px);
    bottom: var(--story-editor-sheet-bottom, 82px);
    width: var(--story-editor-sheet-width, calc(100vw - 28px));
    max-height: var(--story-editor-sheet-max-height, min(440px, 50vh));
    padding: 16px 16px 14px;
    border-radius: 22px;
  }
}

/* Aura story editor final polish: keep legacy story styles from collapsing the v5.4.5 editor controls. */
.story_text_create_page .story_text_workspace.story_editor_card .story_text_background_grid > .st_bg_cont {
  flex: 0 0 48px !important;
  width: 48px !important;
  min-width: 48px !important;
  height: 48px !important;
}

.story_text_create_page .story_text_workspace.story_editor_card .story_text_background_grid > .st_bg_cont > .st_img_wrapper,
.story_text_create_page .story_text_workspace.story_editor_card .story_text_background_grid .st_img_wrapper {
  flex: 0 0 48px !important;
  width: 48px !important;
  min-width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
  background-size: cover !important;
  background-position: center !important;
}

.story_text_create_page .story_text_workspace.story_editor_card .story_editor_tools {
  top: 150px !important;
}

.story_image_create_page .uploaded_storie_container.story_editor_card .shared_storie_time.story_editor_time,
.story_image_create_page .story_editor_card .shared_storie_time.story_editor_time {
  left: 82px !important;
  right: auto !important;
  top: 16px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: min(250px, calc(100% - 168px)) !important;
  min-height: 42px !important;
  height: auto !important;
  padding: 0 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(17, 24, 39, 0.58) !important;
  color: #ffffff !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.story_image_create_page .uploaded_storie_container.story_editor_card .shared_storie_time.story_editor_time svg,
.story_image_create_page .story_editor_card .shared_storie_time.story_editor_time svg {
  flex: 0 0 16px !important;
  width: 16px !important;
  height: 16px !important;
  margin-right: 0 !important;
  fill: currentColor !important;
}

@media screen and (max-width: 768px) {
  .story_text_create_page .story_text_workspace.story_editor_card .story_text_background_grid > .st_bg_cont,
  .story_text_create_page .story_text_workspace.story_editor_card .story_text_background_grid > .st_bg_cont > .st_img_wrapper,
  .story_text_create_page .story_text_workspace.story_editor_card .story_text_background_grid .st_img_wrapper {
    flex-basis: 44px !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    border-radius: 13px !important;
  }

  .story_text_create_page .story_text_workspace.story_editor_card .story_editor_tools {
    top: 144px !important;
  }

  .story_image_create_page .uploaded_storie_container.story_editor_card .shared_storie_time.story_editor_time,
  .story_image_create_page .story_editor_card .shared_storie_time.story_editor_time {
    left: 76px !important;
    max-width: calc(100% - 148px) !important;
    min-height: 40px !important;
    padding: 0 12px !important;
  }
}

@media screen and (max-width: 768px) {
  .story_editor_card.is_story_editor_panel_open .story_editor_tools {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .story_editor_card.is_story_editor_panel_open .story_editor_popovers {
    z-index: 10030 !important;
  }

  .story_editor_card.is_story_editor_panel_open .story_editor_popover.is-open {
    top: auto !important;
    left: var(--story-editor-sheet-left, 14px) !important;
    right: auto !important;
    bottom: var(--story-editor-sheet-bottom, 82px) !important;
    width: var(--story-editor-sheet-width, calc(100vw - 28px)) !important;
    max-height: var(--story-editor-sheet-max-height, min(440px, 50vh)) !important;
    z-index: 10031 !important;
  }

  .story_editor_card.is_story_editor_panel_open .story_editor_popover_close {
    position: relative !important;
    z-index: 2 !important;
  }
}

.story_overlay_transform_box {
  border: 0 !important;
}

.story_editor_card.is_story_editor_panel_open .story_editor_tools {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.story_editor_card.is_story_editor_panel_open .story_editor_popovers {
  z-index: 10030 !important;
}

.story_editor_card.is_story_editor_panel_open .story_editor_popover.is-open {
  z-index: 10031 !important;
}

.story_editor_card.is_story_editor_panel_open .story_editor_popover_close {
  position: relative !important;
  z-index: 3 !important;
}

/* Friends Activity: stable widget sizing, scrolling and row alignment */
.friends_activity_widget .friends_activity_stream {
  box-sizing: border-box !important;
  width: 100% !important;
  height: auto !important;
  max-height: min(360px, calc(100dvh - 180px)) !important;
  min-height: 0 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px !important;
  padding-right: 4px !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: pan-y !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(148, 163, 184, 0.72) transparent !important;
}

.friends_activity_widget .friends_activity_stream > .i_message_wrpper {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.friends_activity_widget .friends_activity_stream::-webkit-scrollbar {
  display: block !important;
  width: 6px !important;
  height: 6px !important;
}

.friends_activity_widget .friends_activity_stream::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.72) !important;
  border-radius: 999px !important;
}

.friends_activity_widget .activity_card {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) 12px !important;
  align-items: center !important;
  column-gap: 6px !important;
  height: 64px !important;
  min-height: 64px !important;
  padding: 8px 10px !important;
}

.friends_activity_widget .activity_card_avatar,
.friends_activity_widget .activity_card_main,
.friends_activity_widget .activity_meta_chevron {
  align-self: center !important;
}

.friends_activity_widget .activity_card_avatar {
  width: 42px !important;
  height: 42px !important;
  align-self: center !important;
}

.friends_activity_widget .activity_card_avatar .activity_avatar_ring {
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;
}

.friends_activity_widget .activity_card_main {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-self: center !important;
  min-width: 0 !important;
  gap: 4px !important;
}

.friends_activity_widget .activity_text {
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.friends_activity_widget .activity_meta_chevron {
  justify-self: end !important;
  margin: 0 !important;
}

.friends_activity_widget .activity_card_link[role="link"] {
  cursor: pointer !important;
}

.friends_activity_widget .activity_card_link[role="link"]:focus-visible {
  outline: 2px solid rgba(148, 163, 184, 0.82) !important;
  outline-offset: 2px !important;
}
.creators_empty_state{width:calc(100% - 20px);margin:12px 10px 35px;min-height:280px;padding:38px 26px;background:#fff;border:1px solid rgba(26,35,58,.08);border-radius:28px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:13px;clear:both;box-sizing:border-box;}.creators_empty_icon{width:82px;height:82px;border-radius:26px;background:#f3f6fb;color:#8fa0ba;display:flex;align-items:center;justify-content:center;}.creators_empty_icon svg{width:34px;height:34px;fill:currentColor;}.creators_empty_title{font-family:"Noto Sans",Arial,sans-serif;font-size:23px;font-weight:700;color:#121827;line-height:1.25;}.creators_empty_text{max-width:430px;font-family:"Noto Sans",Arial,sans-serif;font-size:14px;font-weight:500;color:#68738a;line-height:1.65;}@media (max-width:768px){.creators_empty_state{width:100%;margin:12px 0 28px;min-height:230px;padding:30px 18px;border-radius:24px;}.creators_empty_title{font-size:20px;}}
