@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
  font-family: "Urbanist";
}

/* :root {
    --h1: #222222;
    --bg-color: #ffffff;
    --border-color: #e5e5e5;
    --input-color: #f9f9fa;
    --anouncement-post: #5a5a5a;
  }
  .dark-mode {
    --anouncement-post: #90949c;
    --h1: white;
    --bg-color: #0d0d11;
    --border-color: #14141f;
    --input-color: #343444;
  } */
.feed-container {
  width: 1240px;
  margin: 0 auto;
}
.sidebar.show {
  padding: 20px !important;
  overflow-x: hidden;
}
.app-wrapper {
  width: 300px;
}
.create-buttonn {
  width: 310px;
}
.feed-header {
  width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 30px;
}
.feed-title {
  font-family: "Urbanist";
  font-size: 35px;
  font-weight: 600;
  line-height: 42px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}
.feed-breadcrumb {
  display: flex;
  gap: 10px;
  font-family: "Urbanist";
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  text-align: center;
  cursor: pointer;
}
.feed-breadcrumb a {
  font-family: "Urbanist";
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  text-align: center;
  color: #5a5a5a;
}
.feed-breadcrumb-current {
  color: #0378a4;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.feed-layout {
  display: flex;
  width: 1240px;
  gap: 30px;
}
.pub-tavern-chat {
  width: 817px;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--bg-color);
}
.pub-bar-top {
  background-color: var(--sidebar);
  border-bottom: 1px solid var(--border-color);
  padding-top: 2rem;
  padding-bottom: 0;
  padding-left: 2rem;
  padding-right: 2rem;
}
.pub-menu-options {
  display: flex;
  gap: 1rem;
}
.pub-menu-item {
  font-family: "Urbanist";
  display: flex;
  font-size: 22px;
  font-weight: 600;
  color: #8a8a8a;
  text-decoration: none;
}
.pub-menu-item.pub-active-brew {
  color: #0378a4;
  border-bottom: 2px solid #0378a4;
  padding-bottom: 20px;
}
.pub-menu-icon {
  margin-right: 0.5rem;
  margin-top: 2px;
}
.pub-conversation-area {
  background-color: var(--sidebar);
  padding: 15px 30px;
}
.pub-patron-speech {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 35px;
}
.pub-patron-mug {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: #e5e7eb;
}
.pub-speech-bubble {
  flex: 1;
}
.pub-patron-name {
  font-weight: 600;
  margin-right: 0.5rem;
  color: var(--h1);
}
.pub-speech-time {
  font-size: 0.75rem;
  color: #6b7280;
}
.pub-speech-text {
  width: 669px;
  margin-top: 0.25rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--p);
}
.txt-active {
  color: #0378a4;
}
.pub-cheers-reactions {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
.pub-cheer {
  /* background-color: #e5e7eb; */
  color: var(--p);
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}
.pub-chat-container {
  max-width: 600px;
}
.pub-date-header {
  text-align: center;
  color: #8e8e8e;
  font-size: 12px;
  margin-bottom: 20px;
}
.pub-message-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.pub-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 12px;
}
.pub-message-body {
  flex-grow: 1;
}
.pub-user-info {
  color: var(--h1);
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}
.pub-message-time {
  color: #8e8e8e;
  font-size: 12px;
  font-weight: normal;
  margin-left: 8px;
}
.pub-message-content {
  margin-bottom: 8px;
  color: var(--p);
}
.pub-attachment-box {
  background-color: var(--post-bg);
  border: 1px solid #e4e6eb;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  max-width: 300px;
}
.pub-attachment-icon {
  width: 32px;
  height: 40px;
  margin-right: 12px;
}
.pub-attachment-info {
  font-size: 13px;
}
.pub-file-name {
  font-weight: 600;
  color: var(--h1);
}
.pub-file-details {
  color: #8e8e8e;
  font-size: 11px;
  margin-top: 2px;
}
.sidebar {
  width: 390px !important;
  background-color: var(--bg-color);
  border-radius: 10px;
  display: block !important;
  border: 1px solid var(--border-color) !important;
  padding: 30px !important;
}
.feed-sidebar-header {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  align-items: center;
  color: var(--h1);
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.feed-sidebar-icon {
  margin-right: 8px;
  /* transform: rotate(90deg); */
  cursor: pointer;
}
.feed-activity-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.feed-user-avatar {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background-color: #e0e6ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #34495e;
}
.feed-user-avatar img {
  border-radius: 50%;
}
.feed-activity-content {
  flex: 1;
}
.small-jd {
  font-size: 12px;
  color: #7f8c8d;
}
.feed-activity-user {
  font-weight: 600;
  font-size: 15px;
  color: var(--h1);
}
.feed-activity-context {
  font-size: 15px;
  color: var(--h1);
  font-weight: 600;
}
.feed-activity-text {
  font-size: 14px;
  color: #34495e;
  margin: 4px 0;
}
.feed-activity-time {
  font-size: 12px;
  color: #95a5a6;
}
.sidebar-container {
  width: 280px;
  background-color: var(--bg-color);
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.toggle-button {
  display: flex;
  align-items: center;
  padding: 10px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  border-radius: 8px;
  transition: background-color 0.3s;
}
.toggle-button:hover {
  background-color: #f0f0f0;
}
.navigation-list {
  list-style-type: none;
  padding: 0;
  margin: 15px 0;
}
.nav-link {
  display: flex;
  align-items: center;
  color: #555;
  text-decoration: none;
}
.icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.dm-ici-main {
  width: 100%;
  display: flex;
  gap: 5px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.nav-link.active {
  background-color: #e6f7ff;
  color: #1890ff;
  border-radius: 8px;
}
.nav-link.emphasized {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.nav-link {
  display: flex;
  font-family: "Urbanist";
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
  gap: 8px;
}
.nav-link_p {
  display: flex;
  font-family: "Urbanist";
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  margin-top: 10px;
  gap: 8px;
}
.pblic-workspce-icn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-top: 1px solid #e5e5e5;
}
.live-feed-icon-txt {
  font-family: Urbanist;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}
.main_mian_sabi {
  width: 100%;
}
.pblic-workspce-ic_n {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pblic-workspce-icn,
.plus-img {
  margin-top: 10px;
}
.pblic-workspce-icn {
  width: 330px;
}
.search-wrapper {
  position: relative;
  margin: 15px 0;
  display: flex;
  align-items: center;
}

.Search-form-padd {
  position: relative;
  width: 320px;
}

.search-input {
  width: 90%;
  padding: 5px 10px 5px 35px;
  height: 40px;
  border: 1px solid #0378a4;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
  box-sizing: border-box;
  background-color: #e5e5e5;
  color: black;
}

.search-input:focus {
  outline: none;
  border-color: #0378a4;
}

.Search-form-padd input::placeholder {
  text-align: left;
}

.search-icon-feed {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #bfbfbf;
  pointer-events: none;
}

.options-button {
  margin-left: 10px;
  background: none;
  border: none;
  cursor: pointer;
  width: 10px;
}
.options-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.create-buttonn {
  width: 332px;
  background-color: #0378a4;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 84px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
/* Add these new styles */
.dropdown-wrapper {
  position: sticky;
  bottom: 16px; /* Adjust as needed */
  background-color: var(--bg-color);
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border-color);
}

.ui-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

.ui-dropdown-button {
  width: 100%;
  background-color: white;
  color: black;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Live Feed app-wrapper  */
.app-wrapper {
  border-radius: 8px;
  width: 350px;
}
.tp-br-icn {
  margin-left: 4px;
}
.main-navi {
  padding-left: 10px;
}
.top-bar {
  display: flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  width: 100%;
  margin-bottom: 10px;
}

.icon-group {
  display: flex;
  gap: 8px;
}

.icon-placeholder {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  border-radius: 4px;
  cursor: pointer;
}

.top-search-areaa {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.search-input-wrapperr {
  flex-grow: 1;
  position: relative;
}
.live-feed {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  background: var(--bg-color);
}

.live-feed-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: var(--bg-color);
  border: none;
  width: 100%;
  text-align: left;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}

.chevron {
  width: 25px;
  margin-right: 8px;
  transition: transform 0.2s ease;
}

.chevron.collapsed {
  transform: rotate(-180deg);
}

.live-feed-title {
  font-family: Urbanist;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}

.live-feed-content {
  display: block;
  transition: max-height 0.3s ease-out;
  max-height: 1000px;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: var(--bg-color);
}

.live-feed-content.collapsed {
  max-height: 0;
}

.feed-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid #e2e8f0;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  flex-shrink: 0;
}

.feed-item-content {
  flex: 1;
}

.feed-item-header {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.user-name,
.category {
  font-weight: 500;
}

.posted-in {
  color: #64748b;
  font-size: 14px;
}

.feed-item-title {
  color: #475569;
  font-size: 14px;
  margin-bottom: 4px;
}

.time-ago {
  color: #94a3b8;
  font-size: 12px;
}

.sp-plus {
  margin-top: 10px;
}
.secnd-mg {
  display: flex;
  align-items: center;
}
.search-input-Community-Lounge {
  width: 300px;
  height: 35px;
  padding: 4px;
  padding-left: 40px;
  background-color: var(--input-color);
  color: var(--input-txt-clr);
  border: 1px solid #0378a4;
  border-radius: 5px;
  font-size: 14px;
}
.search-input-Community-Lounge::placeholder {
  padding: 0px;
}
.search-input-Community-Lounge:focus {
  outline: #0378a4;
}
.search-icon10 {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #6b7280;
}

.options-menu {
  margin-left: 8px;
  cursor: pointer;
}

.main-content {
  padding: 20px 0px;
}

.community-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.community-avatar {
  width: 28px;
  margin-right: 12px;
}

.community-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.channels-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.expand-icon {
  width: 25px;
  color: #6b7280;
  margin-right: 8px;
}

.channels-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--h1);
  margin: 0;
}

.channels-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 28px;
  margin-bottom: 20px;
  transition: display 0.2s ease;
  font-size: 16px;
  font-weight: 500;
  color: #5a5a5a;
  cursor: pointer;
}
.channel-item p {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;

  letter-spacing: 0.01em;
  text-align: left;
}
.channel-item1 {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 16px;
  font-weight: 500;
  color: #0378a4;
  cursor: pointer;
}

.channel-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 18px;
  border-radius: 6px;
}

.dynamic-card {
  margin-top: 10px;
  display: block;
}

.show-more-button {
  background: none;
  border: none;
  color: #0378a4;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
}

/* .message-composer {
    width: 100%;
    background-color: var(--post-bg);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  } */
/* .formatting-toolbar {
    display: flex;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #e0e0e0;
  } */

.formatting-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin: 0 2px;
  border-radius: 4px;
}
.formatting-button-pls-bg {
  border: none;
  background-color: #0378a4;
  cursor: pointer;
  padding: 4px;
  margin: 0 2px;
  border-radius: 4px;
}

