@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");


* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	padding: 0;
	margin: 0;
	font-family: "Manrope", serif;
	background-color: #fff;
	color: #242424;
	font-size: 16px;
	line-height: 1.2;
}

a {
	text-decoration: none;
	transition: all 0.5s ease-in-out;
}

.form-select:focus {
	border-color: inherit !important;
	outline: 0 !important;
	box-shadow: inherit !important;
}

img {
	max-width: 100%;
	display: block;
	outline: none;
	border: none;
}

ul,
li {
	padding: 0;
	margin: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Manrope", serif;
	margin: 0;
	margin-bottom: 16px;
}

p {
    margin: 0;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    font-family: "Manrope", serif;
}

h1 {
    font-size: 84px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 13px;

}

h2 {
    font-size: 50px;
    font-weight: 600;
}


h3 {
	font-size: 26px;
	font-weight: 400;
}

h4 {
    font-size: 20px;
    font-weight: 400;
}

h5 {}


h6 {}


.bg-cover {
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

.gapping {
    padding: 70px 0;
}

.flex-items {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu {
  display: none;
}
/* ----------------------------------------- */
.sidebar-main {
  position: relative;
  z-index: 999;
}
/* Sidebar Default Style */
.sidebar {
  background: #0c0b0b;
  padding: 20px;
  height: 98vh;
  position: fixed;
  left: 10px;
  top: 10px;
  border-radius: 14px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.35);
  /* z-index: 999999999; */
  transition: transform 0.4s ease-in-out;
}

/* Mobile Mode - Initially Hidden */
@media (max-width: 991px) {
  #sidebarmain {
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    position: relative;
    z-index: 999;
}

  /* When sidebar is open */
  #sidebarmain.open {
    left: 0;
    transform: translateX(0%);
}
}

/* Hamburger Menu Style */

.menu-toggle {
  position: absolute;
  top: 15px;
  left: 23px;
  z-index: 1000000000;
}

.menu .btn {
  background: #000;
  color: #fff;
  width: 44px;
  height: 42px;
  border: none;
  outline: none;
  padding: 12px 10px !important;
}

.menu .btn:active{
  background: #000 !important;
}

.menu .btn span {
  display: block;
  height: 2px;
  background: #fff;
  width: 23px;
  margin-bottom: 6px;
}

.menu .btn span:nth-child(2) {
  width: 17px;
}

.logo a span {
    color: #fff;
    font-size: 46px;
    font-weight: 900;
}

.nav-pills .nav-link {
    font-size: 22px;
    color: #fff;
    background: transparent;
    margin-bottom: 23px;
    opacity: 0.6;
	position: relative;
}

.nav-pills .nav-link span {
    position: absolute;
    left: 75px;
    color: #000000;
    background: #fff;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: 0px 1px 14px rgb(0 0 0 / 13%);
    top: 6px;
    visibility: hidden;
    transition: all 0.6s;
    opacity: 0;
    display: block;
    width: 7rem;
	z-index: 111;
}

.nav-pills .nav-link:hover span{
	opacity: 1;
	visibility: visible;
}

.nav-pills .nav-link span::before {
    display: block;
    position: absolute;
    content: "";
    left: -13px;
    z-index: 3;
    width: 0;
    height: 0;
    border-right: 13px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    top: 9px;
}


.nav {
    margin-top: 52px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: transparent;
    opacity: 1;
}

.dashboard_body_panel {
    padding-left: 150px;
    margin-top: 30px;
    padding-right: 30px;
}

.title_user {
    background: #f5f5f7;
    padding: 30px 20px;
    position: relative;
}

.title_user h2{
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 7px;
}

.title_user img {
  position: absolute;
  right: 54px;
  bottom: 0;
  width: 120px;
}

