@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  background-color: #f9f9fa;
  margin: 0;
  color: #333;
  font-family: "Urbanist", serif;
}
.feed-container {
  max-width: 1240px;
  margin: 0 auto;
}
/* .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);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
} */
.header-content2 {
  display: flex;
  gap: 20px;
  align-items: center;
}
.logo {
  font-size: 24px;
  font-weight: bold;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #666;
}
nav a.active {
  color: #0077b6;
}
nav {
  font-size: 18px;
}
/* .header-actions {
  display: flex;
  align-items: center;
}
/* .header-actions > * {
  margin-left: 15px;
} */
.create-btn {
  background: #0378a4;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}
.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ddd;
}
.feed-headerri {
  width: 1240px;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 30px;
}
.feed-title {
  font-size: 35px;
  font-weight: 600;
  color: var(--h1);
}
.feed-breadcrumb {
  font-size: 18px;
  color: #5a5a5a;
  font-weight: 500;
  cursor: pointer;
}
.feed-breadcrumb a {
  font-size: 18px;
  color: #5a5a5a;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.feed-breadcrumb-current:hover {
  text-decoration: underline;
}
.feed-breadcrumb-current {
  color: #0378a4;
  font-weight: 500;
}
.feed-layout {
  display: flex;
  justify-content: space-between;
  /* gap: 20px; */
}
.feed-main {
  width: 815px;
}
.feed-controls {
  width: 815px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.feed-view-selector {
  position: relative;
  width: 185px;
}

.feed-view-select {
  width: 195px;
  height: 47px;
  padding: 8px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  color: var(--h1);
  background-color: var(--enagement-item);
  appearance: none;
  font-size: 18px;
  font-weight: 500;
  padding-right: 30px; /* Make space for the custom arrow */
}

.custom-arrow {
  position: absolute;
  right: 10px;
  top: 40%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.feed-filter-group {
  display: flex;
  gap: 8px;
}
.feed-filter-option {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: var(--h1);
}
.feed-filter-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #0378a4;
  border-radius: 3px;
}
.filter-chck {
  background-color: var(--enagement-item);
  display: flex;
  width: 195px;
  height: 47px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
}
.feed-filter-option:hover input ~ .checkmark {
  background-color: #f0f0f0;
}
.feed-filter-option input:checked ~ .checkmark {
  background-color: #0378a4;
  width: 18px;
  height: 18px;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.feed-filter-option input:checked ~ .checkmark:after {
  display: block;
}
.feed-filter-option .checkmark:after {
  left: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.feed-search-bar {
  position: relative;
  width: 815px;
}
.feed-search-input {
  width: 815px;
  padding: 0px 80px;
  height: 50px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 18px;
  box-sizing: border-box;
  background-color: var(--input);
  border-radius: 5px;
}
.feed-search-input::placeholder {
  padding: 0px;
}
.feed-search-input:focus {
  outline: none;
  /* border-color: #2196f3;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2); */
}
.feed-search-icon,
.feed-clear-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.feed-search-icon {
  left: 12px;
}
.feed-clear-icon {
  right: 20px;
  cursor: pointer;
}
.border-span {
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(199, 194, 194, 0.1);
}
.discussion-board {
  width: 817px;

  border-radius: 0.5rem;
  overflow: hidden;
}
.Topic-style {
  width: 90px;
}
.board-header,
.thread {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  align-items: center;
}
.board-header {
  height: 55px;
  background-color: rgba(3, 120, 164, 0.08);
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-top: 21px;
}
.thread {
  border-bottom: 1px solid #e5e7eb;
  margin-top: 15px;
}
.thread:nth-child(even) {
  background-color: var(--post-bg);
  margin-bottom: 10px;
  border-radius: 10px;
  height: 98px;
  padding: 20px;
  border: 1px solid #e5e5e5;
}
.thread:nth-child(odd) {
  background-color: var(--post-bg);
  margin-bottom: 10px;
  border-radius: 10px;
  height: 98px;
  padding: 20px;
  border: 1px solid #e5e5e5;
}
.thread-main {
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.thread-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.thread-content h3 {
  width: 334px;
  margin-bottom: 3px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--h1);
}
.thread-meta {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}
.thread-author,
.thread-category {
  color: #0378a4;
  font-weight: 400;
}
.board-header > div,
.thread > div:not(:first-child) {
  text-align: center;
  border-radius: 5px;
  color: var(--h1);
  font-size: 18px;
}
.thread > div:not(:first-child) {
  color: #5a5a5a;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.01em;
}
.board-header {
  background-color: #0378a414;
}
.last-activity {
  color: #6b7280;
}

.feed-topic-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 16px;
}
.feed-topic-content {
  display: flex;
  align-items: center;
}
.feed-topic-details {
  display: flex;
  flex-direction: column;
}
.feed-topic-title {
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
}
.feed-topic-subtitle {
  font-size: 12px;
  color: #7f8c8d;
}
.sidebar {
  /* display: block !important;
  background-color: white;
  border-radius: 8px;
  padding: 30px; */
  display: flex;
  background-color: var(--sidebar);
  border: 1px solid var(--border-color);
  padding: 30px;
  width: 392px !important;
  justify-content: center;
}
/* .feed-sidebar-header {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  color: var(--h1);
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.feed-sidebar-icon {
  margin-right: 8px;
  cursor: pointer;
}
.feed-activity-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.feed-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e0e6ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #34495e;
}
.feed-user-avatar img {
  width: 35px;
  border-radius: 20px;
  margin-top: 12px;
} */

.live-feed {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.live-feed-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  border: none;
  width: 100%;
  text-align: left;
  margin-bottom: 15px;
  background: var(--bg-color);
  text-align: left;
  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;
}

.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;
}
.feed-activity-item {
  display: flex;
  gap: 10px;
}
.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: 343px;

  height: 100vh;
  display: flex;
  flex-direction: column;
}
.toggle-button {
  display: flex;
  align-items: center;
  padding: 10px 0px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: var(--h1);
  border-bottom: 1px solid #e5e5e5;
}