.formatting-button:hover {
  background-color: #f0f0f0;
}

.toolbar-divider {
  width: 1px;
  height: 24px;
  background-color: #e0e0e0;
  margin: 0 8px;
}
.toolbar-divider-create {
  float: right;
}

.message-entry {
  display: flex;
  align-items: center;
}
/* 
  .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
  } */

.avatar-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-field {
  flex-grow: 1;
  border: none;
  outline: none;
  height: 95px;
  font-size: 14px;
  background-color: var(--post-bg);
}
.submit-message {
  background-color: #0378a4;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
}
.tools-for-mobile {
  display: none;
}

.editor-div-resposive {
  display: flex;
  padding: 10px;
  justify-content: flex-end;
}
.formatting-button svg {
  width: 20px;
  height: 20px;
}
.submit-message svg {
  width: 20px;
  height: 20px;
}
/* .create-new-toolbar-sms {
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  } */
.date-showcase {
  width: 715px;
  display: flex;
  align-items: center;
  border-radius: 15px;
}
.timeline-marker {
  width: 285px;
  height: 2px;
  background-color: #e5e5e5;
}
.date-focal-point {
  flex: 1;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.01em;
  text-align: left;
}

/* .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 20px;
  }

  header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  } */

/* .Catch {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
    height: 42px;
    margin-left: 20px;
    color: #5a5a5a;
  }
  .Catch img {
    height: 22px;
  }
  */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;

  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  /* background-color: #fff; */
  margin: 8% auto;
  height: 540px;
  width: 90%;
  max-width: 790px;
  border-radius: 8px;
  overflow: hidden;

  border-radius: 10px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  font-size: 24px;
  font-weight: 600;
  color: black;
  padding-left: 20px;
  padding-right: 20px;
  height: 90px;
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--h1);
  margin: 0;
}