.header-nav ul {
	list-style: none;
  }
  
  .header-nav>ul {
    margin: 0;
    padding: 0;
    margin-bottom: 25px;
}
  
  .header-nav .nav-icon {
	font-size: 22px;
	color: #012970;
	margin-right: 25px;
	position: relative;
  }
  
  .header-nav .nav-profile {
	color: #012970;
  }
  
  .header-nav .nav-profile img {
	max-height: 36px;
  }
  
  .header-nav .nav-profile span {
	font-size: 14px;
	font-weight: 600;
  }
  
  .header-nav .badge-number {
	position: absolute;
	inset: -2px -5px auto auto;
	font-weight: normal;
	font-size: 12px;
	padding: 3px 6px;
  }
  
  .header-nav .notifications {
	inset: 8px -15px auto auto !important;
  }
  
  .header-nav .notifications .notification-item {
	display: flex;
	align-items: center;
	padding: 15px 10px;
	transition: 0.3s;
  }
  
  .header-nav .notifications .notification-item i {
	margin: 0 20px 0 10px;
	font-size: 24px;
  }
  
  .header-nav .notifications .notification-item h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
  }
  
  .header-nav .notifications .notification-item p {
	font-size: 13px;
	margin-bottom: 3px;
	color: #919191;
  }
  
  .header-nav .notifications .notification-item:hover {
	background-color: #f6f9ff;
  }
  
  .header-nav .messages {
	inset: 8px -15px auto auto !important;
  }
  
  .header-nav .messages .message-item {
	padding: 15px 10px;
	transition: 0.3s;
  }
  
  .header-nav .messages .message-item a {
	display: flex;
  }
  
  .header-nav .messages .message-item img {
	margin: 0 20px 0 10px;
	max-height: 40px;
  }
  
  .header-nav .messages .message-item h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #444444;
  }
  
  .header-nav .messages .message-item p {
	font-size: 13px;
	margin-bottom: 3px;
	color: #919191;
  }
  
  .header-nav .messages .message-item:hover {
	background-color: #f6f9ff;
  }
  
  .header-nav .profile {
	min-width: 240px;
	padding-bottom: 0;
	top: 8px !important;
  }
  
  .header-nav .profile .dropdown-header h6 {
	font-size: 18px;
	margin-bottom: 0;
	font-weight: 600;
	color: #444444;
  }
  
  .header-nav .profile .dropdown-header span {
	font-size: 14px;
  }
  
  .header-nav .profile .dropdown-item {
	font-size: 14px;
	padding: 10px 15px;
	transition: 0.3s;
  }
  
  .header-nav .profile .dropdown-item i {
	margin-right: 10px;
	font-size: 18px;
	line-height: 0;
  }
  
  .header-nav .profile .dropdown-item:hover {
	background-color: #f6f9ff;
  }
  

  .dropdown-menu {
	border-radius: 4px;
	padding: 10px 0;
	animation-name: dropdown-animate;
	animation-duration: 0.2s;
	animation-fill-mode: both;
	border: 0;
	box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
  }
  
  .dropdown-menu .dropdown-header,
  .dropdown-menu .dropdown-footer {
	text-align: center;
	font-size: 15px;
	padding: 10px 25px;
  }
  
  .dropdown-menu .dropdown-footer a {
	color: #444444;
	text-decoration: underline;
  }
  
  .dropdown-menu .dropdown-footer a:hover {
	text-decoration: none;
  }
  
  .dropdown-menu .dropdown-divider {
	color: #a5c5fe;
	margin: 0;
  }
  
  .dropdown-menu .dropdown-item {
	font-size: 14px;
	padding: 10px 15px;
	transition: 0.3s;
  }
  
  .dropdown-menu .dropdown-item i {
	margin-right: 10px;
	font-size: 18px;
	line-height: 0;
  }
  
  .dropdown-menu .dropdown-item:hover {
	background-color: #f6f9ff;
  }
  
  @media (min-width: 768px) {
	.dropdown-menu-arrow::before {
	  content: "";
	  width: 13px;
	  height: 13px;
	  background: #fff;
	  position: absolute;
	  top: -7px;
	  right: 20px;
	  transform: rotate(45deg);
	  border-top: 1px solid #eaedf1;
	  border-left: 1px solid #eaedf1;
	}
  }
  
  @keyframes dropdown-animate {
	0% {
	  opacity: 0;
	}
  
	100% {
	  opacity: 1;
	}
  
	0% {
	  opacity: 0;
	}
  }

  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.grid .item1 {
    background: #f5f5f7;
    padding: 27px 26px;
}