.navigation-list {
  list-style-type: none;
  padding: 0;
  margin: 15px 0;
}
.nav-link {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  color: #555;
  text-decoration: none;
  /* border-radius: 8px; */
}

.nav-link.active {
  background-color: rgba(3, 120, 164, 0.08);
  color: #0378a4;
  width: 100%;
  border: none;
}
.nav-link.emphasized {
  width: 330px;
  margin-top: 20px;
  border-bottom: 1px solid #e5e5e5;
  line-height: 40px;
  color: var(--h1);
  font-family: Urbanist;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
}
.upd-wrapper {
  display: flex;
  align-items: center;
}

.upd-container {
  display: flex;
  align-items: center;
  background: var(--input);
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 8px 12px;
  width: 300px;
}

.upd-search-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.upd-icon {
  width: 18x;
  height: 18px;
  color: #828282;
  margin-right: 8px;
}

.upd-input {
  border: none;
  background: transparent;
  width: 100%;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: #828282;
}

.upd-input:focus {
  outline: none;
}

.upd-input::placeholder {
  color: #666;
}

.upd-menu {
  width: 24px;
  height: 24px;
  color: #5a5a5a;
  cursor: pointer;
}

.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-button {
  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;
}
/* Add these new styles */
.dropdown-wrapper {
  position: sticky;
  bottom: 16px; /* Adjust as needed */
  background-color: white;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #e5e5e5;
}

.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;
}
.icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
.icon-drpdown {
  width: 20px;
  margin-right: 12px;
}
/*=========== When clicking on the standard view, the modal shown starts from here ==============*/
#standard-view {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.model-standard-container {
  margin-top: 20px;
  width: 817px;
}