.close-modal {
  font-size: 28px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--h1);
  margin-bottom: 10px;
}

.modal-input {
  width: 100%;
  height: 70px;

  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 16px;
  color: var(--h1);
}

.modal-input::placeholder {
  color: #999;
  font-size: 18px;
  padding: 10px;
}

.modal-create-btn {
  width: 100%;
  padding: 12px;
  height: 55px;
  background-color: #0378a4;
  color: white;
  border: none;
  border-radius: 84px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
}

.modal-create-btn:hover {
  background-color: #026288;
}
.modal-body {
  padding: 40px;

  overflow-y: auto;
}

.new_s-card {
  width: 360px;
  padding: 16px;
  background-color: #0378a40f;
  border-radius: 8px;
  margin-left: -15px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.new_s-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.new_s-header {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #0378a433;
  padding-bottom: 10px;
}

.new_s-avatar {
  border-radius: 50%;
}
.new_s-avatar img {
  width: 25px;
}

.new_s-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.new_s-nav-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
  margin-left: 5px;
}

.new_s-nav-button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: "Urbanist";
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 6px;
  color: #5a5a5a;
}

.new_s-nav-button.new_s-active {
  color: #0378a4;
}

.new_s-icon {
  font-size: 16px;
}
.new_s-nav-buttonss {
  border-top: 1px solid #0378a433;
  padding-top: 10px;
}
.new_s-see-more {
  text-decoration: none;
  font-family: "Urbanist";
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #0378a4;
  margin-top: 5px;
}