.grid .item1 span {
  font-size: 52px;
  font-weight: 800;
  margin-right: 0;
  line-height: 66px;
  display: block;
}

.grid .item1 p {
    text-transform: capitalize;
    font-weight: 600;
}

.dashboard .filter {
	position: absolute;
	right: 0px;
	top: 15px;
  }
  
  .dashboard .filter .icon {
	color: #aab7cf;
	padding-right: 20px;
	padding-bottom: 5px;
	transition: 0.3s;
	font-size: 16px;
  }
  
  .dashboard .filter .icon:hover,
  .dashboard .filter .icon:focus {
	color: #4154f1;
  }
  
  .dashboard .filter .dropdown-header {
	padding: 8px 15px;
  }
  
  .dashboard .filter .dropdown-header h6 {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #aab7cf;
	margin-bottom: 0;
	padding: 0;
  }
  
  .dashboard .filter .dropdown-item {
	padding: 8px 15px;
  }
  
  /* Info Cards */
  .dashboard .info-card {
	padding-bottom: 10px;
  }
  
  .dashboard .info-card h6 {
	font-size: 28px;
	color: #012970;
	font-weight: 700;
	margin: 0;
	padding: 0;
  }
  
  .dashboard .card-icon {
	font-size: 32px;
	line-height: 0;
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	flex-grow: 0;
  }
  
  .dashboard .sales-card .card-icon {
	color: #4154f1;
	background: #f6f6fe;
  }
  
  .dashboard .revenue-card .card-icon {
	color: #2eca6a;
	background: #e0f8e9;
  }
  
  .dashboard .customers-card .card-icon {
	color: #ff771d;
	background: #ffecdf;
  }
  
  /* Activity */
  .dashboard .activity {
	font-size: 14px;
  }
  
  .dashboard .activity .activity-item .activite-label {
	color: #888;
	position: relative;
	flex-shrink: 0;
	flex-grow: 0;
	min-width: 64px;
  }
  
  .dashboard .activity .activity-item .activite-label::before {
	content: "";
	position: absolute;
	right: -11px;
	width: 4px;
	top: 0;
	bottom: 0;
	background-color: #eceefe;
  }
  
  .dashboard .activity .activity-item .activity-badge {
	margin-top: 3px;
	z-index: 1;
	font-size: 11px;
	line-height: 0;
	border-radius: 50%;
	flex-shrink: 0;
	border: 3px solid #fff;
	flex-grow: 0;
  }
  
  .dashboard .activity .activity-item .activity-content {
	padding-left: 10px;
	padding-bottom: 20px;
  }
  
  .dashboard .activity .activity-item:first-child .activite-label::before {
	top: 5px;
  }
  
  .dashboard .activity .activity-item:last-child .activity-content {
	padding-bottom: 0;
  }
  
  /* News & Updates */
  .dashboard .news .post-item+.post-item {
	margin-top: 15px;
  }
  
  .dashboard .news img {
	width: 80px;
	float: left;
	border-radius: 5px;
  }
  
  .dashboard .news h4 {
	font-size: 15px;
	margin-left: 95px;
	font-weight: bold;
	margin-bottom: 5px;
  }
  
  .dashboard .news h4 a {
	color: #012970;
	transition: 0.3s;
  }
  
  .dashboard .news h4 a:hover {
	color: #4154f1;
  }
  
  .dashboard .news p {
	font-size: 14px;
	color: #777777;
	margin-left: 95px;
  }
  
  /* Recent Sales */
  .dashboard .recent-sales {
	font-size: 14px;
  }
  
  .dashboard table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
  }

  .dashboard table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
  }

  .dashboard table tr {
    border: 1px solid #ddd;
    padding: .35em;
  }

  .dashboard table th,
  .dashboard table td {
    padding: .625em;
/*    text-align: center;*/
  }

  .dashboard table th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 13px 8px;
    background: #f5f5f7;
  }

  @media screen and (max-width: 600px) {
    .dashboard table {
      border: 0;
    }

    .dashboard table caption {
      font-size: 1.3em;
    }
    
    .dashboard table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    .dashboard table tr {
      border-bottom: 3px solid #ddd;
      display: block;
      margin-bottom: .625em;
    }
    
    .dashboard table td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: .8em;
      text-align: right;
    }
    
    .dashboard table td::before {
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
    
    .dashboard table td:last-child {
      border-bottom: 0;
    }
  }

  
  
  /* Top Selling */
  .dashboard .top-selling {
	font-size: 14px;
  }
  
  
  
  .dashboard .top-selling img {
    border-radius: 2px;
    max-width: 60px;
}



