.Left_Tabs {
  width: 100%;
}

.Left_Tabs .desktop_sidebar {
  background: #ffffff;
  border: 1px solid #e5e8e3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(24, 61, 40, 0.06);
}

.Left_Tabs .tabs_main_div {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  margin: 0;
  cursor: pointer;
  background: #ffffff;
  border: none;
  border-bottom: 1px solid #edf0eb;
  transition: all 0.25s ease;
}

.Left_Tabs .tabs_main_div:last-child {
  border-bottom: none;
}

.Left_Tabs .tabs_main_div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: transparent;
  transition: 0.25s ease;
}

.Left_Tabs .tabs_main_div:hover {
  background: #f7faf4;
}

.Left_Tabs .tabs_main_div:hover::before {
  background: #92c743;
}

.Left_Tabs .tabs_main_div.active {
  background: #046442;
}
.Left_Tabs .tabs_main_div .text_holder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Left_Tabs .tabs_main_div .text_holder .tab_name {
  margin: 0;
  padding: 0;
  color: #26352b;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.4;
  transition: 0.25s ease;
}

.Left_Tabs .tabs_main_div.active .text_holder .tab_name {
  color: #ffffff;
  font-weight: 700;
}

.Left_Tabs .tabs_main_div .text_holder .icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #183d28;
  background: #f1f6ed;
  font-size: 12px;
  transition: all 0.25s ease;
}

.Left_Tabs .tabs_main_div.active .text_holder .icon {
  color: #183d28;
  background: #ffffff;
}

.Left_Tabs .tabs_main_div:hover .text_holder .icon {
  color: #183d28;
}

.Left_Tabs .inner_tabs {
  background: #f8faf7;
  padding: 6px 10px 8px;
  border-bottom: 1px solid #e5eae3;
}

.Left_Tabs .inner_tab {
  position: relative;
  padding: 10px 15px 10px 25px;
  margin: 2px 0;
  color: #5b665e;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.Left_Tabs .inner_tab::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b7c1b4;
  transform: translateY(-50%);
  transition: 0.25s ease;
}

.Left_Tabs .inner_tab:hover {
  background: #eef5e9;
  color: #183d28;
}

.Left_Tabs .inner_tab:hover::before {
  background: #92c743;
}

.Left_Tabs .inner_tab.active-sub-tab {
  background: #dff0c7;
  color: #183d28;
  font-weight: 700;
}

.Left_Tabs .inner_tab.active-sub-tab::before {
  background: #92c743;
  box-shadow: 0 0 0 3px rgba(146, 199, 67, 0.18);
}

.Left_Tabs .mobile_div {
  display: none;
}

.Left_Tabs .mobile_div .dropdown {
  width: 100%;
}

.Left_Tabs .mobile_div .dropdown_button {
  width: 100%;
  min-height: 48px;
  padding: 10px 15px;
  background: #92c743 !important;
  border: 1px solid #92c743 !important;
  border-radius: 10px !important;
  box-shadow: 0 3px 10px rgba(146, 199, 67, 0.18);
}

.Left_Tabs .mobile_div .dropdown_button::after {
  margin-left: auto;
}

.Left_Tabs .mobile_div .dropdown_button .text_holder {
  width: 100%;
}

.Left_Tabs .mobile_div .dropdown_button .tab_name {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.Left_Tabs .mobile_div .dropdown-menu {
  /* width: 100%; */
  margin-top: 6px !important;
  padding: 6px;
  background: #ffffff;
  border: 1px solid #e1e7de;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(24, 61, 40, 0.12);
}

.Left_Tabs .mobile_div .dropdown-item {
  padding: 0 !important;
  border-radius: 8px;
  overflow: hidden;
}

.Left_Tabs .mobile_div .dropdown-item:hover {
  background: transparent;
}

.Left_Tabs .mobile_div .dropdown-item .tabs_main_div {
  min-height: 44px;
  padding: 0 12px;
  border: none;
  border-radius: 8px;
}

.Left_Tabs .mobile_div .dropdown-item .tabs_main_div:hover {
  background: #f1f7ed;
}

.Left_Tabs .mobile_div .dropdown-item .tabs_main_div.active {
  background: #92c743;
}

.Left_Tabs .mobile_div .dropdown-item .tabs_main_div .tab_name {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  color: #26352b;
}

.Left_Tabs .mobile_div .dropdown-item .tabs_main_div.active .tab_name {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .Left_Tabs .desktop_sidebar {
    display: none;
  }

  .Left_Tabs .mobile_div {
    display: block;
    margin: 10px 0 20px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .Left_Tabs .mobile_div .dropdown_button {
    min-height: 50px;
  }

  .Left_Tabs .mobile_div .dropdown_button .tab_name {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .Left_Tabs .mobile_div {
    margin: 8px 0 15px;
  }

  .Left_Tabs .mobile_div .dropdown_button {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 8px !important;
  }

  .Left_Tabs .mobile_div .dropdown_button .tab_name {
    font-size: 15px;
  }

  .Left_Tabs .mobile_div .dropdown-menu {
    border-radius: 8px;
    padding: 5px;
  }

  .Left_Tabs .mobile_div .dropdown-item .tabs_main_div {
    min-height: 40px;
  }

  .Left_Tabs .mobile_div .dropdown-item .tabs_main_div .tab_name {
    font-size: 13px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .Left_Tabs .tabs_main_div {
    min-height: 50px;
    padding: 0 12px;
  }

  .Left_Tabs .tabs_main_div .text_holder .tab_name {
    font-size: 13px;
  }

  .Left_Tabs .inner_tab {
    padding: 9px 12px 9px 24px;
    font-size: 12px;
  }
}