/* -=-----------Search button models------------------------------------- */

/* .container-mol {
    background-color: white;
    border-radius: 0.5rem;
  } */

.modi-srch-container-mol {
  position: relative;
}

.modi-lbl {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.01em;
  color: #5a5a5a;
}

.modi-srch-btn {
  background: none;
  border: none;
  cursor: pointer;
  /* padding: 8px; */
}

.search-iconss {
  width: 24px;
  height: 24px;
  color: #4b5563;
}

.modi-srch-popup {
  position: absolute;
  bottom: calc(100% + 5px);
  left: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.modi-srch-popup.modi-srch-open {
  width: 314px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-bottom: 10px;
  margin-left: -8px;
}

.active-modi-lbl {
  background-color: #e0ecee !important;
  color: #0378a4 !important;
}

.modi-srch-popup-content {
  padding: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}

.modi-srch-tabs {
  display: flex;
  justify-content: space-between;
}

.modi-srch-popup.modi-srch-open::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  transform: rotate(45deg);
  z-index: 1;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.modi-srch-tab {
  padding: 0.5rem 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.modi-srch-tabs-mn {
  background-color: white;
  padding: 8px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin-bottom: 15px;
}

.modi-srch-tab.modi-srch-active {
  width: 50%;
  background-color: #f5fafb;
  color: #0378a4;
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
}

.modi-srch-tab:not(.modi-srch-active) {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  color: #8a8a8a;
  width: 50%;
}

.modi-srch-search-box {
  margin-bottom: 1rem;
  position: relative;
}

.modi-srch-search-input {
  width: 100%;
  height: 42px;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 0.875rem;
  background-color: #f9f9fa;
}

.modi-srch-search-input::placeholder {
  padding: 0px;
}

.modi-srch-search-icon {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #828282;
}

.modi-srch-channel-section {
  margin-bottom: 1rem;
}

.modi-srch-section-title {
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  margin-bottom: 0.5rem;
  color: #828282;
}

.modi-srch-channel-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.5rem;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.modi-srch-channel-item:hover {
  background-color: #e0ecee;
  color: #0378a4;
}

.modi-lbl:hover {
  color: #0378a4;
}

#nestedPopup {
  left: -24%;
  bottom: 36px;
  margin-left: 10px;
  border: 1px solid #e5e5e5;
}

#nestedPopup.modi-srch-open::after {
  left: 14px;
  bottom: -10px;
  transform: rotate(-45deg);
  border-left: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  border-right: none;
  border-top: none;
}

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