.mdl-post-wrapper {
  width: 817px;
  background-color: var(--post-bg);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 20px;
}
.mdl-content-header {
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mdl-header-content-left {
  display: flex;
  align-items: center;
}
.mdl-icon-globe {
  width: 40px;
  height: 40px;
  background-color: #1877f2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
}

.mdl-content-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--h1);
  margin: 0;
}
.mdl-content-subtitle {
  font-size: 16px;
  color: #5a5a5a;
  font-weight: 400;
  margin: 4px 0 0 0;
}
.mdl-subtitle-descrp {
  color: #0378a4;
  font-size: 16px;
  font-weight: 400;
}
.mdl-content-timestamp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #65676b;
}
.mdl-content-body {
  font-size: 16px;
  font-weight: 400;
  padding: 25px;
  color: var(--p);
  line-height: 1.4;
}
.mdl-content-footer {
  background-color: rgba(3, 120, 164, 0.08);
  height: 70px;
  padding: 0px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e4e6eb;
  border-radius: 10px;
  margin-top: 20px;
}
.mdl-engagement-metrics {
  display: flex;
  gap: 16px;
  color: #65676b;
  font-size: 13px;
}
.reply-dev {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #5a5a5a;
}
.mdl-action-button {
  width: 169px;
  height: 50px;
  background-color: #0378a4;
  color: #ffffff;
  border: none;
  border-radius: 44px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.navigation-list a {
  margin-left: 0;
}

@media (max-width: 1024px) {
  .sidebar {
    display: none;
    width: 343px !important;
    padding: 10px;
  }
  .feed-layout {
    width: 815px;
    margin: 0px auto;
  }
  .feed-headerri {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 800px;
    position: relative;
    left: -280;
    right: auto;
  }
  .feed-breadcrumb {
    margin-right: 40px;
  }

  .feed-container {
    width: 815px;
    margin: 0px auto;
  }
  .discussion-board {
    width: 810px;
    margin: 0px auto;
  }
}

@media (max-width: 768px) {
  .feed-controls,
  .feed-filter-group {
    display: flex;
    flex-direction: column;
    width: 343px;
  }
  .feed-controls {
    display: flex;
    gap: 5px;
    width: 343px;
  }
  .feed-search-input {
    width: 343px;
  }
  .feed-filter-option {
    margin-left: 20px;
  }
  .feed-view-selector {
    position: relative;
    left: 0;
    width: 343px;
  }
  .custom-arrow {
    position: absolute;
    right: 165px;
    top: 55%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
  }
  .filter-chck {
    display: flex;
    justify-content: space-between;
  }
  .feed-container {
    width: 343px;
    margin: 0px auto;
  }
}

@media (max-width: 768px) {
  .discussion-board {
    background-color: white;
    width: 800px;
  }
  .board-header {
    width: 800px;
    background-color: #0378a414 !important;
  }

  .discussion-board {
    width: 343px;
    white-space: nowrap;
    overflow-x: scroll;
    margin: 0px;
  }
  .thread {
    width: 800px;
  }
  .feed-layout {
    width: 343px;
  }
  .feed-headerri {
    width: 343px;
    /* margin-left: 230px; */
  }

  .discussion-board::-webkit-scrollbar {
    height: 5px;
  }
  .discussion-board::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
  }
  .discussion-board::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
  .discussion-board::-webkit-scrollbar-track {
    background: transparent;
  }
  .feed-main {
    width: 343px;
    margin: 0px auto;
  }
  .feed-search-bar {
    width: 343px;
  }

  /* ------------------------ */
  .model-standard-container,
  .mdl-post-wrapper {
    width: 343px;
  }
  .mdl-content-footer {
    display: flex;
    flex-direction: column;
    height: 110px;
    padding: 10px 0px;
  }
  .mdl-action-button {
    width: 250px;
  }
  .mdl-content-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mdl-content-timestamp {
    margin-right: 95px;
  }
  .mdl-content-header,
  .mdl-content-body {
    padding: 10px 15px;
  }
}

.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: 370px;
  display: flex;
  justify-content: space-between;
  margin: 20px 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: 180px;
  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: 370px;
  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-menu-items .catchp-menu-item:hover {
  background-color: #eaeaea;
}

.catchp-hidden {
  display: none;
}

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

.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: 8px;
}

.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;
}

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

.catchi-dri-nw-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  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);
}