.img_icon img {
  width: 64px;
}

.grid.support {
    grid-template-columns: 1fr;
    margin-top: 40px;
}

.grid.support .item1 {
    background: #f5f5f7;
    padding: 39px 30px;
}

.grid.support .text span {
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 800;
    margin-bottom: 3px;
    display: block;
    line-height: 1.2;
}

a.btn-1 {
    background: #000;
    color: #fff;
    text-transform: capitalize;
    padding: 12px 22px;
    display: inline-block;
    margin-top: 14px;
}

.grid.grid-2 {
  grid-template-columns: repeat(4, 1fr);
}

.grid.support .due-payment .text small {
  display: block;
  font-size: 27px;
  color: #999;
  margin: 13px 0 0px;
}

.grid.support .due-payment {
  padding: 48px 30px;
}

.copy-text {
  position: relative;
  padding: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
}
.copy-text input.text {
	padding: 10px;
	font-size: 18px;
	color: #555;
	border: none;
	outline: none;
}
.copy-text button {
  padding: 10px;
  background: #0c0b0b;
  color: #fff;
  font-size: 18px;
  border: none;
  outline: none;
  border-radius: 10px;
  cursor: pointer;
}

.copy-text button:active {
	background: #809ce2;
}
.copy-text button::before {
	content: "Copied";
	position: absolute;
	top: -45px;
	right: 0px;
	background: #5c81dc;
	padding: 8px 10px;
	border-radius: 20px;
	font-size: 15px;
	display: none;
}
.copy-text button::after {
	content: "";
	position: absolute;
	top: -20px;
	right: 25px;
	width: 10px;
	height: 10px;
	background: #5c81dc;
	transform: rotate(45deg);
	display: none;
}
.copy-text.active button::before,
.copy-text.active button::after {
	display: block;
}

#v-pills-refer .text h2,
#v-pills-settings .text h2{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 32px;
}

#v-pills-refer .text h2::first-letter{
  text-transform: capitalize;
}

#v-pills-refer .text p {
  color: #999;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 21px;
}

#v-pills-refer .label {
  font-size: 13px;
  color: #b1b1b9;
  display: block;
  margin-bottom: 8px;
}

.refer-code {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 25px;
}

.item1.refer-code-item {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item1.refer-code-item img {
  margin: 0 auto;
  margin-bottom: 18px;
  width: 44px;
}

.item1.refer-code-item .text p {
  margin-bottom: 0 !important;
}

#v-pills-refer .table>:not(caption)>*>* {
  padding: 15px 10px;
}

#v-pills-refer .table td a i {
  font-size: 19px;
  vertical-align: middle;
  margin: 0 4px 0 0;
}

#v-pills-refer i.bi.bi-check-circle{
  color: #04b192;
}

#v-pills-refer i.bi.bi-x-circle{
  color: #f4091f;
}

.terms {
  text-align: right;
  margin-bottom: 20px;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 29px;
}

.step-icon {
  width: 7%;
  margin-right: 15px;
}

.step-icon i {
  font-size: 24px;
}

.step-content {
  flex-grow: 1;
  width: 32%;
  font-size: 15px;
  line-height: 1.4;
  color: #999;
}