@font-face {
  font-family: "Urbanist";
  src: url("/fonts/Urbanist-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Urbanist";
  src: url("/fonts/Urbanist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

.unique-tutorial-container {
  font-family: "Urbanist";
  background-color: white;
  width: 280px;
}

.unique-tutorial-title {
  font-family: Urbanist;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #828282;
}

.unique-tutorial-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unique-tutorial-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: "Urbanist";
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #5a5a5a;
}
.active-itm {
  background-color: #f5fafb;
  color: #0378a4;
}
.unique-tutorial-item:hover {
  background-color: #f5fafb;
  color: #0378a4;
}

.unique-hash-icon {
  width: 16px; /* Adjust as needed */
  height: 16px; /* Adjust as needed */
  margin-right: 8px;
  display: inline-block;
}

.lean-prover-button {
  background-color: #0378a414;
  border: none;
  border-radius: 66px;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  color: #0378a4;
  font-family: "Urbanist";
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.01em;
}

.lean-prover-button img {
  width: 20px;
  height: 20px;
}

.close-icon {
  margin-left: auto;
  font-size: 18px;
  font-weight: bold;
}

.drp-mini-dropdown-content {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none;
}

.drp-mini-dropdown-content.open {
  display: block;
}
/* .drp-d-mini img {
    padding-left: 10px;
  } */
.drp-mini-dropdown-content li {
  padding: 8px 10px;
  background-color: #fff;
}

.drp-mini-dropdown-content li:last-child {
  border-bottom: none;
}

.drp-mini-dropdown-content li:hover {
  background-color: #f9f9f9;
}

.drp-d-mini {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.drp-d-mini:hover {
  background-color: #0378a40f;
  cursor: pointer;
}
.menu-container-unique a {
  color: #0378a4 !important;
  margin-top: 6px;
}
.menu-container-unique a:hover {
  color: #0378a4 !important;
}
.Channels-feed-title {
  font-family: "Urbanist";
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #222222;
}
.menu-container-unique {
  background-color: #0378a40f;
  padding: 10px 10px;
  display: none;
  margin-top: -30px;
  border-radius: 10px;
}
.mb-lst {
  margin-bottom: 30px;
}
.dropdown-content {
  display: none;
  margin-top: 10px;
  padding-left: 40px;
}
.dropdown-content a {
  display: block;
  text-decoration: none;
  color: #333;
  margin: 5px 0;
  font-size: 14px;
}
.dropdown-content a:hover {
  color: #007bff;
}

.menu-itemm {
  cursor: pointer;
  background-color: white;
  padding: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-content {
  display: none; /* Initially hidden */
  background-color: #fff;
  margin-top: -1px; /* To align with the menu item */
  padding: 10px;
}
.dp-mdl {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-content div {
  padding: 5px 0;
  cursor: pointer;
}

.dropdown-content div:hover {
  background-color: #f9f9f9;
}
.menu-item-beta,
.menu-item-betaa,
.menu-item-quantum,
.menu-item-breakdown,
.menu-item-logic,
.menu-item-algo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.menu-item-beta {
  margin-top: 30px;
  border-top: 1px solid #0378a433;
  padding-top: 10px;
}
.menu-container-unique {
  background-color: #0378a40f;
  padding: 10px 10px;
  display: none;
  margin-top: -35px;
}
.mb-lst {
  margin-bottom: 30px;
}
.dropdown-content {
  display: none;
  margin-top: 10px;
  padding-left: 40px;
}
.drp-mini-dropdown-content {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none;
}

.drp-mini-dropdown-content.open {
  display: block;
}
/* .drp-d-mini img {
    padding-left: 10px;
  } */
.drp-mini-dropdown-content li {
  padding: 8px 10px;
  background-color: #fff;
}

.drp-mini-dropdown-content li:last-child {
  border-bottom: none;
}

.drp-mini-dropdown-content li:hover {
  background-color: #f9f9f9;
}

.drp-d-mini {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.drp-d-mini:hover {
  background-color: #0378a40f;
  cursor: pointer;
}
.menu-container-unique a {
  color: #0378a4 !important;
  margin-top: 6px;
}
.menu-container-unique a:hover {
  color: #0378a4 !important;
}
.Channels-feed-title {
  font-family: "Urbanist";
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #222222;
}
.menu-container-unique {
  background-color: #0378a40f;
  padding: 10px 10px;
  display: none;
  margin-top: -30px;
  border-radius: 10px;
}
.mb-lst {
  margin-bottom: 30px;
}
.dropdown-content {
  display: none;
  margin-top: 10px;
  padding-left: 40px;
}
.dropdown-content a {
  display: block;
  text-decoration: none;
  color: #333;
  margin: 5px 0;
  font-size: 14px;
}
.dropdown-content a:hover {
  color: #007bff;
}

.menu-itemm {
  cursor: pointer;
  background-color: white;
  padding: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-content {
  display: none; /* Initially hidden */
  background-color: #fff;
  margin-top: -1px; /* To align with the menu item */
  padding: 10px;
}
.dp-mdl {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-content div {
  padding: 5px 0;
  cursor: pointer;
}

.dropdown-content div:hover {
  background-color: #f9f9f9;
}
.menu-item-beta,
.menu-item-betaa,
.menu-item-quantum,
.menu-item-breakdown,
.menu-item-logic,
.menu-item-algo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.menu-item-beta {
  margin-top: 30px;
  border-top: 1px solid #0378a433;
  padding-top: 10px;
}
.menu-container-unique {
  background-color: #0378a40f;
  padding: 10px 10px;
  display: none;
  margin-top: -35px;
}
.mb-lst {
  margin-bottom: 30px;
}
.dropdown-content {
  display: none;
  margin-top: 10px;
  padding-left: 40px;
}
.new_s-card {
  width: 360px;
  padding: 16px;
  background-color: #0378a40f;
  border-radius: 8px;
  margin-left: -15px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.new_s-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.new_s-header {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #0378a433;
  padding-bottom: 10px;
}

.new_s-avatar {
  border-radius: 50%;
}
.new_s-avatar img {
  width: 25px;
}

.new_s-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.new_s-nav-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
  margin-left: 5px;
}

.new_s-nav-button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: "Urbanist";
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 6px;
  color: #5a5a5a;
}

.new_s-nav-button.new_s-active {
  color: #0378a4;
}

.new_s-icon {
  font-size: 16px;
}
.new_s-nav-buttonss {
  border-top: 1px solid #0378a433;
  padding-top: 10px;
}
.new_s-see-more {
  text-decoration: none;
  font-family: "Urbanist";
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #0378a4;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  .pub-menu-options {
    display: flex;
    gap: 10px;
  }

  .sidebar {
    display: none;
  }
  .app-wrapper {
    width: 300px;
  }
  .create-buttonn {
    width: 300px;
  }
  .catchi-dri-nw-nav-container {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
  }
  .feed-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: left;
  }
  .feed-layout {
    display: flex;
    width: 100%;

    justify-content: center;
  }
  .pub-conversation-area {
    padding: 10px;
  }
  .pub-speech-text {
    width: 100%;
  }
  .feed-container {
    width: 100%;
  }
  .message-composer {
    width: 100%;
  }
  .tools-for-mobile {
    display: block;
  }
  .editor-div-desktop {
    display: none !important;
  }
  .date-showcase {
    width: 100%;
    font-family: Urbanist;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.01em;
  }
  .timeline-marker {
    width: 90px;
  }
  .pub-menu-item {
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 600;
    line-height: 25.33px;
    letter-spacing: 0.01em;
  }
  .pub-bar-top {
    padding-left: 10px;
  }
}
.editor-div-desktop {
  display: block;
}
.editor-tools-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 786px) {
  .feed-layout {
    width: 95%;
    margin: auto;
    height: fit-content;
    margin-bottom: 20px;
  }
  /* .message-composer{
      width: 330px;
    } */
}

.Catch-Up-title {
  font-family: "Urbanist";
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}
.nw-dyd-dropdown-container {
  width: 100%;
  font-family: "Urbanist";
  border-bottom: 1px soloid red;
}

.nw-dyd-top-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.catup-main {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}
.nw-dyd-tp-br-icn {
  width: 20px;
  height: 20px;
}

.nw-dyd-chevron {
  margin-left: auto;
  width: 25px;
  transition: transform 0.3s;
}

.nw-dyd-chevron.open {
  transform: rotate(180deg);
}

.nw-dyd-main-navi {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}

.nw-dyd-main-navi.open {
  max-height: 500px;
}

.nw-dyd-Catch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 4px;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.nw-dyd-Catch img {
  width: 18px;
}

.nw-dyd-Catch p {
  margin: 0;
  font-family: Urbanist;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--p);
}
.drop-titel {
  color: var(--p);
}

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

.tox .tox-menubar {
  display: none !important;
}
.tox,
.tox-tinymce {
  width: 100%;
}
.tox-statusbar {
  display: none !important;
}
.submit-message {
  display: none !important;
}

.catchp-nav-menu {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.catchp-menu-collapsed,
.catchp-menu-expanded {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.catchp-menu-icons {
  width: 343px;
  display: flex;
  justify-content: space-between;
  margin: 10px 1px;
}

.catchp-menu-item {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--body-bg);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.catchp-menu-toggle {
  width: 200px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  background-color: var(--sidebar);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.catchp-menu-expanded {
  width: 343px;
  background-color: var(--sidebar);
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.catchp-menu-header {
  display: flex;
  align-items: center;
  background-color: var(--sidebar);
  border: none;
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}
.mdl-nav-labl {
  font-family: "Urbanist";
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #5a5a5a;
}
.catchp-menu-header span {
  margin-left: 10px;
  font-family: "Urbanist";
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}

.catchp-menu-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.catchp-menu-items .catchp-menu-item {
  width: 100%;
  justify-content: flex-start;
  gap: 15px;
  border-radius: 4px;
  background-color: var(--sidebar);
}

.catchp-hidden {
  display: none;
}

.catchp-icon img {
  width: 18px;
}

.catchpi {
  font-family: "Urbanist";
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}

.catchp-icon {
  display: flex;
}
.catch--lable {
  margin-left: 10px;
  font-family: "Urbanist";
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}
.catchi-dri-nw-nav-container {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.catchi-dri-nw-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0px;
  border-bottom: 1px solid #e0e0e0;
}

.catchi-dri-nw-nav-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.catchi-dri-nw-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}

.catchi-dri-nw-toggle-btn.catchi-dri-nw-rotated {
  transform: rotate(180deg);
}

.catchi-dri-nw-header-icons {
  display: flex;
  gap: 8px;
  transition: opacity 0.3s ease;
}
.catchi-dri-nw-header-icons img {
  width: 18px;
}
.catchi-dri-nw-nav-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.catchi-dri-nw-nav-content.catchi-dri-nw-open {
  max-height: 300px;
  margin-left: -14px;
}

.catchi-dri-nw-nav {
  display: flex;
  flex-direction: column;
  padding: 8px;
}

.catchi-dri-nw-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.catchi-dri-nw-nav-item img {
  width: 20px;
}

.catchi-dri-nw-nav-container h2 {
  margin: 0;
  font-family: "Urbanist";
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
  cursor: pointer;
}

.catchi-dri-nw-nav-container i {
  width: 16px;
  height: 16px;
}
.nw-cm-label {
  font-family: "Urbanist";
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}
.icon img {
  margin-right: 10px;
  filter: brightness(1.2) saturate(100%) invert(33%) sepia(0%) hue-rotate(0deg)
    contrast(85%);
}

#domenica-open {
  display: none;
}
#domenica-close.hidden {
  display: none;
}