.step-title {
  font-weight: bold;
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

.referrals_work {
  background: #f2f2f2;
  padding: 27px 26px;
  margin-top: 40px;
}

.profile-pic {
  color: transparent;
  transition: all 0.3s ease;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  width: 40%;
}

.profile-pic input {
  display: none;
}
.profile-pic img {
  position: absolute;
  object-fit: cover;
  width: 135px;
  height: 135px;
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  z-index: 0;
}
.profile-pic .-label {
  cursor: pointer;
  height: 135px;
  width: 135px;
}
.profile-pic:hover .-label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  color: #fafafa;
  transition: background-color 0.2s ease-in-out;
  border-radius: 100px;
  margin-bottom: 0;
}
.profile-pic span {
  display: inline-flex;
  padding: 0.2em;
  height: 2em;
}

.profile_picture span {
  display: block;
  margin-bottom: 18px;
  color: #999;
}

.input_field label {
    display: block;
    margin-bottom: 12px;
    color: #666363;
    text-transform: capitalize;
}

.account_setting hr {
  margin: 39px 0 0 !important;
  border-color: #909090 !important;
}

.input_field input,
.input_field textarea {
  width: 100%;
  background: #dbdbdb;
  border: 1px solid #dbdbdb;
  height: 56px;
  padding: 12px;
  outline: none;
  border-radius: 3px;
  transition: all 0.6s;
}

.input_field input:focus,
.input_field textarea:focus{
  border-color: #000;
  transition: all 0.6s;
}

.input_field input::placeholder,
.input_field textarea::placeholder{
  color: #979797;
}



.input_field textarea {
  height: 170px;
}

.button_group {
  display: flex;
  gap: 12px;
}

.button_group input {
  background: transparent;
  color: #153b73;
  border: 1px solid transparent;
  text-transform: capitalize;
  padding: 14px 27px;
}

.button_group input[type="submit"] {
  background: #153b73;
  border-color: #153b73;
  color: #fff;
}

/*project*/
    .project-block {
      background: #fff;
      border: 1px solid #e6e9ec;
      border-radius: 8px;
    }

    .note-author {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .note-author img {
      border-radius: 50%;
      margin-right: 12px;
    }

    .author-date .author-name {
      font-weight: 600;
      font-size: 14px;
      color: #212529;
      text-decoration: none;
    }

    .author-date .post__date {
      font-size: 12px;
      color: #6c757d;
    }

    .project-note p {
      font-size: 14px;
      color: #444;
      margin: 10px 0;
    }

    .post-additional-info {
      border-top: 1px solid #f0f0f0;
      padding: 10px 0;
      margin-top: 15px;
    }

    .note-comments {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
      color: #6c757d;
      text-decoration: none;
    }

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

    .comment-item {
      border-top: 1px solid #f0f0f0;
      padding: 15px 0;
    }

    .comment-item p {
      margin: 8px 0;
      font-size: 14px;
      color: #444;
    }

    .comment-item .post-add-icon {
      margin-right: 10px;
      color: #6c757d;
    }

    .comment-form {
      border-top: 1px solid #f0f0f0;
      padding-top: 15px;
    }

    .comment-form .form-control {
      border-radius: 6px;
      resize: none;
    }

    .comment-form img {
      border-radius: 50%;
      margin-right: 10px;
    }
    .project-sidebar {
        position: sticky;
        top: 95px;
    }
    /* For the collapsed state (e.g., plus icon) */
    .accordion-button.collapsed::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E"); /* Replace with your encoded SVG */
    }

    /* For the expanded state (e.g., minus icon) */
    .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
    }

/*project*/
  .img-profile {
    width: 122px;
  }

  .img-profile img {
    width: 100%;
    border-radius: 5px;
  }

  .img-profile {
    width: 48px;
  }

  .profile-details h2 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 3px;
  }

  .profile-subtext {
    font-size: 13px;
    color: #afafaf;
  }

  span.active-text {
    color: green;
  }

  .main-tab-item button {
    background: #eaebeb;
    color: #000;
    padding: 12px 56px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    border-radius: 2px;
    border: 1px solid #dddddd;
    width: 100%;
  }

  .custom-tab{
    display: none;
  }

  .custom-tab.active{
    display: block;
  }

  .customized-bar {
    /* background: #f1faff; */
    position: relative;
    padding: 31px 20px;
    border: 1px solid #e7e7e7;
    background-position: right !important;
    background-size: 32% 100% !important;
  }

  .customized-bar h3 {
    font-size: 21px;
  }

  .customized-bar p {
    margin-bottom: 0;
    color: #999;
  }

  .overviewBtn.active-btn ,
  .activiteBtn.active-btn {
    background: #999;
    color: #fff;
  }

  .parent-comment {
    border: 1px solid #ddd7d7;
    padding: 18px 19px;
    margin-left: 31px;
    position: relative;
    margin-top: 21px;
    background: #f8f9fa;
  }

  .comment-tree{
    position: relative;
  }

  .comment-tree::before,
  .child-comment::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: #dbdbdb;
  }

  .parent-comment::after {
    position: absolute;
    top: 15px;
    width: 20px;
    height: 20px;
    content: "";
    border: 2px solid #f1f1f1;
    left: -42px;
    border-radius: 100%;
    background: #fff;
  }

  .child-comment::after {
    left: -35px;
  }

  .child-comment::before {
    left: -25px;
  }

  .comment-activites h4 {
    font-size: 21px;
  }

  .parent-comment h5 {
    font-size: 16px;
    color: #4c638d;
    font-weight: 400;
    margin-bottom: 0px;
    display: block;
  }

  .text-with-date {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 7px;
    margin-bottom: 15px;
  }

  .parent-comment h5 span {
    font-size: 16px;
    color: #000000;
    margin-right: 2px;
    line-height: 0;
  }
  .parent-comment p {
    margin-bottom: 0;
  }

  .comment-activites {
    padding-top: 32px;
  }

  .child-comment {
    margin: 20px 0px 0 79px;
    border-radius: 5px;
    padding: 17px 0px;
    position: relative;
    
  }
 .child-comment h5 {
    font-size: 16px;
    color: #4c638d;
    font-weight: 400;
    margin-bottom: 0px;
    display: block;
  }
.child-comment h5 span {
    font-size: 16px;
    color: #000000;
    margin-right: 5px;
    line-height: 0;
  }
  span.close {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 21px;
    color: #3b6074;
    cursor: pointer;
    display: block;
  }

  .item-child {
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    padding: 12px;
    position: relative;
    background: #f8f9fa;
  }

.item-child:after {
    position: absolute;
    top: 10px;
    content: "";
    left: -40px;
    border-radius: 0px;
    background: #fff;
    content: "\F4FE";
    font-family: 'bootstrap-icons';
    font-size: 29px;
    height: 24px;
    line-height: 24px;
}

.item-child p {
    margin-bottom: 0;
}

.item-child:last-child {
    margin-bottom: 0;
}

.note-humburger span {
  width: 5px;
  height: 5px;
  background: #000;
  display: block;
  border-radius: 50px;
  cursor: pointer;
  margin: 3px;
}

.note-dropdown {
    position: absolute;
    right: 14px;
    top: 18px;
}

.note-humburger{
  cursor: pointer;
}

.dropdown-list {
    position: absolute;
    background: #fff;
    width: 130px;
    right: 0;
    box-shadow: 0px 6px 8px #e9e9e9;
    border-radius: 7px;
    border: 1px solid #ededed;
  top: 60px;
  transition: 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.dropdown-list.active-dropdown {
    top: 30px;
    visibility: visible;
    opacity: 1;
}

.dropdown-list ul {
    margin: 0;
}

.dropdown-list ul li a {
    color: #2c2c2c;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 12px;
    display: block;
}

.search-bar input {
    width: 100%;
    padding: 8px 19px;
    background: #ffffff;
    font-size: 14px;
    outline: none;
    border: 1px solid #e9e9e9;
}

a.btn1 {
    background: #000;
    color: #fff;
    padding: 5px 0px;
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 2px;
}

.accordion-button.collapsed {
    background: #f8f9fa;
}

.accordion-button:not(.collapsed){
    background: #000;
    color: #fff;
}
.accordion-flush>.accordion-item>.accordion-collapse {
    border: 1px solid #eaebeb;
}
.accordion-button:focus {
    outline: 0;
    box-shadow: none !important;
}